-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathweather__yahoo.py
35 lines (27 loc) · 973 Bytes
/
weather__yahoo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = "ipetrash"
import requests
city = "Магнитогорск"
# # OR:
# city = 'Magnitogorsk'
url = (
"https://query.yahooapis.com/v1/public/yql?q=select item from weather.forecast where woeid in "
"(select woeid from geo.places(1) where text='{city}') and u='c'"
"&format=json&diagnostics=true".format(city=city)
)
rs = requests.get(url)
item = rs.json()["query"]["results"]["channel"]["item"]
# Если нужна иконка для погоды:
# https://developer.yahoo.com/weather/documentation.html in Condition Codes
# code = condition['code']
#
# Weather image: http://l.yimg.com/a/i/us/we/52/' + code + '.gif
# Example: http://l.yimg.com/a/i/us/we/52/26.gif
#
condition = item["condition"]
print("Current: {temp} °C, {text}".format(**condition))
print()
print("Forecast:")
for forecast in item["forecast"]:
print("{date}: {low} - {high} °C. {day}: {text}".format(**forecast))