Metadata-Version: 2.1
Name: existenz-api-fetcher
Version: 0.0.5
Summary: Easily fetch swiss weather and hydrological data from the Existenz API
Author-email: Lilian Lonla <lilianlonla15@gmail.com>
Project-URL: Homepage, https://github.com/Lilian1510/ExistenzAPIFetcher/
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# :droplet: Existenz API Fetcher

This package is designed to automate the loading and use of sensor data from the MeteoSwiss Federal Office's
and the Federal Office for the Environment's (FOEN) networks of stations and is built on top of Christian Studer's ExistenzAPIs (https://api.existenz.ch/).

Data is obtained by querying a two-year, daily time series from the InfluxDB database and is returned as a `pandas` dataframe.
Functions to compute potential evapotranspiration using the `pyet` module have been implemented.
Take a look at the Jupyter Notebooks tutorials in the examples directory to learn how to use the various functionalities of this package.

## Requirements
```
influxdb_client==1.32.0
pandas==1.4.3
pyet=1.1.0
```

## :gear: Installation
To install the package from the PypI index:

`pip install existenz_api_fetcher`

To install in developer mode:

`pip install -e .`

