Apuntes_Python/04_seis_proyectos/03_GettingWeatherInfo/main.py

17 lines
418 B
Python
Raw Permalink Normal View History

2022-12-24 22:41:20 -03:00
"""
Obtener información del clima de un lugar especificado, consultando
API de OpenWeatherMap.org
"""
import requests
from pprint import pprint
lugar = input("Ingresa una localidad: ")
api_key = '9135bdc93ec1157c7ac91e9ca9fdff66'
url_base = 'https://api.openweathermap.org/data/2.5/weather?q=' + lugar + '&appid=' + api_key + '&units=metric'
info_clima = requests.get(url_base).json()
pprint(info_clima)