17 lines
418 B
Python
17 lines
418 B
Python
|
"""
|
||
|
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)
|
||
|
|
||
|
|