Metadata-Version: 1.1
Name: CacheControl
Version: 0.7.1
Summary: httplib2 caching for requests
Home-page: https://github/ionrock/cachecontrol
Author: Eric Larson
Author-email: eric@ionrock.org
License: MIT
Description: ==============
         CacheControl
        ==============
        
        CacheControl is a port of the caching algorithms in httplib2_ for use with
        requests_ session object.
        
        It was written because httplib2's better support for caching is often
        mitigated by its lack of threadsafety. The same is true of requests in
        terms of caching.
        
        
        Quickstart
        ==========
        
        ::
        
          import requests
        
          from cachecontrol import CacheControl
        
        
          sess = requests.session()
          cached_sess = CacheControl(sess)
        
          response = cached_sess.get('http://google.com')
        
        If the URL contains any caching based headers, it will cache the
        result in a simple dictionary.
        
        For more info, check out the docs_
        
        .. _docs: http://cachecontrol.readthedocs.org/en/latest/
        .. _httplib2: http://code.google.com/p/httplib2/
        .. _requests: http://docs.python-requests.org/
        
Keywords: requests http caching web
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
