gpt4 book ai didi

Python::传递一个列表作为参数

转载 作者:太空宇宙 更新时间:2023-11-03 14:12:04 25 4
gpt4 key购买 nike

pyen 中的

responses 是一个用于音乐数据的精简库,它以这种方式返回字典:

{u'id': u'AR6SPRZ1187FB4958B', u'name': u'Wilco'}

我正在循环并打印艺术家:

response = en.get('artist/search', artist_location='Chicago')

artists = response['artists']
for artist in artists:
sys.stdout.write("song by {}\n".format(artist['name']))

但我想在这里传递一个 ids 列表:

  response = en.get('song/search', artist_ids = ?) //pass a list here?
for song in response['songs']:
sys.stdout.write("\t{}\n".format(song['title']))

这可能吗?怎么办?

最佳答案

pyen 是一个非常薄的包装器,您应该始终直接查看 EchoNest API 文档。根据API documentation , song/search 端点不接受多个 artist_id

关于Python::传递一个列表作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36757435/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com