Top "Httplib" questions

A module from Python standard lib that defines classes which implement the client side of the HTTP and HTTPS protocols.

Python urllib vs httplib?

When would someone use httplib and when urllib? What are the differences? I think I ready urllib uses httplib, I …

python http urllib httplib
Proxying to another web service with Flask

I want to proxy requests made to my Flask app to another web service running locally on the machine. I'd …

python proxy nginx flask httplib
Tunneling httplib Through a Proxy

I am trying to figure out how to send data to a server through a proxy. I was hoping this …

python sockets proxy tunnel httplib
IncompleteRead using httplib

I have been having a persistent problem getting an rss feed from a particular website. I wound up writing a …

python feedparser httplib
Errno 104 Connection reset by peer` error

I have following code snippet. Previously it was working fine and was printing output But after now when i did …

python openssl httplib
How do I have python httplib accept untrusted certs?

How do I have python httplib accept untrusted certs? I created a snake oil/self signed cert on my webserver, …

python httplib
How do I make a PATCH request in Python?

Is there a way to make a request using the PATCH HTTP method in Python? I tried using httplib, but …

python http patch httplib
How to handle timeouts with httplib (python 2.6)?

I'm using httplib to access an api over https and need to build in exception handling in the event that …

python httplib
Python script to see if a web page exists without downloading the whole page?

I'm trying to write a script to test for the existence of a web page, would be nice if it …

python httplib urlparse
How to fix httplib.BadStatusLine exception?

URL = "MY HTTP REQUEST URL" XML = "<port>0</port>" parameter = urllib.urlencode({'XML': XML}) response = urllib.urlopen(…

python httplib