-
Currently gives only information of album. In web I can see more detailed information of artist and also in app like who she or he is. I need some help the way getting more detailed information of artist through https://app.genie.co.kr/???/j_ArtistInfo.json I guess. And more detailed information of album If possible, Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
When you say more detailed information of album what kind of information are you looking for? |
Beta Was this translation helpful? Give feedback.
-
cc89184 I have implemented the endpoint that I think you're after and have renamed the existing Here's a quick snippet you can use to test this: from rsack.clients import genie
client = genie.Client()
client.auth("username", "password")
meta = client.get_artist(80288928)
print(meta) |
Beta Was this translation helpful? Give feedback.
cc89184 I have implemented the endpoint that I think you're after and have renamed the existing
get_artist()
function toget_artist_albums()
Here's a quick snippet you can use to test this:
(Note: This has not yet been pushed to PyPi)