Metadata-Version: 1.0
Name: urlstore
Version: 0.0.1
Summary: cached url fetching as unix pipe command: cat urls | urlstore.py | ...
Home-page: https://github.com/tengu/py-urlstore
Author: tengu
Author-email: karasuyamatengu@gmail.com
License: LGPL
Description: 
        Url that returns JSON can be converted to python data by store.data(url):
        
        >>> from urlstore import Store
        >>> store=Store()
            # convert url to data (assuming that the url returns json)
        >>> for repo in store.data('http://github.com/api/v2/json/repos/search/url+store')['repositories']:
        ...     print repo['name']
        ...
        url_store
        url-store
        urlStore
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Environment :: Console
Classifier: Programming Language :: Python
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
