Metadata-Version: 1.0
Name: dogbutler
Version: 0.0.3
Summary: Make HTTP/HTTPS requests with cache, cookie, and redirect support
Home-page: http://code.google.com/p/dogbutler/
Author: The Sirisanthana Team
Author-email: vsirisanthana@gmail.com
License: GPL-3.0
Download-URL: http://pypi.python.org/pypi/dogbutler
Description: ====================
         READ ME
        ====================
        
        Dogbutler is a client library base on requests but with a cache and persistent cookie support.
        
        ====================
            INSTALLATION
        ====================
        >>> pip install dogbutler
        
        ====================
               USAGE
        ====================
        >>> import dogbutler
        >>> r = dogbutler.get('http://www.google.com', headers={'name': 'value'})
        >>> r.status_code
        200
        >>> r.content
        
        ====================
             CHANGE LOG
        ====================
        Version 0.0.3
        --------------------
        - Support Sessions.
        - Not cache hop-by-hop headers
        
        Version 0.0.2
        --------------------
        - Set default cache, cookie cache, and redirect cache backends.
        - Disable cache, cookie cache, and redirect cache by setting each to None.
        
        Version 0.0.1
        --------------------
        - Initial release
Keywords: HTTP HTTPS request python cache cookie redirect
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
