Hey everyone.
im trying to use the musicbrainz api to give me a list of artist mbid’s so i can further get metadata on them
however, when i run my code:
def get_tags(artist):
mine = mb.search_artists(artist)[‘artist-list’][0]
return mine
file[“test”] = file.apply(lambda x: get_tags([‘artist’]), axis=1)
it gives me the same mbid for each entry in my list, which corresponds to a standard entry
anyone know how to solve this problem.