简体   繁体   中英

How can I get the file size on the Internet knowing only the URL

I want to get the size of an http://.. file before I download it. I don't know how to use http request.

Thanks!

import urllib2
f = urllib2.urlopen("http://your-url")
size= f.headers["Content-Length"]
print size

The HTTP HEAD method was invented for scenarios like this (wanting to know data about a response without fetching the response itself). Provided the server returns a Content-Length header (and supports HEAD ), then you can find out the size of the file (in octets) by looking at the Content-Length returned.

Here the complete answer:

import urllib2
f = urllib2.urlopen ("http://your-url")
if "Content-Length" in f.headers:
    size = int (f.headers["Content-Length"])
else:
    size = len (f.read ());
print size

Not all pages have a content-length header. In that case, the only option is to read the whole page:

len(urllib2.urlopen('http://www.google.com').read());

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM