📜  将响应转换为 json python 代码示例

📅  最后修改于: 2022-03-11 14:46:41.254000             🧑  作者: Mango

代码示例2
#You can use json.loads:

import json
import requests

response = requests.get(...)
json_data = json.loads(response.text)