用和风天气API获取沈阳市天气信息
时间: 2023-10-31 10:07:13 浏览: 115
ESP32获取和风天气
好的,以下是获取沈阳市天气信息的示例代码:
```python
import requests
url = "https://devapi.qweather.com/v7/weather/now"
params = {
"key": "your_key_here",
"location": "沈阳"
}
response = requests.get(url, params=params)
data = response.json()
if data["code"] == "200":
weather = data["now"]["text"]
temperature = data["now"]["temp"]
print(f"沈阳现在的天气是{weather},温度为{temperature}℃。")
else:
print("获取天气信息失败。")
```
注意将示例代码中的 `your_key_here` 替换成你在和风天气API申请的实际key。
阅读全文