Skip to content

Instantly share code, notes, and snippets.

@mattslabs
Created March 20, 2016 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattslabs/9f7f222ad4b55de07e45 to your computer and use it in GitHub Desktop.
Save mattslabs/9f7f222ad4b55de07e45 to your computer and use it in GitHub Desktop.
Words downloader
import urllib2
import linecache
words = []
path = "Scieżka do pliku txt ze słówkami format słówka enter..."
count = len(open(path, 'rU').readlines())
for i in range(1,count+1):
wiersz = linecache.getline(path, i).strip('\n').replace(' ', "-")
words.append(wiersz)
for word in words:
url = "http://diki.pl/images-common/en/mp3/" + word +".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