EyeOnWater client library.
Project description
pyonwater
EyeOnWater client library
The usage example:
"""Example shoing 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.0b1.tar.gz
(10.6 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.0b1.tar.gz.
File metadata
- Download URL: pyonwater-0.3.0b1.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4274826fa3377381693bcabad909e08a59a7cd1cf83808e1c225c2b8c739a3f
|
|
| MD5 |
9374afca90226fbc6829d1f90318a4cc
|
|
| BLAKE2b-256 |
4f4f934273464645affbfe4458cd212252f952ed2d6cfd05f31926b718b985a2
|
File details
Details for the file pyonwater-0.3.0b1-py3-none-any.whl.
File metadata
- Download URL: pyonwater-0.3.0b1-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
273c17a80e9e0cdb47ecf753b8cb376ec911b7e768105f73128c16830c6b0859
|
|
| MD5 |
87107dbdff2cdb6f02ffddc5a7a7de29
|
|
| BLAKE2b-256 |
01d3e749cb9f6ac24f389225ca20f3b0b668c2db4a58300faa6167ebf192dec5
|