Top "Urllib" questions

Python module providing a high-level interface for fetching data across the World Wide Web.

Python download without supplying a filename

How do I download a file with progress report using python but without supplying a filename. I have tried urllib.…

python download urllib2 urllib
python httplib/urllib get filename

is there a possibillity to get the filename e.g. xyz.com/blafoo/showall.html if you work with urllib …

python urllib httplib
Timeout a file download with Python urllib?

Python beginner here. I want to be able to timeout my download of a video file if the process takes …

python urllib2 urllib
Urlretrieve and User-Agent? - Python

I'm using urlretrieve from the urllib module. I cannot seem to find how to add a User-Agent description to my …

python urllib
Urllib.urlopen() works on SSLv3 urls with Python 2.6.6 on 1 machine, but not with 2.6.7/2.7.2 on another

Spent a good part of a day on this, and I'm realllly at my wit's end. I have 1 machine "A" …

python ssl https urllib urlopen
Which should I be using: urlparse or urlsplit?

Which URL parsing function pair should I be using and why? urlparse and urlunparse, or urlsplit and urlunsplit?

python urllib urlparse urlsplit
How to route urllib requests through the TOR network?

How to route urllib requests through the TOR network?

python urllib tor
How to get HTTP return code from python urllib's urlopen?

I have the following code: f = urllib.urlopen(url) html = f.read() I would like to know the HTTP status …

python urllib python-2.5
How to use Proxy PAC file for python urllib or request?

How do I include my automatic proxy config file in HTTP libraries like urllib or requests. pacfile = 'http://myintranet.com/…

python proxy python-requests urllib pac
regarding using urllib3 to replace urllib2

I was trying to use the following code segment. I am using Python 3, which has urllib3 instead of urllib2. I …

python urllib2 urllib urllib3