3jackdaws / soundcloud-lib

Soundcloud API wrapper for tracks & playlists that doesn't require API credentials. Asyncio support.
MIT License
85 stars 23 forks source link

Pulling Likes #25

Open npfister13 opened 3 years ago

npfister13 commented 3 years ago

Would it be possible to implement the ability to scrape info from a user's Likes? I don't want to download thousands of songs, just scrape the information for the artists that show in the likes, the types of music, etc.

3jackdaws commented 3 years ago

I'll look into this.

DJoepie commented 3 years ago

I'm currently looking to make likes downloadable so I have a little bit of experience with retrieving the likes.

First you want to resolve the profile you want the likes from to get their user_id. This is needed because to actually retrieve their likes you have to use their user_id. (this took me a few hours to find out)

After that it's as simple as hitting this enpoint (you might want to change the limit query parameter): https://api-v2.soundcloud.com/users/<user_id>/likes?limit=50&client_id=<client_id>

realies commented 1 month ago

@3jackdaws, can this be implemented?