Top "Urllib" questions

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

Submitting to a web form using python

I have seen questions like this asked many many times but none are helpful Im trying to submit data to …

python post request urllib2 urllib
SSL: CERTIFICATE_VERIFY_FAILED with Python3

I apologize if this is a silly question, but I have been trying to teach myself how to use BeautifulSoup …

python python-3.x macos urllib
How to handle response encoding from urllib.request.urlopen()

I'm trying to search a webpage using regular expressions, but I'm getting the following error: TypeError: can't use a string …

python regex encoding urllib
urllib.request module fails to install in my system

Tried installing urllib.request module using below command sudo pip install urllib.request but it returned Downloading/unpacking urllib.request …

python ubuntu pip urllib sudo
Using Python to sign into website, fill in a form, then sign out

As part of my quest to become better at Python I am now attempting to sign in to a website …

python html forms web urllib
opening a url with urllib in python 3

i'm trying to open the URL of this API from the sunlight foundation and return the data from the page …

python python-3.x url urllib
How to convert a dictionary to query string in Python?

After using cgi.parse_qs(), how to convert the result (dictionary) back to query string? Looking for something similar to …

python urllib2 urllib
Python urllib urlopen not working

I am just trying to fetch data from a live web by using the urllib module, so I wrote a …

python urllib
How to unquote a urlencoded unicode string in python?

I have a unicode string like "Tanım" which is encoded as "Tan%u0131m" somehow. How can i convert …

python unicode character-encoding urllib w3c
Python3 error: initial_value must be str or None, with StringIO

While porting code from python2 to 3, I get this error when reading from a URL TypeError: initial_value must be …

python python-3.x urllib urllib2 stringio