使用python写天气预告
Posted 东京$
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用python写天气预告相关的知识,希望对你有一定的参考价值。
先去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写天气预告的主要内容,如果未能解决你的问题,请参考以下文章
企业级Python开发大佬利用网络爬虫技术实现自动发送天气预告邮件
企业级Python开发大佬利用网络爬虫技术实现自动发送天气预告邮件