http://t.weather.sojson.com/api/weather/city/dat3网站获取沈阳市三天内天气信息
时间: 2023-12-07 18:29:48 浏览: 61
天气预报接口城市编号
5星 · 资源好评率100%
对于这个 API 接口,你可以使用 Python 中的 requests 库来发送 HTTP 请求,获取天气信息。以下是一个示例代码:
```python
import requests
# 发送 HTTP 请求并获取响应数据
url = 'http://t.weather.sojson.com/api/weather/city/101070101'
response = requests.get(url)
# 解析 JSON 格式的响应数据
data = response.json()
today = data['data']['forecast'][0]
tomorrow = data['data']['forecast'][1]
day_after_tomorrow = data['data']['forecast'][2]
# 打印天气信息
print('今天:', today['type'], today['low'], '-', today['high'], '℃')
print('明天:', tomorrow['type'], tomorrow['low'], '-', tomorrow['high'], '℃')
print('后天:', day_after_tomorrow['type'], day_after_tomorrow['low'], '-', day_after_tomorrow['high'], '℃')
```
其中,`101070101` 是沈阳市的城市代码,你可以根据需要修改为其他城市的代码。注意,这个 API 接口是免费的,但是有访问频率限制,建议每小时不要超过 100 次请求。
阅读全文