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练习地址

Swagger UI

 可以点击“ try it out ”,调试API

 可以看到请求的URL,参数等

 例如getImages的API:

 

 

GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e 4 个月前
8c391e04 6 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐