Retrieve water meter information from Suez web site https://www.toutsurmoneau.fr/ and other water providers in france.
Project description
py-mon-eau
Version 0.0.21
Get your water meter data from your online Suez account (<www.toutsurmoneau.fr>) as well as other sites using the same interface.
Two Classes are provided:
Client
is a legacy synchronous client, compatible with modulepySuez
AsyncClient
is an asynchronous client
Installation
pip install toutsurmoneau
CLI Usage
toutsurmoneau [-h] -u _user_name_here_ -p _password_here_ [-c _meter_id_] [-e _action_]
API Usage
Async use
import toutsurmoneau
import aiohttp
import asyncio
async def the_job():
async with aiohttp.ClientSession() as session:
obj = toutsurmoneau.AsyncClient(
username='_username_here_', password='_password_here_', session=session)
return await obj.async_contracts()
print(f">>{asyncio.run(the_job())}")
Sync use
import toutsurmoneau
client = toutsurmoneau.Client('_username_here_', '_password_here_')
print(f">>{client.contracts()}")
The sync object returns the same values as pySuez
.
History
This module is inspired from pySuez from Ooii itself inspired by domoticz sensor and pyLinky.
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
toutsurmoneau-0.0.21.tar.gz
(18.2 kB
view hashes)
Built Distribution
Close
Hashes for toutsurmoneau-0.0.21-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c860945034510db6f9eaeabf3b1eefc50a57527728ea109021ba389ff9f34481 |
|
MD5 | 457e564665f2db890acfb59f31f7b3d5 |
|
BLAKE2b-256 | 6305ca42366c461206d46dd5357294ae80991d5ad58083444feb07cfa4d387d9 |