我是蟒蛇的新手。谁能告诉我如何从 python 中的给定 API 下载 JSON 文件,然后使用 mako 或 jinja 保存为 HTML?使用python脚本通过API从网上下载JSON。API 使用http://samples.openweathermap.org/data/2.5/weather?q=London,uk&appid=b6907d289e10d714a6e88b30761fae22
2 回答
HUX布斯
TA贡献1876条经验 获得超6个赞
您使用 requests 模块通过以下代码获取 json
import requests
url = "http://samples.openweathermap.org/data/2.5/weather?q=London,uk&appid=b6907d289e10d714a6e88b30761fae22"
res = requests.get(url)
if res.ok:
res.json()
有关其他资源,您可以点击此链接
添加回答
举报
0/150
提交
取消