EyeOnWater client library.
Project description
pyonwater
EyeOnWater client library
The usage example:
"""Example showing the EOW Client usage."""
import asyncio
import aiohttp
from pyonwater import Account, Client
async def main() -> None:
"""Main."""
account = Account(
eow_hostname="eyeonwater.com",
username="your EOW login",
password="your EOW password",
)
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:
# Read meter info
await meter.read_meter_info(client=client)
print(f"meter {meter.meter_uuid} shows {meter.reading}")
print(f"meter {meter.meter_uuid} info {meter.meter_info}")
# Read historical data
await meter.read_historical_data(client=client, days_to_load=3)
for d in meter.last_historical_data:
print(d)
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.3.8.tar.gz
(11.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.3.8-py3-none-any.whl
(13.8 kB
view details)
File details
Details for the file pyonwater-0.3.8.tar.gz.
File metadata
- Download URL: pyonwater-0.3.8.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d14be360cb39df2acfbddd2bda5cf7cc4f483116b602054d9c0256fe6494d207
|
|
| MD5 |
b6a9c54f664da8a3b2b036daf0c84bf0
|
|
| BLAKE2b-256 |
5bd310d756c89c539a828e1e41caa7038ce867e29eb89b8f05005a56b02d9354
|
File details
Details for the file pyonwater-0.3.8-py3-none-any.whl.
File metadata
- Download URL: pyonwater-0.3.8-py3-none-any.whl
- Upload date:
- Size: 13.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72a7cc19fbf8e0b01a4519f82b30999bd2c8fa963ba4e982be50cb8b5b8543e7
|
|
| MD5 |
a83c8461385383cdbb89fe12636e1a16
|
|
| BLAKE2b-256 |
2f71709bff41bc257942344df466eea54fc7c8ed47e0bfe8c26719b2d3d7d0bc
|