Last active
November 26, 2017 13:14
-
-
Save mattslabs/8cc9398868f46cc1eec8 to your computer and use it in GitHub Desktop.
Words mp3 downloader
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
import urllib2 | |
import linecache | |
words = [] | |
path = "Wklej tu scieżkę do swojego pliku ze słówkami!" | |
count = len(open(path, 'rU').readlines()) | |
for i in range(1,count+1): | |
wiersz = linecache.getline(path, i) | |
wiersz1 = wiersz.strip() | |
words.append(wiersz1) | |
for i in words: | |
url = "http://diki.pl/images-common/en/mp3/" + i +".mp3" | |
file_name = url.split('/')[-1] | |
u = urllib2.urlopen(url) | |
f = open(file_name, 'wb') | |
meta = u.info() | |
file_size = int(meta.getheaders("Content-Length")[0]) | |
print "Downloading: %s Bytes: %s" % (file_name, file_size) | |
file_size_dl = 0 | |
block_sz = 8192 | |
while True: | |
buffer = u.read(block_sz) | |
if not buffer: | |
break | |
file_size_dl += len(buffer) | |
f.write(buffer) | |
status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size) | |
status = status + chr(8)*(len(status)+1) | |
print status, | |
f.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment