Metadata-Version: 2.1
Name: tafver-metars
Version: 0.3.2
Summary: Download and formating METAR's and TAF's as an input for TAF-VER software verificator.
Home-page: https://github.com/diego-garro/tafver-metars
License: MIT
Author: diego-garro
Author-email: diego.garromolina@yahoo.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: bs4 (>=0.0.1,<0.0.2)
Requires-Dist: click (>=7.1.2,<8.0.0)
Requires-Dist: metar (>=1.8.0,<2.0.0)
Requires-Dist: requests (>=2.25.1,<3.0.0)
Requires-Dist: rich (>=9.13.0,<10.0.0)
Project-URL: Repository, https://github.com/diego-garro/tafver-metars
Description-Content-Type: text/markdown

# TAFVER METARS

Simple command line tool to download METAR's and TAF's for a given station.

## Installation

For install only run this command from your terminal

```
pip install tafver-metars
```

### Update

Update with `pip` adding the option --upgrade

```
pip install --upgrade tafver-metars
```

## Examples

To download data from the current month for JFK INT. Airport only run 

```
tafver download kjfk
```

If you need older month but the same year run

```
tafver download kjfk -m 2
```

where `-m 2` its an option and refers to february. Take in count that this value must be
earlier than the actual month for the same year.

If you need older year run

```
tafver download kjfk -y 2020
```

where `-y 2020` its an option and refers to the year 2020. Take in count that the year must be
older than 2004, only years from 2005 onwards are allowed. That's because only this years are
available in databases of Ogimet.com. 
