Metadata-Version: 2.1
Name: aphrodite
Version: 0.1.0
Summary: ENOS API
Home-page: UNKNOWN
Author: Kid QU
License: GPLv3
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
Requires-Dist: pycryptodome (>=3.8.2)
Requires-Dist: simplejson (>=3.16.0)

## 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-585d97730c5a'
appsecret = '65417473-2da3-40cc-b235-513b9216bab1'

url = 'http://10.27.20.193:8000/tttttttt/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-585d97730c5a'
appsecret = '65417473-2da3-40cc-b235-513b9216bab1'

url = 'http://10.27.20.193:8000/tttttttt/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-585d97730c5a'
appsecret = '65417473-2da3-40cc-b235-513b9216bab1'

url = 'http://10.27.20.193:8000/tttttttt/v1/tyy?sid=28654780'

data = {"username": "11111", "password": "11111"}

req = poseidon.urlopen(appkey, appsecret, url, data)
print(req)

```

