Météociel API’s documentation

Description

Météociel API is a small Python API for the website Météociel. This API allows to dump data from:

  • all the stations known by Météociel (all around the world)

  • forecasts and trends

  • upper air sounding (observations) (Western Europe only)

  • upper air sounding (simulated by AROME) (France only)

A full documentation is available on ReadTheDocs.

Installation

You can install this package from PyPI: pip install meteociel-api.

You can also install it from sources in a virtual environment by executing these commands in a terminal:

$ git clone https://github.com/Meteo-API/meteociel_api.git
$ cd meteociel_api
$ python -m venv venv
$ source venv/bin/activate
$ pip install -e .

Under Windows please enter $ venv\Scripts\activate instead of $ source venv/bin/activate.

You can also compile the documentation:

$ cd docs
$ pip install -r requirements.txt
$ make html

Then, open the file meteociel_api/docs/_build/html/index.html.

License

This code is provided under the GNU General Public License v3.0+ (GPLv3+).

Please refer to LICENSE file for further informations.

Content