INUMET Api wrapper for python


License
MIT
Install
pip install inumet-api==0.1.4

Documentation

INUMET API

INUMET Api wrapper for python

Installation

$ pip install inumet_api

Example

Get all the relevant weather data

# import the module
from inumet_api import INUMET

print(INUMET('Prado','Montevideo')._get_data())

Get Current Conditions

# import the module
from inumet_api import INUMET

print(INUMET('Prado','Montevideo').estado_actual())

Get the list of stations

# import the module
from inumet_api import INUMET

print(INUMET().estaciones())