Skip to content

Instantly share code, notes, and snippets.

@jefftriplett
Created August 25, 2009 18:52
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 jefftriplett/174922 to your computer and use it in GitHub Desktop.
Save jefftriplett/174922 to your computer and use it in GitHub Desktop.
"""
To quote from Venture Bros... IGNORE ME!
"""
import os
#URL = 'http://podcast.thisamericanlife.org/podcast/'
URL = 'http://audio.thisamericanlife.org/jomamashouse/ismymamashouse/'
def main():
for i in range(1, 400):
filename = '%d.mp3' % (i)
if not os.path.exists(filename):
cmd = 'wget %s%s' % (URL, filename)
os.system(cmd)
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment