Python3 XML 获取雅虎天气的实现方法
2019/7/13 22:18:09
本文主要是介绍Python3 XML 获取雅虎天气的实现方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
参考廖雪峰的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 获取雅虎天气的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持找一找教程网。
这篇关于Python3 XML 获取雅虎天气的实现方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门