时间:2021-05-22
参考廖雪峰的Python教程,实现Linux Python3获取雅虎天气
#!/usr/bin/env python3# coding: utf-8import osfrom datetime import datetimefrom 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 weatherdef 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 获取雅虎天气的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
注意:使用该方法,获取的数据总数目不能超过1万,否则出错#在python3上运行fromelasticsearchimportElasticsearchfrom
我简单的绘制了一下排序算法的分类,蓝色字体的排序算法是我们用python3实现的,也是比较常用的排序算法。Python3常用排序算法1、Python3冒泡排序—
本文实例讲述了Python实现从百度API获取天气的方法。分享给大家供大家参考。具体实现方法如下:复制代码代码如下:__author__='saint'impo
最新的CentOS8已经内置了Python2和Python3,出入Python2和Python3两个命令可以分别进入Python2和Python3。CentOS
到2019年初,Python3已经更新到了Python3.7.3,Python有两个大版本Python2和Python3,Python3是现在和未来的主流。本文