EyeOnWater client library.
Project description
pyonwater
EyeOnWater client library
The usage example:
import asyncio
import aiohttp
from pyonwater import Account, Client
async def main():
account = Account(
eow_hostname="eyeonwater.com",
username="your EOW login",
password="your EOW password",
metric_measurement_system=False,
)
websession = aiohttp.ClientSession()
client = Client(websession=websession, account=account)
await client.authenticate()
meters = await account.fetch_meters(client=client)
print(f"{len(meters)} meters found")
for meter in meters:
await meter.read_meter(client=client)
print(f"meter {meter.meter_uuid} shows {meter.reading}")
print(f"meter {meter.meter_uuid} info {meter.meter_info}")
for d in meter.last_historical_data:
print(str(d["dt"]), d["reading"])
await websession.close()
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
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
pyonwater-0.2.0.tar.gz
(10.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
pyonwater-0.2.0-py3-none-any.whl
(12.9 kB
view details)
File details
Details for the file pyonwater-0.2.0.tar.gz.
File metadata
- Download URL: pyonwater-0.2.0.tar.gz
- Upload date:
- Size: 10.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1ba02b9278c68fc4ee5a4a0f671bc048e7d19737cadcae22f05e1066446fae3
|
|
| MD5 |
9ca0c674cd7199a9d5a7f65e9da3e76d
|
|
| BLAKE2b-256 |
09120a6ec4ec580ca99b88acd4ef23ad8a51839913bcc172d935389a395f030e
|
File details
Details for the file pyonwater-0.2.0-py3-none-any.whl.
File metadata
- Download URL: pyonwater-0.2.0-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55be4e69cd6bb6abf33f9c83243bda3cfa41e6ba3931ec45beaaf9601e9fbeb7
|
|
| MD5 |
5e08e97044342b9f2d418b149e87d14b
|
|
| BLAKE2b-256 |
cbf6f217b4c620a2c43a8919a54ebd8bb67b75b9abce51cad795b3dfdcb1e1dc
|