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

我是蟒蛇的新手。谁能告诉我如何从 python 中的给定 API 下载 JSON 文件,然后使用 mako 或 jinja 保存为 HTML?

  1. 使用python脚本通过API从网上下载JSON。


富国沪深
浏览 219回答 2
2回答

HUX布斯

您使用 requests 模块通过以下代码获取 jsonimport requestsurl = "http://samples.openweathermap.org/data/2.5/weather?q=London,uk&appid=b6907d289e10d714a6e88b30761fae22"res = requests.get(url)if res.ok:    res.json()有关其他资源,您可以点击此链接

月关宝盒

import requests requests.get(URL).json()
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python