Metadata-Version: 1.1
Name: backports.method-request
Version: 1.0
Summary: backports.method_request
Home-page: https://bitbucket.org/jaraco/backports.method_request
Author: Jason R. Coombs
Author-email: jaraco@jaraco.com
License: UNKNOWN
Description: backports.method_request
        ========================
        
        A backport of the urllib.request.MethodRequest class from Python 3.4 which
        allows overriding of the method in a class attribute or as a keyword
        parameter to the initializer.
        
        See `Python 18978 <http://bugs.python.org/issue18978>`_ for details.
        
        Works on Python 2.6 and later.
        
        Usage
        -----
        
        Use ``method_request.Request`` in place of ``urllib.request.Request``::
        
            from backports.method_request import Request
        
            req = Request(..., method='PATCH')
            resp = urllib.request.urlopen(req)
            ...
        
        
        1.0
        ===
        
        Initial release.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
