本文整理汇总了Python中api.NetEase.top_playlists方法的典型用法代码示例。如果您正苦于以下问题:Python NetEase.top_playlists方法的具体用法?Python NetEase.top_playlists怎么用?Python NetEase.top_playlists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类api.NetEase
的用法示例。
在下文中一共展示了NetEase.top_playlists方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: play_list
# 需要导入模块: from api import NetEase [as 别名]
# 或者: from api.NetEase import top_playlists [as 别名]
def play_list():
cate = '全部'
if request.method == "POST":
cate = request.form['cate']
play_song_list = NetEase.top_playlists(NetEase(),cate)
categoty = NetEase.get_play_category(NetEase(),play_song_list)
return render_template('play_list.html',play_song_list = play_song_list,categoty = categoty,now_cate=cate)
示例2: getTop_playlistsId
# 需要导入模块: from api import NetEase [as 别名]
# 或者: from api.NetEase import top_playlists [as 别名]
def getTop_playlistsId(request):
getlistAll = []
global getLists
getLists = []
global getListName
getListName = []
global getListImage
getListImage = []
getDict = {}
#getDict.
ease = NetEase()
s = ease.top_playlists(limit=50)
req = simplejson.dumps(s)
getReq = simplejson.loads(req)
print(getReq)
# req = simplejson.loads(s)
# 遍历整个字典取出需要的数据并加入到list
for getid in getReq:
global getLists
getLists.append(getid["id"])
global getListName
getListName.append(getid["name"])
global getListImage
getListImage.append(getid["coverImgUrl"])
getlistAll.append(getLists)
getlistAll.append(getListName)
getlistAll.append(getListImage)
jsonArray = simplejson.dumps(getlistAll)
return HttpResponse(jsonArray)