可以通过以下步骤实现:
完整的代码示例:
import requests
url = "http://example.com/data.json" # 替换为实际的json文件URL
response = requests.get(url)
if response.status_code == 200:
data = response.json()
filename = "data.json" # 保存的文件名
with open(filename, "w") as file:
file.write(response.text)
print("json文件保存成功!")
else:
print("请求失败,错误码:", response.status_code)
这样就可以使用request模块将json文件保存到计算机了。
推荐的腾讯云相关产品:腾讯云对象存储(COS)
领取专属 10元无门槛券
手把手带您无忧上云