使用天气预报api接口

本文介绍了一种使用Python和第三方API来获取指定城市天气预报的方法。通过输入城市名称,可以调用API接口并解析返回的JSON数据,从而获取温度、天气状况、风向、星期、城市名、日期和穿衣建议等信息。
摘要由CSDN通过智能技术生成

使用天气预报api接口

import requests
import json

city = input("城市:")
url = 'http://v.juhe.cn/weather/index?format=2&cityname={}&key=你的key'.format(city)
res = requests.get(url)
json_data = json.loads(res.text)

print("temperature:",json_data['result']['today']['temperature'])
print("weather:",json_data['result']['today']['weather'])
print("wind:",json_data['result']['today']['wind'])
print("week:",json_data['result']['today']['week'])
print("city:",json_data['result']['today']['city'])
print("date_y:",json_data['result']['today']['date_y'])
print("dressing_advice:",json_data['result']['today']['dressing_advice'])

在这里插入图片描述

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值