Py:利用pickle模块和API天气接口实现输入城市得到该城市的天气预报

举报
一个处女座的程序猿 发表于 2021/03/28 02:35:40 2021/03/28
【摘要】 Py:利用pickle模块和API天气接口实现输入城市得到该城市的天气预报     目录 输出结果 实现代码     输出结果       实现代码 # -*- coding: utf-8 -*-'''Created on 2017年3月10日@author: niu'''import urllib.requestimport json imp...

Py:利用pickle模块和API天气接口实现输入城市得到该城市的天气预报

 

 

目录

输出结果

实现代码


 

 

输出结果

 

 

 

实现代码


      # -*- coding: utf-8 -*-
      '''
      Created on 2017年3月10日
      @author: niu
      '''
      import urllib.request
      import json
      import pickle
      pickle_file=open("city_data.pkl","rb")
      city=pickle.load(pickle_file)
      cityname = input("你想查询那个城市的天气?")
      citycode=""
      try:
       citycode =city[cityname]
      except:
      print ("not Found")
      if citycode:
      try:
       url= "http://www.weather.com.cn/data/cityinfo/"+citycode+".html"#构造网址 
       content = urllib.request.urlopen(url).read()#读取网页源代码 
       data =json.loads(content)#使用json库将字符转化为字典 
      #print type(data) 
      #print (content) 
       res =data["weatherinfo"]#获取字典 
       str_temp=("%s :%s~%s")%(res["weather"],res["temp1"],res["temp2"])#格式化字符 
      print (str_temp)#输出天气信息 
      except:
      print ("Not Found!!" )
  
 

 

利用子程序将城市数据载入


      import pickle
      pickle_file=open("city_data.pkl","wb")
      pickle.dump(city,pickle_file)
      pickle_file.close()
  
 

 


相关文章
Py:利用pickle模块和API天气接口实现输入城市得到该城市的天气预报
 

文章来源: yunyaniu.blog.csdn.net,作者:一个处女座的程序猿,版权归原作者所有,如需转载,请联系作者。

原文链接:yunyaniu.blog.csdn.net/article/details/79512932

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。