Created
April 19, 2018 15:06
-
-
Save DastanIqbal/802a238735bd2b42bc9b93c9ff5651d0 to your computer and use it in GitHub Desktop.
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
import urllib | |
for x in range(1,84): | |
y=(x+36000) | |
filename="0%d.mp3" % (y) | |
z="https://www.website.com/path/%s" % (filename) | |
print z | |
urllib.urlretrieve(z,filename) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment