Python3 XML: How to Get Yahoo weather, python3xml

Source: Internet
Author: User

Python3 XML: How to Get Yahoo weather, python3xml

Refer to Liao Xuefeng's Python tutorial to implement Linux Python3 to get Yahoo weather

#!/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))

The above Python3 XML implementation method for getting Yahoo weather is all the content that I have shared with you. I hope you can give us a reference and support for the customer's house.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.