Artists join value #73
-
Hi! One thing that I can't find is the join values of artist lists for realeases with multiple artists (like https://www.discogs.com/release/452087-Rowland-S-Howard-Lydia-Lunch-Shotgun-Wedding ("-" in this case)) so that I can display how the artists are shown on the record. Is there a way to get that information through this library? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There seems to be "join" field in the returned JSON from the release API point # Rowland S. Howard - Lydia Lunch – Shotgun Wedding
release_id = 452087
print(client.release(release_id).artists[0].fetch('join'))
# Prints - I'm curious, why does it matter what character you join the artists with? Can't you just join always with "-" 😅 Anyways, hope that helps Cheers! |
Beta Was this translation helpful? Give feedback.
Hi, @GustavAndreasson
There seems to be "join" field in the returned JSON from the release API point
You can get it by first getting artists from the
Release
object and thenfetch
ing the "join" field like soI'm curious, why does it matter what character you join the artists with? Can't you just join always with "-" 😅
Anyways, hope that helps
Cheers!
Anssi