Async Python wrapper to interact with internal Veolia API
Project description
Small client to retrieve the water consumption from Veolia website: https://www.eau-services.com
Remarks
Veolia publishes water consumption with a delay of 3 days. It means if we are the 14, you will be only able to retrieve your data from the 11. To retrieve the hourly water consumption, you have to update your preferences on this page.
Installation
pip install pyolia
Getting started
import asyncio
from datetime import datetime, timedelta
from pyolia.client import VeoliaClient
USERNAME = "your username"
PASSWORD = "your password"
async def main() -> None:
async with VeoliaClient(USERNAME, PASSWORD) as client:
now = datetime.now()
if now.day < 4:
now = now - timedelta(days=3)
consumption = await client.get_consumption(now.month, now.year)
print(consumption)
now = now - timedelta(days=3)
consumption = await client.get_consumption(now.month, now.year, now.day)
print(consumption)
asyncio.run(main())
Development
Installation
-
For Linux, install pyenv using pyenv-installer
-
For MacOS, run
brew install pyenv
-
Don't forget to update your
.bashrc
file (or similar):export PATH="~/.pyenv/bin:$PATH" eval "$(pyenv init -)"
-
Install the required dependencies
-
Install poetry:
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
-
Clone this repository
-
cd python-veolia-api
-
Install the required Python version:
pyenv install
-
Init the project:
poetry install
-
Run
poetry run pre-commit install
PyCharm
As IDE you can use PyCharm.
Using snap, run snap install pycharm --classic
to install it.
For MacOS, run brew cask install pycharm-ce
Once launched, don't create a new project, but open an existing one and select the python-veolia-api folder.
Go to File | Settings | Project: nre-tag | Project Interpreter. Your interpreter must look like <whatever>/python-veolia-api/.venv/bin/python
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
Built Distribution
File details
Details for the file pyolia-0.4.0.tar.gz
.
File metadata
- Download URL: pyolia-0.4.0.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.1 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b01e128f259393bc814e595c40b367c01f2feb506d52b575a3f96c2ada6f8bd8 |
|
MD5 | 2bf74d4731f32cce16226cc7e80c31e5 |
|
BLAKE2b-256 | fed97b5021701e3f7c9b136caffd8c726ec2647c0fcc4c35ad726da58f1acfe3 |
File details
Details for the file pyolia-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: pyolia-0.4.0-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.1 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | babee76d0be0c63195ec2851da163cfd7f8df4dbe2549caabf50ab6a2ced50ba |
|
MD5 | 04fa873e3c8107c3d70c50577eb3f251 |
|
BLAKE2b-256 | b03431a0ee3205709ca2359c913d54c881c12f3784bdab5afe8c3e7644acb6a7 |