Metadata-Version: 1.1
Name: requests-foauth
Version: 0.1.1
Summary: Requests TransportAdapter for foauth.org!
Home-page: https://github.com/kennethreitz/requests-foauth
Author: Kenneth Reitz
Author-email: me@kennethreitz.com
License: BSD
Description: 
        requests-foauth
        ~~~~~~~~~~~~~~~
        
        This module provides an foauth.org TransportAdapter for Requests.
        
        In short, foauth.org allows you to easily send requests to OAUth'd
        services with HTTP Basic authentication. It's fantastic.
        
        Normally, you have to send all requests to foauth.org manually, after
        rewriting the URLs. With this adapter, all requests are sent through the
        service transparently.
        
        Example usage::
        
            import requests
            from requests_foauth import Foauth
        
            s = requests.Session()
            s.mount('http', Foauth('username', 'password))
        
            >>> s.get('https://api.500px.com/v1/users/')
            <Response [200]>
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
