python处理API返回的JSON数据
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
1 处理JSON数据
假设存在如下JSON格式数据:
使用python编写代码处理JSON请求,拿到response里的result数据:
import json
from urllib.request import urlopen
def getInformation(id):
response = urlopen("https://api.apiopen.top/musicRankingsDetails?type="+id).read().decode("utf-8")
responsejson = json.loads(response)
return responsejson.get("result")
print(getInformation("1")[0].get("artist_name"))
2 API练习地址
可以点击“ try it out ”,调试API
可以看到请求的URL,参数等
例如getImages的API:
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)