Metadata-Version: 1.0
Name: requests-cache
Version: 0.1.0
Summary: Persistent cache for requests library
Home-page: https://bitbucket.org/reclosedev/requsts-cache
Author: Roman Haritonov
Author-email: reclosedev@gmail.com
License: BSD License
Description: requests-cache
        ---------------
        
        Requests-cache is a transparent persistent cache for requests_ library.
        
        .. _requests: http://python-requests.org/
        
        Usage example
        -------------
        
        Just write::
        
            import requests
            import request_cache
            
            request_cache.configure('demo_cache')
        
        And all responses with headers and cookies will be transparently cached to
        `demo_cache.sqlite` database. For example, following code will take only
        1-2 seconds instead 10, and will run instantly on next launch::
        
            for i in range(10):
                requests.get('http://httpbin.org/delay/1')
            
        It can be useful when you are creating some simple data scraper with constantly
        changing parsing logic or data format, and don't want to redownload pages or
        write complex error handling and persistence.
        
        Links
        -----
        
        - **Documentation** at `readthedocs.org <http://readthedocs.org/docs/requests-cache/>`_
        
        - **Source code and issue tracking** at `BitBucket.org <https://bitbucket.org/reclosedev/requests-cache>`_.
        
        
Keywords: requests,cache,persistence
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
