Press enter to see results or esc to cancel.

python ile wunderground.com uzerinden hava durumu bilgisi cekmek

Merhaba, bu acemice scripttewunderground.com sitesindeki api’den yararlanacagiz. Sitesinden uye olup api key alabilir ve kendize gore asagidaki kodu uyarlayabilirsiniz. Sevgiyle.

from urllib.request import urlopen
import json
f = urlopen('http://api.wunderground.com/api/052c55fadf25fe5d/forecast/lang:TR/q/Turkey/Ankara.json')
json1 = f.read().decode('utf8')
parca_json = json.loads(json1)
cevdet = parca_json["forecast"]["txt_forecast"]["forecastday"]
for parcala in cevdet:
    print ("{} Gunu " "{}" .format(parcala['title'], parcala['fcttext_metric']))
f.close()

Ekran Goruntusu:
screenshot_2016-11-16_15-21-36