Skip to main content

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


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.0.tar.gz (10.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyonwater-0.3.0-py3-none-any.whl (13.6 kB view details)

Uploaded Python 3

File details

Details for the file pyonwater-0.3.0.tar.gz.

File metadata

  • Download URL: pyonwater-0.3.0.tar.gz
  • Upload date:
  • Size: 10.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for pyonwater-0.3.0.tar.gz
Algorithm Hash digest
SHA256 0ead6323eca3186715a07b4664d024f5129c0f082aa144a4d7558d95e07c353f
MD5 fb5236e87e9e6bf2a7737a0e0204fd86
BLAKE2b-256 9f871a0912a8f64f6c102fe1fd3630b266c26efc18ebdb5e452f91f64831d258

See more details on using hashes here.

File details

Details for the file pyonwater-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: pyonwater-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 13.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for pyonwater-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f1fa043a91c870cc127c6738624ede12fadca9e8bd24467b26d90ea414fe2d50
MD5 ccef0bf4f05483b715618c1046a03dfd
BLAKE2b-256 dbfd09ead74b6f79f7a3a2fd67e2449edd01ce0bffc1944ae53458004fa318d6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page