Metadata-Version: 1.1
Name: uhttplib
Version: 0.2
Summary: Unix domain socket support for httplib.
Home-page: https://bitbucket.org/evzijst/uhttplib
Author: Erik van Zijst
Author-email: erik.van.zijst@gmail.com
License: MIT
Download-URL: https://bitbucket.org/evzijst/uhttplib/downloads/uhttplib-0.2.tar.gz
Description: Unix-domain sockets for Python httplib
        ======================================
        
        This module adds support for unix-domain sockets to Python's httplib package.
        
        Instead of using ``httplib.HTTPConnection``, instantiate
        ``uhttplib.UnixHTTPConnection``::
        
            from uhttplib import UnixHTTPConnection
        
            conn = uhttplib.UnixHTTPConnection('/tmp/socket')
            conn.request('GET', '/')
            resp = conn.getresponse()
            print resp.read()
        
Keywords: httplib unixdomain
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries
Requires: httplib
