Top "Urllib3" questions

`urllib3` is a 3rd-party Python HTTP library with thread-safe connection pooling, file post, and more.

Patch pyopenssl for sslv3 issue

I got a problem on a Debian 8 system with python 2.7.9-2 amd64: marius@pydev:/usr/lib/python2.7/dist-packages/urllib3/contrib$ …

python-2.7 debian pip pyopenssl urllib3
How can I make a Post Request on Python with urllib3?

I've been trying to make a request to an API, I have to pass the following body: { "description":"Tenaris", "ticker":"…

python json curl urllib3
Why do I constantly see "Resetting dropped connection" when uploading data to my database?

I'm uploading hundreds of millions of items to my database via a REST API from a cloud server on Heroku …

python http connection-pooling python-requests urllib3
authentication with urllib3

I am trying to connect to a webpage using urllib3. The code is provided below. import urllib3 http=urllib3.PoolManager() …

python authentication urllib3
Obnoxious CryptographyDeprecationWarning because of missing hmac.compare_time function everywhere

Things were running along fine until one of my projects started printing this everywhere, at the top of every execution, …

python python-requests urllib urllib3
How to retry urllib2.request when fails?

When urllib2.request reaches timeout, a urllib2.URLError exception is raised. What is the pythonic way to retry establishing a …

python decorator urllib2 urllib3
Ignore certificate validation with urllib3

I'm using urllib3 against private services that have self signed certificates. Is there any way to have urllib3 ignore the …

python python-3.x urllib3
Which urllib I should choose?

as we know, python has two built-in url lib: urllib urllib2 and a third-party lib: urllib3 if my requirement is …

python urllib2 urllib urllib3
Python requests ImportError: cannot import name HeaderParsingError

OS: Mac OS X. When I'm trying to run the code below, I get the error: ImportError: cannot import name …

python python-2.7 python-requests urllib3