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

learn more… | top users | synonyms

0
votes
1answer
18 views

Httplib2 : Processing Response String

import httplib2 h = httplib2.Http(".cache") resp, content = h.request("http://example.org/", "GET") When I follow the examples in urllib2 to make a GET request to an API, how do I deserialize the ...
1
vote
1answer
29 views

Is there a way to verify that urllib2 responses are complete? I occasionally receive an Httplib.IncompleteRead error.

I have a function which opens a page via urllib2 to extract some data. It runs fine 80% of the time, but 20% of the time, I'll receive an IncompleteRead exception. TraceBack Traceback (most recent ...
0
votes
1answer
31 views

httplib to connect to IMAP email server?

I'm curious, can the httplib be jury rigged to connect to an IMAP email server? I'm being forced to python connect to an IMAP server without using IMAPlib and while I've learned a lot about sockets ...
0
votes
1answer
63 views

python web-client multipile set-cookie header, get raw set-cookie header

i am using python-requests on python 2.7, i am trying to authenticate against a web-server that returns multiple set-cookie headers in the response. python-requests keeps only one of those cookies. i ...
0
votes
1answer
50 views

Get response encoding using httplib/http.client

How can I get the incoming response's encoding using httplib/http.client? I can see as part of Content-Type using getheaders(), but I would guess it is bad practise to parse that since it might be in ...
0
votes
1answer
27 views

wxpython httplib with proxy shows 400 bad request

Took a look at the other threads but couldn't build anything from it. I have a list of URL's which I'm trying to get the HEAD status of and check before further manipulation. My current code with ...
0
votes
1answer
34 views

httplib python/wxpython. sock stream error

I'm trying to check a few URLs to see if they come back as OK before I further manipulate them, I have a list of URLs in self.myList, which then runs these through the httplib HTTP Connection to get ...
0
votes
0answers
25 views

httplib getanswer

I'm facing a strange problem in a Python XMLRPC connection. Each 1000 tries of a simple function call with or without return values I have a mixture of header and message in the httplib ...
1
vote
0answers
54 views

HTTPConnection.request() & HTTPConnection.putrequest()

I need to use the python httplib. And i code two sample, the first works, not the second. But what i need is the second. In the second sample, the data seems not be sent correctly. I want to know ...
0
votes
0answers
30 views

Native POST (httplib.py) uploading files not working fine

I tried to write simple file uploader using python httplib. Need to use multipart/form-data. Also file for uploading may be lagre, so httplib accept file-like object and i tried to write something. ...
0
votes
0answers
24 views

ERR_596_SERVICE_NOT_FOUND while wrapping WSDL API

I'm trying to access the WSDL API at http://dnbdirect-api.dnb.com/DnBAPI-13/dnbAPI/dnbAPI.wsdl My suds-based Python code is working. However, my low-level httplib-based case is not. Specifically, I ...
0
votes
0answers
39 views

Translate curl to Python httplib

Hadoop offers a REST API using curl. For some reason, I need to use httplib but not pycurl. Can you translate this request to httplib? The test.txt local file should be transmitted by ...
0
votes
0answers
52 views

I want to call HDFS REST api to upload a file

I want to call HDFS REST api to upload a file using httplib. My program created the file, but no content is in it. ===================================================== Here is my code: import ...
0
votes
1answer
66 views

Put this request with Python httplib

I want to put a request to HDFS REST API. It works in the RESTClient. But it failed when i translate it to Python edition( python httplib). And i can't use this in Curl for some reason. Anybody ...
0
votes
0answers
123 views

Google Fusion Tables POST requests return 400 Bad Request using Python

I am trying to create a script Python script that allows me to both Read a Google Fusion Table and to import rows in to it. I have been working with the sample code found at ...
0
votes
1answer
56 views

Python: httplib request() not working

I'm having issues using httplib's request() method. It's a really odd problem. My code looks like this: query = "/search.json?q=&geocode=" + slat + "," + slong + "," + mline[2] + "km&rpp=" ...
0
votes
2answers
122 views

With the Python httplib “HTTPConnection” object, how do you send a header without a value?

I have the following code but httplib still treats the header 'emptyheader' as key:value pair. h = httplib.HTTPConnection("somewhere:5000") headers = {} headers['emptyheader'] = None ...
0
votes
0answers
54 views

Python httplib2 hangs on POST, occasionally

I have a celery process that triggers calls to the Zencoder API. Occasionally this will hang on httplib2.Http.request. For background, although this may not be connected: the celery task will take a ...
0
votes
0answers
81 views

HTTPS POST request Python, returning .csv

I want to make a post request to a HTTPS-site that should respond with a .csv file. I have this Python code: try: #conn = httplib.HTTPSConnection(host="www.site.com", port=443) => Gives an ...
1
vote
0answers
980 views

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 change my machine's phisical loaction location within same network I get error: [Errno ...
0
votes
2answers
78 views

which one is better to test a valid url in python

I want to check whether a particular url exists or not. I came across two methods. url = "http://www.google.com" 1. import urllib2 response = urllib2.urlopen(url) response.code # check what is ...
0
votes
1answer
228 views

Can't get Custom DNS server working in Python

I'm having real trouble getting python to use a custom dns server. I have followed this Tell urllib2 to use custom DNS If I don't specify a self.host and self.port, it will go through without ...
2
votes
1answer
78 views

Python: httplib getresponse issues many recv() calls

getresponse issues many recv calls while reading header of an HTML request. It actually issues recv for each byte which results in many system calls. How can it be optimized? I verified on an Ubuntu ...
0
votes
1answer
56 views

I can't catch BadeStatusLine in an eventlet greenthread

I have a long running process that crashes about every three days because during an HTTP connection, after the connection is made but before any data is received, httplib throws BadStatusLine. I've ...
4
votes
1answer
128 views

Unknown error in sixohsix's Twitter API for Python

I have a small script that repeatedly (hourly) fetches tweets from the API, using sixohsix's Twitter Wrapper for Python. I am successful with handling most, if not all of the errors coming from the ...
0
votes
1answer
55 views

getaddrinfo 11004 and python's httplib

I'm trying to get the rendered markup for http://www.epicurious.com/recipes/food/reviews/Breaded-Chicken-Cutlets-aka-Grandma-Jodys-Chicken-51114400; in theory the very same markup given by the 'View ...
0
votes
0answers
99 views

Python: cannot import name py3kwarning

I am using Python 3.3.0 and I'm trying to use the urllib2 library: import urllib import urllib2 from cookielib import CookieJar #(...rest of program) So I found that urllib imports httplib. I also ...
0
votes
2answers
132 views

How to catch the redirected urls with urllib2 in python

I am using urllib2 module to read a html page and below is my code code.py import urllib2, httplib httplib.HTTPConnection.debuglevel = 1 request = ...
1
vote
1answer
415 views

IncompleteRead using httplib

I have been having a persistent problem getting an rss feed from a particular website. I wound up writing a rather ugly procedure to perform this function, but I am curious why this happens and ...
-2
votes
2answers
134 views

NameError: name 'httplib' is not defined [closed]

I get the following error on Python 2.6.x, how should I fix this? except (httplib.IncompleteRead), e: NameError: name 'httplib' is not defined
2
votes
0answers
103 views

Using heroku with python results in http:500 error

I have a python app which pulls xml data through http. I want to run this app on Heroku. The app runs fine on Heroku if I just return "hello world" without trying to pull the xml. When I run this app ...
0
votes
1answer
858 views

SSL EOF occurred in violation of protocol with python httplib

The current questions regarding this topic didn't solve my problem and neither has Google. relevant server code: class ReuseHTTPServer(BaseHTTPServer.HTTPServer): def __init__(self, address, ...
0
votes
0answers
25 views

Client-Server Program in Python using urllib2

I want a client-side code that makes HTTP requests to the server using urllib2 functions. The server should return the response.
0
votes
1answer
95 views

httplib call to internal server

I have written a simple program to render requested country's svg image of Flag. To make sure that the image exists I want to check first. However, I get following exception: HTTPException: Deadline ...
1
vote
3answers
124 views

Python not getting IP if cable connected after script has started

I hope this doesn't cross into superuser territory. So I have an embedded linux, where system processes are naturally quite stripped. I'm not quite sure which system process monitors to physical ...
0
votes
0answers
41 views

HTTP code 204 using httplib

I'm writing a python program to access an HTTPS web page using the httplib module, and am having trouble retrieving a message body from the URL. Here is my example code: username = "user" password = ...
1
vote
1answer
207 views

python: httplib.CannotSendRequest when nesting threaded SimpleXMLRPCServers

I am intermittently receiving a httplib.CannotSendRequest exception when using a chain of SimpleXMLRPCServers that use the SocketServer.ThreadingMixin. What I mean by 'chain' is the following: I ...
0
votes
3answers
131 views

When I use python requests to check a site, if the site redirects me to another page, will I know?

What I mean is, if I go to "www.yahoo.com/thispage", and yahoo has set up a filter to redirect /thispage to /thatpage. So whenever someone goes to /thispage, s/he will land on /thatpage. If I use ...
1
vote
1answer
157 views

How to connect to REST web service with PUT HTTP method in python using proxy?

I have 'corporate internal tool' where python 2.5.2 is embedded. This mean that I cant use any other version or programming language. So, code is following for HTTPLIB: connection = ...
0
votes
1answer
220 views

Unable to connect to secure website using mechanize in Python

I'm trying to open a secure (https) website using mechanize library in Python. When I try to access the website, the server closes the connection and exception BadStatusLine is raised. I have tried ...
1
vote
2answers
253 views

send both string and buffer using httplib with python to the server

How can I POST parameters with a file object to a URL using httplib in python web services. Am using the following scripts: import httplib import urllib params = urllib.urlencode({"@str1":"string1", ...
0
votes
2answers
70 views

Why can't I view updates to a label while making an HTTP request in Python

I have this code : def on_btn_login_clicked(self, widget): email = self.log_email.get_text() passw = self.log_pass.get_text() self.lbl_status.set_text("Connecting ...") params = ...
0
votes
0answers
86 views

How python httplib receive the non-HTTP traffic package?

I use python to write a client.It will get some datas from a webserver. When i use httplib to connect and download some datas, i found some datas losts. So, I use wireshark to capture browser with ...
1
vote
0answers
304 views

Python web scraper suddenly returns httplib.IncompleteRead error

I have been writing a scraper to get some data for academic purposes from this site. Since there is no general list of different elections (I am interested in US gubernatorial elections), I am using ...
0
votes
1answer
131 views

Simple Python HTTP Post not accepting parameters…is something serverside stopping me?

I'm having some trouble trying to write a basic webscraper for a Minecraft server site. I'm pretty new to python (but fluent in C/java/.net) and can't seem to get the damn thing to work. I'm trying ...
1
vote
1answer
218 views

POST XML data to server via proxy in Python

I need to send a request that contains the data in the following format: parameterss = urlencode({'various': 'credentials', ... , 'xmlquery': '<?xml version="1.0" encoding="UTF-8"?> \ ...
1
vote
2answers
337 views

Does python httplib allow persistent connection?

As I read the sample code, I first need to open and connection conn = httplib.HTTPSConnection(server) and then I can send multiple requests without making a new connection: conn.request(...) ...
0
votes
1answer
903 views

httplib and HTTPs proxies

Is there a way to tunnel HTTPs requests made with python's httplib through Fiddler's proxy, without turning Fiddler into a reverse proxy? I tried using this example (from here): import httplib c = ...
5
votes
1answer
161 views

python urllib2 timing

I'd like to collect statistics related to how long each phase of a web request takes. httplib offers: def run(self): conn = httplib.HTTPConnection('www.example.com') start = time.time() ...
0
votes
0answers
257 views

Issues with urlfetch/httplib in python using google app engine

I've tried many things, but I can't seem to figure out what is wrong. I'm pretty new to google app engine, so I may be missing something basic. For some reason httplib.connection and urlfetch wont ...

1 2 3