为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用 python 脚本使用 API 从网上下载 JSON

如何使用 python 脚本使用 API 从网上下载 JSON

富国沪深 2022-07-05 17:39:15
我是蟒蛇的新手。谁能告诉我如何从 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()

有关其他资源,您可以点击此链接


查看完整回答
反对 回复 2022-07-05
?
月关宝盒

TA贡献1772条经验 获得超5个赞

import requests
requests.get(URL).json()


查看完整回答
反对 回复 2022-07-05
  • 2 回答
  • 0 关注
  • 218 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信