Created
August 19, 2012 15:40
-
-
Save youminkim/3395504 to your computer and use it in GitHub Desktop.
Tumblr music downloader
This file contains hidden or 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
name = [ | |
"youminkim", | |
"kyk051301", | |
"motives-motifs", | |
"slowblower", | |
"dogdong", | |
"ch11", | |
"tigger103music", | |
"nabillera", | |
"filmierd", | |
"saramdle", | |
"sandcat", | |
"vandalee", | |
"hanguknamja", | |
"leodic", | |
"nuthin", | |
"eeooi", | |
"flightboxrecorder", | |
"eunkim", | |
"nodamin", | |
"inanebox", | |
"rabbits89", | |
"reflexioneternal", | |
"liebebae", | |
"wenjun", | |
"musily", | |
"akazukin", | |
"leaveawill", | |
"berlin457", | |
"nammytopia", | |
"yong-j", | |
"byhosu", | |
"flyingstargirl", | |
"andreasung", | |
"ninaful", | |
"digitypo", | |
"djsoolee", | |
"yeonsukim", | |
"hotjun", | |
"brightsizelifekr", | |
"youminkim", | |
"privacyofthewind", | |
"generaldoctor", | |
"yoohyejin", | |
"koshnim ", | |
"hakang", | |
"hyunhak", | |
"naruter", | |
"jaehyun", | |
] | |
api_key = 'rbu3tDrR4MoZNQ3aAJgz0Vibw1WglEEQs8dNI0x1d6qmIPLIgh' | |
trick = '?plead=please-dont-download-this-or-our-lawyers-wont-let-us-host-audio&trick=.mp3' | |
import json, urllib2 | |
from threading import Timer | |
i = 0 | |
for n in name: | |
try: | |
url = "http://api.tumblr.com/v2/blog/"+n+".tumblr.com/posts?type=audio&api_key="+api_key; | |
response = urllib2.urlopen(url) | |
r = json.load(response) | |
for p in r['response']['posts']: | |
link = p['audio_url']+trick | |
#download | |
f = urllib2.urlopen(link) | |
local = open('music/'+i.__str__()+'.mp3', 'w') | |
local.write(f.read()) | |
f.close() | |
local.close() | |
i = i + 1 | |
print i | |
except: | |
print "error" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
make directory 'music' before playing