Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ptz0n/python-aqvify
https://github.com/ptz0n/python-aqvify
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ptz0n/python-aqvify
- Owner: ptz0n
- License: mit
- Created: 2023-07-26T13:21:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-21T17:26:04.000Z (about 1 year ago)
- Last Synced: 2024-05-01T20:45:51.473Z (6 months ago)
- Language: Python
- Homepage: https://pypi.org/project/aqvify/
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-aqvify
A python module for reading values of Aqvify through the official API.
## Installation
```bash
pip install aqvify
```## Usage
```python
from aqvify import (AqvifyAPI, DevicesAPI)api = AqvifyAPI("https://public.aqvify.com", "secret-api-token")
devices_api = DevicesAPI(api)
devices_data = devices_api.get_devices()
```