Hubeau client to collect data from the different APIs
Project description
cl-hubeau
Simple hub'eau client for python
This package is currently under active development. Every API on Hub'eau will be covered by this package in due time.
Basic examples
Clean cache
from cl_hubeau.utils import clean_all_cache
clean_all_cache
Piezometry
3 high level functions are available (and one class for low level operations).
Get all piezometers (uses a 30 days caching):
from cl_hubeau import piezometry
gdf = piezometry.get_all_stations()
Get chronicles for the first 100 piezometers (uses a 30 days caching):
df = piezometry.get_chronicles(gdf["code_bss"].head(100).tolist())
Get realtime data for the first 100 piezometers:
A small cache is stored to allow for realtime consumption (cache expires after only 15 minutes). Please, adopt a responsible usage with this functionnality !
df = get_realtime_chronicles(gdf["code_bss"].head(100).tolist())
Low level class to perform the same tasks:
Note that :
- the API is forbidding results > 20k rows and you may need inner loops
- the cache handling will be your responsibility, noticely for realtime data
with piezometry.PiezometrySession() as session:
df = session.get_chronicles(code_bss="07548X0009/F")
df = session.get_stations(code_departement=['02', '59', '60', '62', '80'], format="geojson")
df = session.get_chronicles_real_time(code_bss="07548X0009/F")
Hydrometry
4 high level functions are available (and one class for low level operations).
Get all stations (uses a 30 days caching):
from cl_hubeau import hydrometry
gdf = hydrometry.get_all_stations()
Get all sites (uses a 30 days caching):
gdf = hydrometry.get_all_sites()
Get observations for the first 5 sites (uses a 30 days caching): Note that this will also work with stations (instead of sites).
df = hydrometry.get_observations(gdf["code_site"].head(5).tolist())
Get realtime data for the first 5 sites (no cache stored):
A small cache is stored to allow for realtime consumption (cache expires after only 15 minutes). Please, adopt a responsible usage with this functionnality !
df = hydrometry.get_realtime_observations(gdf["code_site"].head(5).tolist())
Low level class to perform the same tasks:
Note that :
- the API is forbidding results > 20k rows and you may need inner loops
- the cache handling will be your responsibility, noticely for realtime data
with hydrometry.HydrometrySession() as session:
df = session.get_stations(code_station="K437311001")
df = session.get_sites(code_departement=['02', '59', '60', '62', '80'], format="geojson")
df = session.get_realtime_observations(code_entite="K437311001")
df = session.get_observations(code_entite="K437311001")
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
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 cl_hubeau-0.2.0.tar.gz.
File metadata
- Download URL: cl_hubeau-0.2.0.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.9.19 Linux/6.5.0-1024-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8024901dae67e0e519d59154cbf2eb94cf4bc6a1c3ac42bff425265c792fbe53
|
|
| MD5 |
edf9e5e9ed6bf8626b9be26758e9aefa
|
|
| BLAKE2b-256 |
925388fbc1ff67d07b3b454ab41f6b13569b8a5d0eb6be99869522472632389f
|
File details
Details for the file cl_hubeau-0.2.0-py3-none-any.whl.
File metadata
- Download URL: cl_hubeau-0.2.0-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.9.19 Linux/6.5.0-1024-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84a40b71293f0ae3ad6d59195fbec7cae2fb8e5e23da85b38403cbd5f7958a0a
|
|
| MD5 |
adbc2084d1f96ba4e22c6096d2dde9ed
|
|
| BLAKE2b-256 |
b3f7b4572d25ab4018561d71bdbdb346b2407c31b8f923c9aa661d735e9dae9a
|