Metadata-Version: 2.4
Name: requests-exoscale-auth
Version: 1.1.2
Summary: Exoscale APIs support for Python-Requests.
Home-page: https://github.com/exoscale/requests-exoscale-auth
Author: Exoscale
Author-email: contact@exoscale.com
License: BSD
Platform: any
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
License-File: LICENSE
Requires-Dist: requests
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: platform
Dynamic: requires-dist
Dynamic: summary

Requests-exoscale-auth
======================

Exoscale APIs support for Python-Requests.

Installation::

    pip install requests-exoscale-auth

Usage:

.. code-block:: python

    import requests
    from exoscale_auth import ExoscaleAuth

    auth = ExoscaleAuth('my-key', 'my-secret')
    response = requests.get('https://portal.exoscale.com/api/account',
                            auth=auth)
