Metadata-Version: 2.1
Name: enos-poseidon
Version: 0.2.0
Summary: ENOS API
Home-page: https://github.com/EnvisionIot
Author: Xiangxin Li
Author-email: 956217275@qq.com
License: GPLv3
Description: ## Project description
        Athena is the core SDK for requesting the EnOS API
        
        ### Example
        
        #### 1.1 Query
        
        ```python
        from poseidon.poseidon import poseidon
        
        appkey = 'xxxxx-xxxx-xxxx-xxxx-xxxxxxxx'
        appsecret = 'xxxxx-xxxx-xxxx-xxxx-xxxxxx'
        
        url = 'http://{apim-url}/someservice/v1/tyy?sid=28654780'
        
        req = poseidon.urlopen(appkey, appsecret, url)
        print(req)
        ```
        #### 1.2 Header
        
        ```python
        from poseidon.poseidon import poseidon
        
        appkey = 'xxxxx-xxxx-xxxx-xxxx-xxxxxxxx'
        appsecret = 'xxxxx-xxxx-xxxx-xxxx-xxxxxx'
        
        url = 'http://{apim-url}/someservice/v1/tyy?sid=28654780'
        
        header = {}
        
        req = poseidon.urlopen(appkey, appsecret, url, None, header)
        print(req)
        
        ```
        
        #### 1.3 Body
        
        ```python
        from poseidon.poseidon import poseidon
        
        appkey = 'xxxxx-xxxx-xxxx-xxxx-xxxxxxxx'
        appsecret = 'xxxxx-xxxx-xxxx-xxxx-xxxxxx'
        
        url = 'http://{apim-url}/someservice/v1/tyy?sid=28654780'
        
        data = {"username": "11111", "password": "11111"}
        
        req = poseidon.urlopen(appkey, appsecret, url, data)
        print(req)
        
        ```
Platform: all
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
