Metadata-Version: 1.1
Name: requests-aliyun
Version: 0.2.3
Summary: authentication for aliyun service
Home-page: http://github.com/skylothar/requests-aliyun
Author: SkyLothar
Author-email: allothar@gmail.com
License: Apache 2.0
Description: Aliyun using python-requests
        ============================
        
        Version
        -------
        v0.2.3
        
        .. 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")
            ... )
            <Response [200]>
        
        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")
            <Response [200]>
        
        
        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")
            ... )
            <Response [200]>
        
        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")
            ... )
            <Response [200]>
        
        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")
            ... )
            <Response [200]>
        
        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")
            ... )
            <Response [200]>
        
        .. _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
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
