Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 364 Bytes

File metadata and controls

15 lines (9 loc) · 364 Bytes

Cuba Weather Red Cuba Python Examples

Example of application programming interface of the Cuba Weather project for www.redcuba.cu implemented in Python.

from cuba_weather_redcuba import CubaWeatherRedCuba

location = input('Insert municipality:')

api = CubaWeatherRedCuba()

weather = api.get(location)

print(weather)