An "API" for meteoalarm.eu using the rss feeds.
Project description
An API for meteoalarm.eu weather alerts.
DISCLAIMER: This is an open source project and doesn't have any affiliation with meteoalarm.eu.
To install enter in a command line:
pip install meteoalarm-rssapi
Now, lets see a simple example:
from meteoalarm_rssapi import MeteoAlarm
meteo = MeteoAlarm("DE", "Kreis Ahrweiler", "de")
print(meteo.alerts())
and you will get (after some pprint
):
alert_id: 507556137
awareness_level: Yellow
awareness_type: Extreme low temperature
country: DE
region: Kreis Ahrweiler
from: 2021-02-13T18:00:00+01:00
until: 2021-02-14T12:00:00+01:00
languages: ['de']
message: Es tritt mäßiger Frost zwischen -7 °C und -9 °C auf. In
Bodennähe wird strenger Frost um -12 °C erwartet.
message_id: 3743141168
published: 2021-02-14T01:00:00+01:00
You need to know your ISO 3166-1 Alpha-2 country code (e.g. DE) and the exact name of your region as reported by your national agency to meteoalarm.eu (e.g. Kreis Ahrweiler). For that, please check the page for your country in meteoalarm.eu, or run the following script:
from meteoalarm_rssapi import get_regions
print(get_regions("DE"))
You need to know the ISO 639-1 code for the message's language (usually the languages available for each country are english ('en') and the local language ('de')). The indication of language is optional, and if no language is specified the message will come unparsed and in all available languages.
The timestamps for published
, from
and until
are in ISO8601 format, so that you can (easily) convert them to your local date/time.
There are two pieces of information that could be important for your applications:
alert_id
changes to a new value (for a givenawareness_type
) when there is a change in the day/month or first digit of hour offrom
. So, doesn't change if there are only a revision of the H:MM, a revision foruntil
or a change in theawareness_level
.message_id
changes with any change inmessage
,published
,from
,until
orawareness_level
.
In conclusion, for one alert_id
there are several message_id
(that can be taken as the revisions of the alert_id
).
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 meteoalarm_rssapi-1.0.5.tar.gz
.
File metadata
- Download URL: meteoalarm_rssapi-1.0.5.tar.gz
- Upload date:
- Size: 44.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e711e5af8cfe36346a840cfd35635d147942bf1fb07d7550e34e31751d81794f |
|
MD5 | 91fa686d03a6ad1dcd13c83bf820799c |
|
BLAKE2b-256 | 414aa0640bf6bd0a3526deb7517df97a7a4c95c694e0f339fe90f0038f9b706c |
File details
Details for the file meteoalarm_rssapi-1.0.5-py3-none-any.whl
.
File metadata
- Download URL: meteoalarm_rssapi-1.0.5-py3-none-any.whl
- Upload date:
- Size: 41.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26bf543e9152504837c3b92a652e8a49c4db81ca3a291da9dda2a926331efdb2 |
|
MD5 | 116553d7665738cd48ebad8a7d5be7c3 |
|
BLAKE2b-256 | 14d49794d8d11abf3d5fb6b0879154a9a7882dd600099ae48baefd89742ce909 |