Warning: Undefined array key "enable_lazyload_videos" in /var/www/murat.ws/public_html/wp-content/plugins/reco-functions/reco-functions.php on line 129
python ile wunderground.com uzerinden hava durumu bilgisi cekmek – Murat Uğur Eminoğlu
Warning: Undefined array key "custom_scripts" in /var/www/murat.ws/public_html/wp-content/plugins/reco-functions/custom-styles.php on line 48

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


Warning: Undefined array key "custom_scripts_footer" in /var/www/murat.ws/public_html/wp-content/plugins/reco-functions/custom-styles.php on line 58