Client for Ruuvi Gateway
Project description
Ruuvi Gateway Client
Client for communicating with Ruuvi Gateway.
Install
Install latest released version
$ python -m pip install ruuvi-gateway-client
Install letest development version from local sources
python -m venv .venv
source .venv/bin/activate
python -m pip install -e .
Example
import asyncio
from ruuvi_gateway_client import gateway
from ruuvi_gateway_client.types import ParsedDatas
STATION_IP = "10.0.0.21"
USERNAME = "username"
PASSWORD = "password"
def print_data(data: ParsedDatas):
for mac, sensor_data in data.items():
print(f'{mac}: {sensor_data}')
async def main():
fetch_result = await gateway.fetch_data(STATION_IP, USERNAME, PASSWORD)
if fetch_result.is_ok():
print_data(fetch_result.value)
else:
print(f'Fetch failed: {fetch_result.value}')
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
Changelog
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
License
Licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ruuvi-gateway-client-0.1.0.tar.gz
.
File metadata
- Download URL: ruuvi-gateway-client-0.1.0.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bae0b4744f2b6b9aab7ab1786b0ad04eb36de5ae192aa02fca7cbd76bfa6f69 |
|
MD5 | a9c77aa50ff521c290c82aff8842e4e4 |
|
BLAKE2b-256 | e52c57008ad0f0ae749aa8e37535251d2c74c635fc89d60b92ca7881012549a8 |
File details
Details for the file ruuvi_gateway_client-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: ruuvi_gateway_client-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e834eaf5cf04baa1a2139f72fe9aa9a14d9a8a1ead527e614fa821820b57b6e |
|
MD5 | d47713351046b6d538824579fda177b2 |
|
BLAKE2b-256 | 19f26f122443ef1cda611d473c36e6bd54dfe5cd1dfbf16bf5672846a0ec0eb2 |