免费获取天气预报的API接口(Json格式)_天气接口-CSDN博客
查询某个城市的天气 代码 例如:南京的天气 :101190101
https://e.weather.com.cn/mweather/101190101.shtml
Python JSON 的基本操作 掌握这个后来使用天气的接口
【强烈推荐】Python中JSON的基本使用(超详细)_python json_ZSYL的博客-CSDN博客
天气的接口:http://t.weather.itboy.net/api/weather/city/101030100
详见
Python:查找天气预报json接口的城市代码(A)_天气json接口_zhangphil的博客-CSDN博客J
JSON API 免费接口:
import json,requests,sys url='http://www.kuaidi100.com/query?type=ems&postid=9871195490143' response=requests.get(url) print(response.text) SjData=json.loads(response.text) print(SjData) djh=SjData['nu'] context=SjData['data'][0]['context'] print(f'单据号:{djh}') print(f'内容:{context}')
#iciba 每日一句 import requests url = "http://open.iciba.com/dsapi/" r = requests.get(url) content = r.json()['content'] note = r.json()['note'] print(content,note)
天气JSON