Python3 XML 獲取雅虎天氣的實(shí)現(xiàn)方法
參考廖雪峰的Python教程,實(shí)現(xiàn)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 獲取雅虎天氣的實(shí)現(xiàn)方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
相關(guān)文章
python 實(shí)現(xiàn)分頁(yè)顯示從es中獲取的數(shù)據(jù)方法
今天小編就為大家分享一篇python 實(shí)現(xiàn)分頁(yè)顯示從es中獲取的數(shù)據(jù)方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2018-12-12
python中__new__和__init__的實(shí)現(xiàn)
在Python中,每個(gè)對(duì)象都有兩個(gè)特殊的方法__new__和__init__,本文主要介紹了python中__new__和__init__的實(shí)現(xiàn),具有一定的參考價(jià)值,感興趣的可以了解一下2024-05-05
linux系統(tǒng)使用python監(jiān)控apache服務(wù)器進(jìn)程腳本分享
這篇文章主要介紹了linux系統(tǒng)使用python監(jiān)控apache服務(wù)器進(jìn)程的腳本,大家參考使用吧2014-01-01
python 不以科學(xué)計(jì)數(shù)法輸出的方法
今天小編就為大家分享一篇python 不以科學(xué)計(jì)數(shù)法輸出的方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2018-07-07
python的三種等待方式及優(yōu)缺點(diǎn)小結(jié)
這篇文章主要介紹了python的三種等待方式及優(yōu)缺點(diǎn)的相關(guān)資料,三種等待元素加載的方法分別是強(qiáng)制等待、隱式等待和顯式等待,并詳細(xì)比較了它們的優(yōu)缺點(diǎn),需要的朋友可以參考下2024-12-12
python文件操作相關(guān)知識(shí)點(diǎn)總結(jié)整理
這篇文章主要介紹了python文件操作相關(guān)知識(shí)點(diǎn),整理匯總了Python文件操作所涉及的常見(jiàn)函數(shù)與方法,并給出了實(shí)例代碼予以總結(jié)歸納,需要的朋友可以參考下2016-02-02

