码迷,mamicode.com
首页 > 编程语言 > 详细

使用python写天气预告

时间:2017-11-05 16:33:55      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:pairs   pen   打开   pytho   urllib   utf-8   技术分享   2-2   http   

先去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写天气预告

标签:pairs   pen   打开   pytho   urllib   utf-8   技术分享   2-2   http   

原文地址:http://www.cnblogs.com/haq5201314/p/7787638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!