Python3 XML 获取雅虎天气的实现方法


Posted in Python onFebruary 01, 2018

参考廖雪峰的Python教程,实现Linux Python3获取雅虎天气

#!/usr/bin/env python3
# coding: utf-8
import os
from datetime import datetime
from urllib import request 
from xml.parsers.expat import ParserCreate 
file_name = "weather.txt"
for root, dirs, files in os.walk("."):
 if file_name in files:
  os.remove(os.path.join(root, file_name))
def yahoo_weather(data):
 flag = False
 weather = {"city": "", "pubdate": "", "forecast": []}
 def start_element(name, attrs):
  if name == "yweather:location":
   weather["city"] = weather["city"] + attrs["city"]
   weather["city"] = weather["city"] + " " + attrs["country"]
  if name == "yweather:forecast":
   forecast = {}
   forecast["date"] = attrs["date"]
   forecast["day"] = attrs["day"]
   forecast["high"] = attrs["high"]
   forecast["low"] = attrs["low"]
   forecast["text"] = attrs["text"]
   weather["forecast"].append(forecast)
  if name == "pubDate":
   nonlocal flag
   flag = True
  
 def char_data(text):
  nonlocal flag
  if flag:
   weather["pubdate"] = text
   flag = False
 parser = ParserCreate()
 parser.StartElementHandler = start_element
 parser.CharacterDataHandler = char_data
 parser.Parse(data)
 return weather
def print_weather(weather):
 with open(file_name, "a") as f:
  s = "City: %s\nPub date: %s" %(weather["city"], weather["pubdate"])
  print("%s" %(weather["city"]))
  f.write(s + "\n")
  for forecast in weather["forecast"]:
   date = datetime.strptime(forecast["date"], "%d %b %Y").strftime("%Y-%m-%d")
   s = "Date: %s High: %s Low: %s Weather: %s" %(date, forecast["high"], forecast["low"], forecast["text"])
   f.write(s + "\n")
  f.write("\n")
citys = ["2151330", "2151849", "44418", "615702", "2514815"]
for city in citys:
 url = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid%20%3D%20"
 url = url + city
 url = url + "&format=xml"
 with request.urlopen(url, timeout=4) as f:
  weather = yahoo_weather(f.read())
  print_weather(weather)
print("weather conditions has written to %s" %(file_name))

以上这篇Python3 XML 获取雅虎天气的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python+matplotlib绘制简单的海豚(顶点和节点的操作)
Jan 02 Python
python按行读取文件,去掉每行的换行符\n的实例
Apr 19 Python
Python模拟自动存取款机的查询、存取款、修改密码等操作
Sep 02 Python
在python里面运用多继承方法详解
Jul 01 Python
Python中的正则表达式与JSON数据交换格式
Jul 03 Python
对Python _取log的几种方式小结
Jul 25 Python
Windows下Anaconda和PyCharm的安装与使用详解
Apr 23 Python
Python常用类型转换实现代码实例
Jul 28 Python
Python调用C/C++的方法解析
Aug 05 Python
Python如何实现机器人聊天
Sep 10 Python
Python利用Pillow(PIL)库实现验证码图片的全过程
Oct 04 Python
python正则表达式re.search()的基本使用教程
May 21 Python
Python命令行解析模块详解
Feb 01 #Python
python2.7到3.x迁移指南
Feb 01 #Python
Python Paramiko模块的使用实际案例
Feb 01 #Python
python中使用xlrd读excel使用xlwt写excel的实例代码
Jan 31 #Python
python使用tensorflow保存、加载和使用模型的方法
Jan 31 #Python
python通过elixir包操作mysql数据库实例代码
Jan 31 #Python
Django视图和URL配置详解
Jan 31 #Python
You might like
ThinkPHP2.0读取MSSQL提示Incorrect syntax near the keyword 'AS'的解决方法
2014/06/25 PHP
PHPCMS2008广告模板SQL注入漏洞修复
2016/10/11 PHP
js电信网通双线自动选择技巧
2008/11/18 Javascript
jQuery 操作XML入门
2008/12/25 Javascript
广告切换效果(缓动切换)
2009/05/27 Javascript
jquery 日期分离成年月日的代码
2010/05/14 Javascript
dojo学习第二天 ajax异步请求之绑定列表
2011/08/29 Javascript
js使用for循环查询数组中是否存在某个值
2014/08/12 Javascript
JS实现的生成随机数的4个函数分享
2015/02/11 Javascript
完美兼容多浏览器的js判断图片路径代码汇总
2015/04/17 Javascript
简单理解vue中el、template、replace元素
2016/10/27 Javascript
JavaScript 中调用 Kotlin 方法实例详解
2017/06/09 Javascript
nodejs制作小爬虫功能示例
2020/02/24 NodeJs
微信小程序用户盒子、宫格列表的实现
2020/07/01 Javascript
详解Python2.x中对Unicode编码的使用
2015/04/03 Python
使用Python3编写抓取网页和只抓网页图片的脚本
2015/08/20 Python
TensorFlow如何实现反向传播
2018/02/06 Python
python2 与 python3 实现共存的方法
2018/07/12 Python
Python3实现的旋转矩阵图像算法示例
2019/04/03 Python
详解如何用python实现一个简单下载器的服务端和客户端
2019/10/28 Python
如何利用Python识别图片中的文字
2020/05/31 Python
python3实现名片管理系统(控制台版)
2020/11/29 Python
python定义具名元组实例操作
2021/02/28 Python
Jupyter安装拓展nbextensions及解决官网下载慢的问题
2021/03/03 Python
浅谈HTML5 & CSS3的新交互特性
2016/07/19 HTML / CSS
比利时家具购买网站:Home24
2019/01/03 全球购物
PHP如何对用户密码进行加密
2014/07/31 面试题
创立科技Java面试题
2015/11/29 面试题
客户代表实习人员自我鉴定
2013/09/27 职场文书
公司请假条格式
2014/04/11 职场文书
授权委托书范本(单位)
2014/09/28 职场文书
2014-2015学年工作总结
2014/11/27 职场文书
九华山导游词
2015/02/03 职场文书
2015年学雷锋活动总结
2015/02/06 职场文书
2015选调生工作总结
2015/07/24 职场文书
Python 图片添加美颜效果
2022/04/28 Python