Metadata-Version: 2.1
Name: OMIEData
Version: 0.0.2.2
Summary: Package to download electricity time series from https://www.omie.es/
Home-page: https://github.com/acruzgarcia/OMIEData
Author: Alberto Cruz and Mirel Mora
Author-email: a.cruz.garcia@gmail.com, mirel.mora@gmail.com
License: UNKNOWN
Keywords: OMIE,Electricity prices
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: requests
Requires-Dist: datetime

# Package OMIEData: Open source tool for Electricity data analysis
Package to download electricity time series (prices and demand) from https://www.omie.es/

[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
[![PyPI version fury.io](https://img.shields.io/pypi/v/OMIEData.svg)](https://pypi.org/project/OMIEData/)
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/OMIEData.svg)](https://pypi.python.org/pypi/OMIEData/)



## Installation 

The package is uploaded at https://pypi.org/project/OMIEData/, so the usual

```python
python -m pip install OMIEData

```
from the command line should work. 

Aternatively, to install it from GitHub, type:

```python
python -m pip install git+https://github.com/acruzgarcia/OMIEData

```

or use the .whl (or .tar.gz) file within dist folder:

```python
python -m pip install OMIEData-VERSION-py3-none-any.whl

```
or

```python
python -m pip install OMIEData-VERSION.tar.gz

```

## Examples:

Files 

- [example_energy_by_technology.py](https://github.com/acruzgarcia/OMIEData/blob/dev/example_energy_by_technology.py)
- [example_marginal_price.py](https://github.com/acruzgarcia/OMIEData/blob/dev/example_marginal_price.py)

illustrates the use of the package. Enjoy!.


