Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ptz0n/python-aqvify


https://github.com/ptz0n/python-aqvify

Last synced: 6 days ago
JSON representation

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()
```