Metadata-Version: 1.0
Name: python-plcloudclient
Version: 1.2.0
Summary: PLCloud API SDK
Home-page: http://www.plcloud.com/
Author: Joe Lei
Author-email: jiaomin.lei@powerleader.com.cn
License: UNKNOWN
Description: ==============================
        python-plcloudclient
        ==============================
        *宝德云API SDK (http://console.plcloud.com)*
        
        .. image:: https://pypip.in/version/python-plcloudclient/badge.png
            :target: https://pypi.python.org/pypi/python-plcloudclient/
            :alt: Latest Version
        
        .. image:: https://pypip.in/download/python-plcloudclient/badge.png?period=month
            :target: https://pypi.python.org/pypi/python-plcloudclient/
            :alt: Downloads
        
        依赖
        -----------
        1. python-keystoneclient >= 0.8.0
        
        
        提供的SDK有
        ---------------
        1. CDN (CDN服务)
        2. Ticket (工单服务)
        
        使用概述
        ------------
        1. 认证
        
        ::
            >>> from plcloudclient.v1_0 import client
            >>> username='demo'
            >>> password='secreetword'
            >>> tenant_name='demo'
            >>> auth_url='http://192.168.106:5001/v2.0'
            >>> plcloud = client.Client(username=username, password=password,
            ...                         tenant_name=tenant_name, auth_url=auth_url)
        
        
        2. 调用函数(如显示所有CDN域名)
        
        ::
            >>> from plcloudclient.v1_0 import client
            >>> plcloud = client.Client(...)
            >>> plcloud.cdn.list()
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: OpenStack
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet :: WWW/HTTP
