Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.67 KB

README.md

File metadata and controls

33 lines (25 loc) · 1.67 KB

soundcloud

Simple shell and python scripts to scrape soundloud links of the favorites from the users you follow, to be used for whatever program you want (such as j-downloader)

sc.sh usage: bash sc.sh name_of_user
example: bash sc.sh user
Will create test.txt on user folder with every sound link the user has publically available, by most recent sound.

sc2.sh usage: bash sc2.sh name_of_user offset_number
example: bash sc2.sh user 1 Will create test.txt on user folder with every sound link in the user's favorite by most recent favorite, 200 entries. Offset is used to go further than the 200 limit, putting 201 will make it go to 400 entries.

sound2xlsx.py
requires: soundcloud python wrapper
Checks the favorites count of your followers for comparison every few weeks, and also outputs the latest tracks from the stream.

soundcrawl.py
Requires: soundcloud python wrapper
Crawls and outputs the url of your follower's favorites in a text file. (which can then be pasted into jdownloader and mass downloaded)

soundcloud.sh
example: bash soundcloud.sh
Bash script to start soundcrawl.py and if you have a previous output from soundcrawl.py, capture the unique difference of the two and output it, and archive the old output.

expsound.py
Requires: soundcloud python wrapper
Outputs sound url of follower's favorites newer than a specified favorited date. Uses soundcloud's experimental API. PoC

TO DO:
filter by favorited day (probably not possible ;_;) doable with experimental api
automate it a bit more? I will never have it auto download mp3s, but now it outputs soundcloud url more effectively (less inputs needed by user)
wakaranai