1. 程式人生 > >使用python寫天氣預告

使用python寫天氣預告

Coding 打開網頁 ges response nbsp air pairs key alt

先去YY天氣註冊一個賬號,然後就能用API了

http://www.yytianqi.com/

  

# encoding=utf-8
import urllib.request
import json
import collections
cityid = ‘http://api.yytianqi.com/observe?key=API的key&city=城市ID‘

response = urllib.request.urlopen(cityid) //打開網頁
html = response.read().decode(‘utf-8‘)//解碼為utf-8
info = json.loads(html, object_pairs_hook=collections.OrderedDict)//把json轉成python

print(info)

技術分享

使用python寫天氣預告