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.10.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
File details
Details for the file pyonwater-0.3.10.tar.gz.
File metadata
- Download URL: pyonwater-0.3.10.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef49fb7820c25d7188797a94eaeb99409d0f66d8ee20d4fc8535ef9ad12e9afb
|
|
| MD5 |
86e23d319b42e83b4f50af81ee496f42
|
|
| BLAKE2b-256 |
4e545044ab481a6a2c7176869734b598f4925ee9ee4da619857dc0fc66009b22
|
File details
Details for the file pyonwater-0.3.10-py3-none-any.whl.
File metadata
- Download URL: pyonwater-0.3.10-py3-none-any.whl
- Upload date:
- Size: 13.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fc31674c940509ba88df03f3ed97a815367244f14a4634e4488bcbc8a5a46f4
|
|
| MD5 |
aecfec6fa2e389dc6bb08579062f971c
|
|
| BLAKE2b-256 |
826b6f8a82f1d4b4adb69bbfe2355ca4bc57aef53401a7a433c56c81ebf667b3
|