aioruuvigateway 0.1.0-2 source package in Ubuntu
Changelog
aioruuvigateway (0.1.0-2) unstable; urgency=medium * Fix GitHub URLs by removing '#readme'. -- Edward Betts <edward@4angle.com> Mon, 03 Jun 2024 13:43:21 +0100
Upload details
- Uploaded by:
- Debian Python Team
- Uploaded to:
- Sid
- Original maintainer:
- Debian Python Team
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Plucky | release | universe | misc | |
Oracular | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
aioruuvigateway_0.1.0-2.dsc | 2.3 KiB | 0f12bec82cd4ceb3176ea8696f26dda16816624b185e99b124687bc9b78a5016 |
aioruuvigateway_0.1.0.orig.tar.gz | 5.9 KiB | 418cdaf6b3f20139a1f8ebbea16da080127636133f93da450a0c0d4b2c9e1cf2 |
aioruuvigateway_0.1.0-2.debian.tar.xz | 2.5 KiB | 05b1f248c9897c11a9d4ae270f74250c7d59add033253436a3afc1952a9a3510 |
Available diffs
- diff from 0.1.0-1 to 0.1.0-2 (709 bytes)
No changes file available.
Binary packages built by this source
- python3-aioruuvigateway: asyncio-native library for Ruuvi Gateway data requests
An asyncio-native library designed to request data from a Ruuvi Gateway.
It supports bearer token authentication and allows for efficient data
retrieval and parsing.
.
The Ruuvi Gateway is a device that allows you to remotely access your Ruuvi
sensors from anywhere in the world.
.
This library offers both an API and a command-line interface for accessing and
displaying data from the Ruuvi Gateway.
.
Example usage:
.
from aioruuvigateway.api import get_gateway_history_ data
.
async with httpx.AsyncClient() as client:
history = await get_gateway_history_ data(
client= client,
host= "192.168. 1.249",
bearer_ token=" your_token_ here",
)
print(history)
.
Command-line interface example:
.
python -m aioruuvigateway --host 192.168.1.249 --token bearbear --parse --json
.
This will output data from the gateway in JSON format, printing changed
information every 10 seconds.