一個Python天氣查詢

【來源:www.51dali.cn】
大家看看,

import urllib.request
import gzip
import json
print(‘——天氣查詢——’)
def get_weather_data() :
city_name = input(‘請輸入要查詢的城市名稱:’)
url1 = ‘http://wthrcdn.etouch.cn/weather_mini?city=‘+urllib.parse.quote(city_name)
url2 = ‘http://wthrcdn.etouch.cn/weather_mini?citykey=101010100
#網址1只需要輸入城市名,網址2需要輸入城市代碼
#print(url1)
weather_data = urllib.request.urlopen(url1).read()
#讀取網頁數據
weather_data = gzip.decompress(weather_data).decode(‘utf-8’)
#解壓網頁數據
weather_dict = json.loads(weather_data)
#將json數據轉換爲dict數據
return weather_dict

def show_weather(weather_data):
weather_dict = weather_data
#將json數據轉換爲dict數據
if weather_dict.get(‘desc’) == ‘invilad-citykey’:
print(‘你輸入的城市名有誤,或者天氣中心未收錄你所在城市’)
elif weather_dict.get(‘desc’) ==’OK’:
forecast = weather_dict.get(‘data’).get(‘forecast’)
print(‘城市:’,weather_dict.get(‘data’).get(‘city’))
print(‘溫度:’,weather_dict.get(‘data’).get(‘wendu’)+’℃ ‘)
print(‘感冒:’,weather_dict.get(‘data’).get(‘ganmao’))
print(‘風向:’,forecast[0].get(‘fengxiang’))
print(‘風級:’,forecast[0].get(‘fengli’))
print(‘高溫:’,forecast[0].get(‘high’))
print(‘低溫:’,forecast[0].get(‘low’))
print(‘天氣:’,forecast[0].get(‘type’))
print(‘日期:’,forecast[0].get(‘date’))
print(‘*********************’)
four_day_forecast =input(‘是否要顯示未來四天天氣,是/否:’)
if four_day_forecast == ‘是’ or ‘Y’ or ‘y’:
for i in range(1,5):
print(‘日期:’,forecast[i].get(‘date’))
print(‘風向:’,forecast[i].get(‘fengxiang’))
print(‘風級:’,forecast[i].get(‘fengli’))
print(‘高溫:’,forecast[i].get(‘high’))
print(‘低溫:’,forecast[i].get(‘low’))
print(‘天氣:’,forecast[i].get(‘type’))
print(‘————————–’)
print(‘*************************’)

show_weather(get_weather_data())

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章