Metadata-Version: 1.1
Name: qcloudapi3
Version: 0.2.2
Summary: qcloudapi3是为了让Python3开发者能够在自己的代码里更快捷方便的使用腾讯云的API而开发的SDK工具包。
Home-page: https://github.com/duyixian1234/api-python-sdk
Author: Yixian Du
Author-email: duyixian1234@outlook.com
License: MIT
Description-Content-Type: UNKNOWN
Description: 
        qcloudapi3
        ----------
        qcloudapi3是为了让Python3开发者能够在自己的代码里更快捷方便的使用腾讯云的API而开发的Python库。
        
        Example
        =======
        >>> from qcloudapi3 import QcloudApi
        >>> _module = 'wenzhi'
        >>> action = 'TextSentiment'
        >>> config = {
        >>>     'Region': 'gz',
        >>>     'secretId': '123',
        >>>     'secretKey': '000',
        >>>     'method': 'post'
        >>> }
        >>> params = {
        >>>     "content": "所有人都很差劲。",
        >>> }
        >>> service = QcloudApi(_module, config)
        >>> print('URL:\n' + service.generateUrl(action, params))
        >>> print(service.call(action, params))
        URL:
        https://wenzhi.api.qcloud.com/v2/index.php
        {"code":0,"message":"","codeDesc":"Success","positive":0.048611093312502,"negative":0.95138889551163}
        
        Install
        =======
        pip install qcloudapi3
        
        Author
        ======
        Yixian Du
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT 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.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
