Python wrapper for IMGW-PIB API.
Project description
imgw-pib
Python async wrapper for IMGW-PIB API.
Installation
You can install the library with pip:
pip install imgw-pib
How to use the library
"""Example of usage IMGW-PIB."""
import asyncio
import logging
from aiohttp import ClientError, ClientSession
from imgw_pib import ApiError, ImgwPib
logging.basicConfig(level=logging.DEBUG)
WEATHER_STATION_ID = "12200"
HYDROLOGICAL_STATION_ID = "154190050"
async def main() -> None:
"""Run main function."""
async with ClientSession() as websession:
try:
imgwpib = await ImgwPib.create(
websession,
weather_station_id=WEATHER_STATION_ID,
hydrological_station_id=HYDROLOGICAL_STATION_ID,
)
weather_data = await imgwpib.get_weather_data()
hydrological_data = await imgwpib.get_hydrological_data()
except ApiError as error:
print(f"API Error: {error.status}")
except ClientError as error:
print(f"ClientError: {error}")
except TimeoutError as error:
print(f"TimeoutError: {error}")
else:
print(f"Weather stations: {imgwpib.weather_stations}")
print(f"Weather data: {weather_data}")
print(f"Hydrological stations: {imgwpib.hydrological_stations}")
print(f"Hydrological data: {hydrological_data}")
loop = asyncio.new_event_loop()
loop.run_until_complete(main())
loop.close()
Error handling
The library raises ApiError
when the IMGW-PIB API returns an error, ClientError
for network-related errors, and TimeoutError
when a request times out.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
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
imgw_pib-1.0.3.tar.gz
(12.2 kB
view details)
Built Distribution
imgw_pib-1.0.3-py3-none-any.whl
(11.0 kB
view details)
File details
Details for the file imgw_pib-1.0.3.tar.gz
.
File metadata
- Download URL: imgw_pib-1.0.3.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b356141b7989206d17597936c26db837df029708f64e6be04eb04ccae4fe0d4 |
|
MD5 | f4ecf0735d188c443bdb31f520993c7f |
|
BLAKE2b-256 | f458ad3a414dd1c63801e307077f9ffe9d5b8a19a2a6d50225a629bf31f29ed3 |
File details
Details for the file imgw_pib-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: imgw_pib-1.0.3-py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68f285a13bfd237ebf4cbf2ac8bf1fe6ab79504cb8d22aaf37f3ce392027273c |
|
MD5 | 8eca3790ee75f3a436aff391ca19a9a7 |
|
BLAKE2b-256 | 90c3b7e0bf3d6986b88a1d03cfb1db602b7e49025c2e6278319c9ddd6fc4a6c5 |