Metadata-Version: 2.1
Name: eea-cdrtools
Version: 0.5.2
Summary: A set of tool to interact with EEA Reportnet2 (CDR) API. It includes CLI tools and supporting library
Author-email: Luca Liberti <libertil@gmail.com>
Project-URL: Homepage, https://github.com/libertil/eea-cdrtools
Keywords: EEA,cli,reportnet
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: certifi >=2022.6.15
Requires-Dist: charset-normalizer >=2.1.0
Requires-Dist: click >=8.1.3
Requires-Dist: idna >=3.3
Requires-Dist: lxml >=4.9.1
Requires-Dist: requests >=2.28.1
Requires-Dist: tabulate >=0.8.10
Requires-Dist: urllib3 >=1.26.9
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: pip-tools ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'

# Description

A collection of tools to interact with the European Environment Agency (EEA) Central Data Repository (CDR) API  
in a programmatic way. The collection inlcudes helper functions to make API calls as well as CLI tools to perform   
more complex tasks


## Installation


Available in PyPI.

To start, ensure you have Python 3.8 or newer. To use the package, run:

	pip install --upgrade eea-cdrtools

After installing the package, import it:

	import cdr_tools

It can also be used as a CLI tool by issuing the command:

	cdrtools

in a terminal.

It can also be easily installed as a standalone tool locally using [pipx](https://pypa.github.io/pipx).  

First install pipx 

on macOS

	brew install pipx
	pipx ensurepath
	brew update && brew upgrade pipx


otherwise

	python3 -m pip install --user pipx
	python3 -m pipx ensurepath

then

	pipx install "git+https://github.com/libertil/eea-cdrtools"


Once installed via pip or pipcdrtools is a available at command line. You can get an overview of the functionalities by issuing

	cdrtools --help
