Top "Urllib" questions

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

Python: Urllib.urlopen nonnumeric port

for the following code theurl = "https://%s:%[email protected]/nic/update?hostname=%s&myip=%s&wildcard=…

python urllib urlopen
Python socket ConnectionResetError: [Errno 54] Connection reset by peer vs socket.error: [Errno 104] Connection reset by peer

I'm having trouble debugging my code because I cannot understand the socket error being raised. Here is the traceback. Traceback (…

python sockets urllib errno
Python HTTP Error 429 with urllib2

I am using the following code to resolve redirects to return a links final url def resolve_redirects(url): return …

python urllib http-status-code-429
Using python and urllib to get data from Yahoo FInance

I was using urllib in python to get stock prices from yahoo finance. Here is my code so far: import …

python urllib stock
How do I unit test a module that relies on urllib2?

I've got a piece of code that I can't figure out how to unit test! The module pulls content from …

python unit-testing urllib2 urllib
Download file with urlretrieve() to subfolder

Is it possible to use urlretrieve() in order to download something into a subfolder without expressing it in an absolute …

python python-3.x web-scraping urllib urlretrieve