An open API service indexing awesome lists of open source software.

https://github.com/skylothar/requests-aliyun

Aliyun authentication for the awesome requests!
https://github.com/skylothar/requests-aliyun

Last synced: about 2 months ago
JSON representation

Aliyun authentication for the awesome requests!

Awesome Lists containing this project

README

        

Aliyun using python-requests
============================

Version
-------
v0.3.1

.. image:: https://travis-ci.org/SkyLothar/requests-aliyun.svg?branch=master
:target: https://travis-ci.org/SkyLothar/requests-aliyun

.. image:: https://coveralls.io/repos/SkyLothar/requests-aliyun/badge.png
:target: https://coveralls.io/r/SkyLothar/requests-aliyun

.. image:: https://requires.io/github/SkyLothar/requests-aliyun/requirements.svg?branch=master
:target: https://requires.io/github/SkyLothar/requests-aliyun/requirements/?branch=master

.. image:: https://pypip.in/py_versions/requests-aliyun/badge.svg?style=flat
:target: https://pypi.python.org/pypi/requests-aliyun/
:alt: Supported Python versions

.. image:: https://pypip.in/license/requests-aliyun/badge.svg?style=flat
:target: https://pypi.python.org/pypi/requests-aliyun/
:alt: License

Aliyun authentication for the awesome requests!
-----------------------------------------------

- [x] OSS (api-version: 2014-08-28)
- [x] ECS (api-version: 2014-05-26)
- [x] RDS (api-version: 2014-08-15)
- [x] SLB (api-version: 2014-05-15)
- [x] CMS (api-version: 2015-04-20)

How to Install
--------------
Just

.. code-block:: bash

pip install requests-aliyun

How to Use
----------
Just pass the auth object to requests

.. code-block:: python

>>> import requests
>>> from aliyunauth import OssAuth
>>> req = requests.get(
... "http://example.com/path/to/file",
... auth=OssAuth("bucket-name", "access-key", "secret-key")
... )

Or set the auth attribute to the session object

.. code-block:: python

>>> import requests
>>> from aliyunauth import OssAuth
>>> session = requests.session()
>>> session.auth = OssAuth("bucket-name", "access-key", "secret-key")
>>> req = session.get("http://example.com/path/to/file")

Play with OSS
-------------
Full api document avaiable at: `OSS API`_

.. code-block:: python

>>> import requests
>>> from aliyunauth import OssAuth
>>> req = requests.get(
... "http://bucket-name.oss-url.com/path/to/file",
... auth=OssAuth("bucket-name", "access-key", "secret-key")
... )

Play with ECS
-------------
Full api document avaiable at: `ECS API`_

.. code-block:: python

>>> import requests
>>> from aliyunauth import EcsAuth
>>> req = requests.get(
... "https://ecs.aliyuncs.com",
... params=dict(Action="DescribeInstanceTypes"),
... auth=EcsAuth("access-key", "secret-key")
... )

Play with RDS
-------------
Full api document avaiable at: `RDS API`_

.. code-block:: python

>>> import requests
>>> from aliyunauth import RdsAuth
>>> req = requests.get(
... "https://rds.aliyuncs.com",
... params=dict(Action="DescribeDBInstances", RegionId="cn-hangzhou"),
... auth=RdsAuth("access-key", "secret-key")
... )

Play with SLB
-------------
Full api document avaiable at: `SLB API`_

Play with CMS
-------------
Full api document avaiable at: `CMS API`_

.. code-block:: python

>>> import requests
>>> from aliyunauth import CmsAuth
>>> req = requests.get(
... "metrics.aliyuncs.com",
... params=dict(Action="DescribeMetricDatum"),
... auth=CmsAuth("access-key", "secret-key")
... )

.. _OSS API: http://imgs-storage.cdn.aliyuncs.com/help/oss/oss%20api%2020140828.pdf
.. _ECS API: http://aliyunecs.oss.aliyuncs.com/ECS-API-Reference%202014-05-26.pdf
.. _RDS API: http://imgs-storage.cdn.aliyuncs.com/help/rds/RDS-API-Reference.pdf
.. _SLB API: http://imgs-storage.cdn.aliyuncs.com/help/slb/SLB-API-Reference_2014-05-15.pdf
.. _CMS API: http://docs.aliyun.com/?spm=5176.383338.201.76.2xkgjU#/pub/cms/References/API_Reference