Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 242 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 242 Bytes

Cuba Weather OWM Examples

from cuba_weather_owm import CubaWeatherOWM

API_KEY = 'YOUR OPENWEATHERMAP KEY'

location = input('Insert municipality:')

api = CubaWeatherOWM(API_KEY)

weather = api.get(location)

print(weather)