Created
August 2, 2014 16:30
-
-
Save lupettohf/7f97be92a43693c7191e to your computer and use it in GitHub Desktop.
Simple downloader for bandcamp
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 -*- | |
# ___. .___ | |
# \_ |__ _____ ____ __| _/____ _____ _____ ______ | |
# | __ \\__ \ / \ / __ |/ ___\\__ \ / \\____ \ | |
# | \_\ \/ __ \| | \/ /_/ \ \___ / __ \| Y Y \ |_> > | |
# |___ (____ /___| /\____ |\___ >____ /__|_| / __/ | |
# \/ \/ \/ \/ \/ \/ \/|__| Downloader! | |
#Creative Commons Attribution-ShareAlike 4.0 International License. | |
import re | |
import urllib2 | |
__author__ = 'lupettohf' | |
__version__ = '1.0' | |
#re | |
audior = '"mp3-128":"(.*?)"}' | |
# Download page source | |
url = raw_input("Bandcamp 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