Installation

Download

Download omdpb here or alternatively use git from terminal:

git clone https://gitlab.inf.unibz.it/earth_observation_public/OpenData

This creates a copy of the repository in your current directory on the file system. To install omdpb, open a terminal and in the projects root directory type:

pip install -e .

Import

Once installed, you can import the package in a python environment using

import omdpb

Since the functions to access the Api are in the open_meteo_data.py module, I recommend to import the package as:

import omdpb.open_meteo_data as omd

To check out the functions in omd use:

dir(omd)

This gives you a list of functions that can be accessed by calling:

omd.<function_name>

To quickly check what a specific function does, use:

print(omd.<function_name>.__doc__)