Metadata-Version: 1.1
Name: requests-f5auth
Version: 0.1.2
Summary: F5 REST Authentication support for Requests.
Home-page: https://github.com/requests/requests-f5auth
Author: Ivan Mecimore
Author-email: imecimore@gmail.com
License: ISC
Description-Content-Type: UNKNOWN
Description: Requests-F5Auth 
        =========================================================
        
        This project provides F5 Authentication support for BIG-IQ and BIG-IP using `Requests <http://python-requests.org>`_.
        
        The workflow
        --------------------
        
        F5's BIG-IQ and BIG-IP use token based authentication.  While the implementation differs on each,
        requests_f5auth hides most of the differences.
        
        Accessing protected resources using requests_f5auth is as simple as:
        
        .. code-block:: pycon
        
            >>> from requests_f5auth import F5Auth
        	>>> f5auth = F5Auth(username, password)
        	>>> resp = requests.get(url='https://10.10.10.10/mgmt/shared/echo', auth=f5auth)
        
        Installation
        -------------
        
        To install requests and requests_oauthlib you can use pip:
        
        .. code-block:: bash
        
            $ pip install requests requests_f5auth
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
