Metadata-Version: 1.1
Name: qcloudapi-sdk-python
Version: 2.0.15
Summary: The Qcloud Api SDK for Python
Home-page: https://github.com/QcloudApi/qcloudapi-sdk-python.git
Author: Qcloud
Author-email: QcloudApi@tencent.com
License: Apache License 2.0
Description-Content-Type: UNKNOWN
Description: ===============================
        The Qcloud API SDK for Python
        ===============================
        
        Qcloud Python SDK is the official software development kit, which allows Python developers to write software that makes use of qcloud services like CVM and CBS.
        
        The SDK works on Python versions:
        
           * 2.7 and greater, including 3.x.x
        
        Quick Start
        -----------
        First, install the library:
        
        .. code-block:: sh
        
            $ pip install qcloudapi-sdk-python
        
        or download source code from github and install:
        
        .. code-block:: sh
        
            $ git clone https://github.com/QcloudApi/qcloudapi-sdk-python.git
            $ cd qcloudapi-sdk-python
            $ python setup.py install
        
        Then, from a Python interpreter or script:
        
        .. code-block:: python
        
            >>> from QcloudApi.qcloudapi import QcloudApi
            >>> module = 'cvm'
            >>> action = 'DescribeInstances'
            >>> config = {'Region':'ap-guangzhou', 'secretId':'xxxx', 'secretKey':'xxxx', 'Version':'2017-03-20'}
            >>> params = {'Limit':1}
            >>> service = QcloudApi(module, config)
            >>> service.call(action, params)
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
