33

How would I download files (video) with Python using wget and save them locally? There will be a bunch of files, so how do I know that one file is downloaded so as to automatically start downloding another one?

Thanks.

1

6 Answers 6

25

Short answer (simplified). To get one file

 import urllib.request
 urllib.request.urlretrieve("http://google.com/index.html", filename="local/index.html")

You can figure out how to loop that if necessary.

Sign up to request clarification or add additional context in comments.

3 Comments

By now, it seems to be urllib.request.urlretrieve("...") if anybody still needs this :)
@ChrisStenkamp Looks like there was a full cycle of (python 2's urllib) -> (python 2's urllib2) -> (python 3's urllib). which means the answer at the moment is for python 2 and your note is to have it work on python 3.
Could it show progress as well?
22

Don't do this. Use either urllib2 or urlgrabber instead.

5 Comments

This answer needs to be expanded. Why shouldn't wget be used?
Because it starts a whole new process just to do things that Python itself is capable of.
Because it undermines portability.
Is it nontrivial to write wget -rl1 -I /stuff/i/want/ http://url/<incrementing number> with either of these libs?
wget works through a VPN client, whereas urllib gives me this error for a https: urlopen error Tunnel connection failed: 407 Proxy Authentication Required
17

If you use os.system() to spawn a process for the wget, it will block until wget finishes the download (or quits with an error). So, just call os.system('wget blah') in a loop until you've downloaded all of your files.

Alternatively, you can use urllib2 or httplib. You'll have to write a non-trivial amount code, but you'll get better performance, since you can reuse a single HTTP connection to download many files, as opposed to opening a new connection for each file.

1 Comment

Isn't it os.system() is not recommended to be used and as alternative we should use subprocess?
9

No reason to use os.system. Avoid writing a shell script in Python and go with something like urllib.urlretrieve or an equivalent.

Edit... to answer the second part of your question, you can set up a thread pool using the standard library Queue class. Since you're doing a lot of downloading, the GIL shouldn't be a problem. Generate a list of the URLs you wish to download and feed them to your work queue. It will handle pushing requests to worker threads.

I'm waiting for a database update to complete, so I put this together real quick.


#!/usr/bin/python

import sys
import threading
import urllib
from Queue import Queue
import logging

class Downloader(threading.Thread):
    def __init__(self, queue):
        super(Downloader, self).__init__()
        self.queue = queue

    def run(self):
        while True:
            download_url, save_as = queue.get()
            # sentinal
            if not download_url:
                return
            try:
                urllib.urlretrieve(download_url, filename=save_as)
            except Exception, e:
                logging.warn("error downloading %s: %s" % (download_url, e))

if __name__ == '__main__':
    queue = Queue()
    threads = []
    for i in xrange(5):
        threads.append(Downloader(queue))
        threads[-1].start()

    for line in sys.stdin:
        url = line.strip()
        filename = url.split('/')[-1]
        print "Download %s as %s" % (url, filename)
        queue.put((url, filename))

    # if we get here, stdin has gotten the ^D
    print "Finishing current downloads"
    for i in xrange(5):
        queue.put((None, None))

1 Comment

there is a mistake in download_url, save_as = queue.get(). should be download_url, save_as = self.queue.get().
1

Install wget via pypi http://pypi.python.org/pypi/wget/0.3

pip install wget

then run, just as documented

python -m wget <url>

1 Comment

For anyone else who found this confusing, the linked library doesn't use wget. It uses urllib. And it currently doesn't support anything close to what wget ( gnu.org/software/wget ) does.
-8

No reason to use python. Avoid writing a shell script in Python and go with something like bash or an equivalent.

2 Comments

Writing a shell script in Python is OK. If you want to get something done quickly but you hate the syntax of bash, just do it in Python. If you make a larger project, then yes, try to avoid these external calls.
Python is a fine scripting language.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.