Top "Urllib" questions

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

Download Returned Zip file from URL

If I have a URL that, when submitted in a web browser, pops up a dialog box to save a …

python url download zip urllib
Python URLLib / URLLib2 POST

I'm trying to create a super-simplistic Virtual In / Out Board using wx/Python. I've got the following code in place …

python post urllib2 urllib
catch specific HTTP error in python

I want to catch a specific http error and not any one of the entire family.. what I was trying …

python http urllib2 urllib
installing urllib in Python3.6

I would like to import urllib to use the function 'request'. However, I encountered an error when trying to do …

python python-3.x urllib
Python: Get HTTP headers from urllib2.urlopen call?

Does urllib2 fetch the whole page when a urlopen call is made? I'd like to just read the HTTP response …

python urllib forwarding
Python: Importing urllib.quote

I would like to use urllib.quote(). But python (python3) is not finding the module. Suppose, I have this line …

python python-3.x import urllib
Python: URLError: <urlopen error [Errno 10060]

OS: Windows 7; Python 2.7.3 using the Python GUI Shell I'm trying to read a website through Python, and several authors use …

python python-2.7 urllib2 urllib
AttributeError: 'module' object has no attribute 'urlretrieve'

I am trying to write a program that will download mp3's off of a website then join them together …

python-3.x urllib attributeerror
Python; urllib error: AttributeError: 'bytes' object has no attribute 'read'

Note: This is Python 3, there is no urllib2. Also, I've tried using json.loads(), and I get this error: TypeError: …

python python-3.x urllib
Python 2.7.10 error "from urllib.request import urlopen" no module named request

I opened python code from github. I assumed it was python2.x and got the above error when I tried …

python urllib