Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a small utility that I use to download an MP3 from a website on a schedule and then builds/updates a podcast XML file which I've obviously added to iTunes.

The text processing that creates/updates the XML file is written in Python. I use wget inside a Windows .bat file to download the actual MP3 however. I would prefer to have the entire utility written in Python though. (It was the project I used to begin learning Python.)

I struggled though to find a way to actually down load the file in Python, thus why I resorted to wget.

So, how do I download the file using Python?

share|improve this question

6 Answers

up vote 74 down vote accepted

Use urllib2 which comes with the standard library.

import urllib2
response = urllib2.urlopen('http://www.example.com/')
html = response.read()

This is the most basic way to use the library, minus any error handling. You can also do more complex stuff such as changing headers. The documentation can be found here.

share|improve this answer
6  
This won't work if there are spaces in the url you provide. In that case, you'll need to parse the url and urlencode the path. – Jason Sundram Apr 14 '10 at 21:17
10  
This has changed in python 3. It should be noted that this solution is for 2.* version of Python. – JonoRR Nov 15 '10 at 3:38

One more, using urlretrieve

import urllib
urllib.urlretrieve ("http://www.example.com/songs/mp3.mp3", "mp3.mp3")

Yet another one, with a "progressbar"

import urllib2

url = "http://download.thinkbroadband.com/10MB.zip"

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()
share|improve this answer
20  
+1 The status bar was overkill, but fun for sure. – Mike M. Lin Mar 8 '11 at 1:04
8  
@Mike: I just feel guilty about earning 31 votes for a really simple answer :) – PabloG Mar 9 '11 at 12:59
2  
Bug: file_size_dl += block_sz should be += len(buffer) since the last read is often not a full block_sz. Also on windows you need to open the output file as "wb" if it isn't a text file. – Eggplant Jeff May 25 '11 at 17:53
1  
Me too urllib and urllib2 didn't work but urlretrieve worked well, was getting frustrated - thanks :) – funk-shun Jul 12 '11 at 6:08
1  
Wrap the whole thing (except the definition of file_name) with if not os.path.isfile(file_name): to avoid overwriting podcasts! useful when running it as a cronjob with the urls found in a .html file – Sriram Murali May 1 '12 at 20:15
show 4 more comments
import urllib2
mp3file = urllib2.urlopen("http://www.example.com/songs/mp3.mp3")
output = open('test.mp3','wb')
output.write(mp3file.read())
output.close()

the 'wb' in open('test.mp3','wb') opens a (and erases any existing) file, binaraly, so you can save data with it, instead of just text.

share|improve this answer
2  
The disadvantage of this solution is, that the entire file is loaded into ram before saved to disk, just something to keep in mind if using this for large files on a small system like a router with limited ram. – tripplet Nov 18 '12 at 13:33

In 2012, use the python requests library

>>> import requests
>>> 
>>> url = "http://download.thinkbroadband.com/10MB.zip"
>>> r = requests.get(url)
>>> print len(r.content)
10485760

You can run pip install requests to get it.

Requests has many advantages over the alternatives because the API is much simpler. This is especially true if you have to do authentication. urllib and urllib2 are pretty unintuitive and painful in this case.

share|improve this answer
how do I save or extract if the zip file is actually a folder with many files in it? – Abdul Muneer Jul 5 '12 at 21:13
3  
Regrettably, requests has no API for unzipping files. – hughdbrown Jul 13 '12 at 15:46
Does it work in Jython? – Prof. Falken Aug 9 '12 at 13:04
1  
@Amigable: I can't honestly say. I don't use Jython. If it's important to you, maybe you could try it out and post a comment on your findings? – hughdbrown Aug 30 '12 at 21:43
1  
support for zip files/jython/large files: (1) read the source or (2) try it out. This is a stackoverflow answer, not the library documentation. I recommend that developers live by "Suck it and see." idioms.thefreedictionary.com/suck+it+and+see – hughdbrown Dec 17 '12 at 16:51
show 1 more comment

I agree with Corey, urllib2 is more complete than urllib and should likely be the module used if you want to do more complex things, but to make the answers more complete, urllib is a simpler module if you want just the basics:

import urllib
response = urllib.urlopen('http://www.example.com/sound.mp3')
mp3 = response.read()

Will work fine. Or, if you don't want to deal with the "response" object you can call read() directly:

import urllib
mp3 = urllib.urlopen('http://www.example.com/sound.mp3').read()
share|improve this answer

An improved version of the PabloG code for Python 2/3:

from __future__ import ( division, absolute_import, print_function, unicode_literals )

import sys, os, tempfile, logging

if sys.version_info >= (3,):
    import urllib.request as urllib2
    import urllib.parse as urlparse
else:
    import urllib2
    import urlparse

def download_file(url, desc=None):
    u = urllib2.urlopen(url)

    scheme, netloc, path, query, fragment = urlparse.urlsplit(url)
    filename = os.path.basename(path)
    if not filename:
        filename = 'downloaded.file'
    if desc:
        filename = os.path.join(desc, filename)

    with open(filename, 'wb') as f:
        meta = u.info()
        meta_func = meta.getheaders if hasattr(meta, 'getheaders') else meta.get_all
        meta_length = meta_func("Content-Length")
        file_size = None
        if meta_length:
            file_size = int(meta_length[0])
        print("Downloading: {0} Bytes: {1}".format(url, 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 = "{0:16}".format(file_size_dl)
            if file_size:
                status += "   [{0:6.2f}%]".format(file_size_dl * 100 / file_size)
            status += chr(13)
            print(status, end="")
        print()

    return filename

url = "http://download.thinkbroadband.com/10MB.zip"
filename = download_file(url)
print(filename)
share|improve this answer
I would remove the parentheses from the first line, because it is not too old feature. – Arpad Horvath May 30 at 19:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.