Metadata-Version: 2.1
Name: zzltest
Version: 0.1.5
Summary: zzl test
Home-page: https://github.com/EnvisionIot
Author: Kid QU
Author-email: kidcrazequ@gmail.com
License: GPLv3
Description: ## Project description
        Athena is the core SDK for requesting the EnOS API
        
        ### Example
        
        #### 1.1 Query 
        ```python
        from poseidon import poseidon
        
        appkey = '7b51b354-f200-45a9-a349-40cc97730c5a'
        appsecret = '65417473-2da3-40cc-b235-513b9123aefg'
        
        url = 'http://{apim-url}/someservice/v1/tyy?sid=28654780'
        
        req = poseidon.urlopen(appkey, appsecret, url)
        print(req)
        ```
        #### 1.2 Header
        ```python
        from poseidon import poseidon
        
        appkey = '7b51b354-f200-45a9-a349-40cc97730c5a'
        appsecret = '65417473-2da3-40cc-b235-513b9123aefg'
        
        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 import poseidon
        
        appkey = '7b51b354-f200-45a9-a349-40cc97730c5a'
        appsecret = '65417473-2da3-40cc-b235-513b9123aefg'
        
        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
