Metadata-Version: 2.1
Name: meteoalertapi
Version: 0.3.0
Summary: A small api to get alerting messages from extreme weather in Europe from https://www.meteoalarm.org.
Home-page: https://github.com/rolfberkenbosch/meteoalert-api
Author: Rolf Berkenbosch
Author-email: rolf@berkenbosch.nl
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: xmltodict
Requires-Dist: requests

# meteoalarm-api


![PyPI](https://img.shields.io/pypi/v/meteoalertapi.svg?style=for-the-badge|https://pypi.org/project/meteoalertapi)
![Travis (.org)](https://img.shields.io/travis/rolfberkenbosch/meteoalert-api.svg?style=for-the-badge)

An unofficial Python wrapper for [MeteoAlarm.org](https://meteoalarm.org) website (European Weather alerts), which can be used to check if a given province in your country has currently a weather alert.

## Installation

Using Pip:

```console
pip install meteoalertapi
```

## Code Example

```python
from meteoalertapi import Meteoalert

# Find you country and province on https://meteoalarm.org/ or https://feeds.meteoalarm.org/
meteo = Meteoalert('country', 'province_name')

# Get the weather alarm for your place
meteo = Meteoalert('country', 'province_name')
print(str(meteo.get_alert()))
```

## Changelog

See the [CHANGELOG](./CHANGELOG.md) file.

## License

MIT


