Last active
May 23, 2017 04:42
-
-
Save lupettohf/9841048 to your computer and use it in GitHub Desktop.
Download songs from SoundCloud
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding:utf-8 -*- | |
# _ _ _ | |
# | | | | | | | |
# ___ ___ _ _ _ __ __| | ___ | | ___ _ _ __| | | |
# / __| / _ \ | | | || '_ \ / _` | / __|| | / _ \ | | | | / _` | | |
# \__ \| (_) || |_| || | | || (_| || (__ | || (_) || |_| || (_| | | |
# |___/ \___/ \__,_||_| |_| \__,_| \___||_| \___/ \__,_| \__,_| | |
#Creative Commons Attribution-ShareAlike 4.0 International License. | |
import re | |
import urllib2 | |
__author__ = 'lupettohf' | |
__version__ = '1.0' | |
#re | |
audior = '(?<="streamUrl":").+\?s' | |
# Download page source | |
url = raw_input("Soundcloud link:") | |
down = urllib2.urlopen(url) | |
data= down.read() | |
# Parse link | |
audiofile = re.compile(audior).search (data) | |
# Save as | |
name = raw_input("Save as:") | |
# Download and save | |
print("Downloading %s.mp3" %name) | |
with open(name + ".mp3",'wb') as x: | |
x.write(urllib2.urlopen(audiofile.group(0)).read()) | |
x.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment