当前位置: 首页>>代码示例>>Python>>正文


Python NetEase.top_playlists方法代码示例

本文整理汇总了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)
开发者ID:iamzcr,项目名称:net_music,代码行数:9,代码来源:view.py

示例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)
开发者ID:Peterpig,项目名称:MusicServer,代码行数:36,代码来源:views.py


注:本文中的api.NetEase.top_playlists方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。