Skip to main content

authentication for aliyun service

Project description

Version

v0.2.3

https://travis-ci.org/SkyLothar/requests-aliyun.svg?branch=master https://coveralls.io/repos/SkyLothar/requests-aliyun/badge.png https://requires.io/github/SkyLothar/requests-aliyun/requirements.svg?branch=master Supported Python versions 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

pip install requests-aliyun

How to Use

Just pass the auth object to requests

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

Or set the auth attribute to the session object

>>> 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")
<Response [200]>

Play with OSS

Full api document avaiable at: OSS API

>>> 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")
... )
<Response [200]>

Play with ECS

Full api document avaiable at: ECS API

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

Play with RDS

Full api document avaiable at: RDS API

>>> 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")
... )
<Response [200]>

Play with SLB

Full api document avaiable at: SLB API

Play with CMS

Full api document avaiable at: CMS API

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

requests-aliyun-0.2.4.tar.gz (12.3 kB view details)

Uploaded Source

File details

Details for the file requests-aliyun-0.2.4.tar.gz.

File metadata

File hashes

Hashes for requests-aliyun-0.2.4.tar.gz
Algorithm Hash digest
SHA256 b075a3df7b3ca04d4ac29d19184a82ce7541b4b8037061d7d077196748bc74af
MD5 2443760ccc2e76ae9144016f04641bef
BLAKE2b-256 9c4d68fd94d1e1afcea0c9d87eb16b58a51606ff1300e1f32996aa36af2f2b7b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page