Tagged Questions
13
votes
6answers
2k views
Python urllib vs httplib?
When would someone use httplib and when urllib?
What are the differences?
I think I ready urllib uses httplib, I am planning to make an app that will need to make http request and so far I only used ...
12
votes
6answers
4k views
Which is the best python library to make REST request like PUT, GET, DELETE, POST and how?
I am bit confuse over set of libraries of pythons to connect with REST enabled web services.
I have tried httplib, urllib and urllib2. I want to know how can methods like PUT, GET, POST, DELETE can be ...
5
votes
2answers
2k views
Python httplib ResponseNotReady
I'm writing a REST client for elgg using python, and even when the request succeeds, I get this in response:
Traceback (most recent call last):
File "testclient.py", line 94, in <module>
...
4
votes
6answers
7k views
HTTPS connection Python
I am trying to verify the that target exposes a https web service. I have code to connect via HTTP but I am not sure how to connect via HTTPS. I have read you use SSL but I have also read that it did ...
4
votes
1answer
2k views
httplib CannotSendRequest error in WSGI
I've used two different python oauth libraries with Django to authenticate with twitter. The setup is on apache with WSGI. When I restart the server everything works great for about 10 minutes and ...
3
votes
2answers
152 views
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 would check without downloading the whole page.
This is my jumping off point, I've seen multiple examples use ...
3
votes
1answer
642 views
Are urllib2 and httplib thread safe?
I'm looking for information on thread safety of urllib2 and httplib.
Official documentation (http://docs.python.org/library/urllib2.html and http://docs.python.org/library/httplib.html) lacks any ...
3
votes
1answer
553 views
Adding server certificate validation to httplib.HTTPSConnection
I've found that httplib.HTTPSConnection doesn't perform an automatic server certificate check. As far as I've understood the problem, I need to add that functionality manually, e.g. by subclassing ...
3
votes
2answers
1k views
Error using httlib's HTTPSConnection with PKCS#12 certificate
I'm trying to use httplib's HTTPSConnection for client validation, using a PKCS #12 certificate. I know the certificate is good, as I can connect to the server using it in MSIE and Firefox.
Here's ...
3
votes
1answer
2k views
How do I use Python's httplib to send a POST to a URL, with a dictionary of parameters?
I just want a function that can take 2 parameters:
the URL to POST to
a dictionary of parameters
How can this be done with httplib? thanks.
3
votes
2answers
279 views
Log onto a Website and select options using Python
I am trying to log onto a website using Python. I have written the code to connect to the target but I need to login and select a button on the website and wait for a response. I have looked at the ...
2
votes
1answer
34 views
python page response benchmarking (headers)
How can I get so-to-say page's response time: time between request is sent and the first header's byte comes?
PS: Here I don't want to deal with sockets - it would work, but it is too raw.
PPS: with ...
2
votes
1answer
668 views
Exchange Web Services (EWS) - Exchange 2010 soap calls via suds
Im trying to send an email via Exchange Web Services using suds 0.4.1:
import suds
from suds.client import Client
from suds.transport.https import WindowsHttpAuthenticated
url = ...
2
votes
2answers
250 views
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 rather use Flask for this than our higher-level nginx instance so that we can reuse our ...
2
votes
1answer
254 views
multiple requests in a single connection?
Is it possible to put multiple requests without breaking the connection using python httplib?.
Like, can I upload a big file to the server in parts but in a single socket connection.
I looked for ...
2
votes
5answers
4k views
error: can't start new thread
I have a site that runs with follow configuration:
Django + mod-wsgi + apache
In one of user's request, I send another HTTP request to another service, and solve this by httplib library of python.
...
2
votes
1answer
786 views
How to handle multiple Set-Cookie header in HTTP response
I'm trying to write simple proxy server for some purpose. In it I use httplib to access remote web-server. But there's one problem: web server returns TWO Set-Cookie headers in one response, and ...
1
vote
1answer
122 views
Permanent 'Temporary failure in name resolution' after running for a number of hours
After running for a number of hours on Linux, my Python 2.6 program that uses urllib2, httplib and threads, starts raising this error for every request:
<class 'urllib2.URLError'> ...
1
vote
0answers
70 views
Persistent HTTP connections with httplib
I'm trying to write an application where I send an initial HTTP post message to server and leave the connection open. The application then sits around until the server sends data back. Once the ...
1
vote
1answer
126 views
How do I post non-ASCII characters using httplib when content-type is “application/xml”
I've implemented a Pivotal Tracker API module in Python 2.7. The Pivotal Tracker API expects POST data to be an XML document and "application/xml" to be the content type.
My code uses urlib/httplib ...
1
vote
1answer
131 views
Sending mutlitple requests of httplib, raising traceback exceptions
Here is the code:
conn = httplib.HTTPConnection("127.0.0.1:8000")
conn.request("POST", "/api/job/", some_params, headers)
conn.close()
no problem with sending request to server
but if i use loop ...
1
vote
3answers
307 views
Suds Error: BadStatusLine in httplib
I am using suds 0.3.6. When creating a suds client, I randomly get an error:
httplib.py, _read_status(), line 355, class httplib.BadStatusLine'
Here is the code used to create the client:
imp = ...
1
vote
2answers
308 views
Python urllib2 decode chunked encoding
I have the following code to open and read URLs:
html_data = urllib2.urlopen(req).read()
and I believe this is the most standard way to read data from HTTP.
However, when the response have chunked ...
1
vote
3answers
73 views
Python: Need to attach extra header, after hidden defaults added by urllib2, before the request is sent
I know how to get at the response headers of a urllib2 request and also how to access those sent and print them out and the request is made, as detailed in the responses to this question.
However, I ...
1
vote
3answers
207 views
Python - PATCH http method
There is a way to make a request using PATCH http method in Python?
I tried using httplib, but it doesn't accept PATCH as method param.
[edit]
Typed wrong name for method, sorry everyone o.O
1
vote
3answers
136 views
check if url exist at fanfiction.net
I am trying to find out the last chapter number of a story at www.fanfiction.net just for fun. For this I thought that since it has a fixed pattern of url I will just increment the chapter number till ...
1
vote
1answer
206 views
Django/httplib : transmitting request.raw_post_data with httplib
"AAaarg" ! Please HeLp !!!
Here is what I am trying to do ...
I have a Django site site1, which needs to access the API of another service site2. However, in order to do that, site1 needs to use its ...
1
vote
0answers
224 views
debugging connection with urllib2+httplib.debuglevel sometimes not showing debug info
Trying to get a login script working, I kept getting the same login page returned, so I turned on debugging of the http stream (can't use wireshark or the like because of https).
I got nothing, so I ...
1
vote
0answers
130 views
httplib binary data and UnicodeDecodeError in python 2.7
I just discovered that starting with Python 2.7, the httplib doesn't work anymore with binary data, breaking modules that where sending binary data over HTTP, one example being [PyAMF]
Python bug: ...
1
vote
1answer
177 views
httplib is not getting all the redirect codes
I am trying to get the final url of a page that seems to redirect more than once. Try this sample URL in your browser and compare it to the final URL at the bottom of my code snippet:
Link that ...
1
vote
2answers
633 views
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 the api is down.
Here's an example connection:
connection = ...
1
vote
0answers
239 views
Posting Form Data with python, HTTP/1.1 and custom user agent
I have a form that I need to post data to, however it must have a specific user agent string and HTTP/1.1 headers, (not just host it explicitly looks for HTTP/1.1 in the POST string.)
I've attempted ...
1
vote
1answer
237 views
python httplib: getting the outgoing request headers
I do:
con = HTTPConnection(SERVER_NAME)
con.request('GET', PATH, HEADERS)
resp = con.getresponse()
For debugging reasons, I want to see the request I used (it's fields, path, method,..). I would ...
1
vote
1answer
869 views
Python httplib.HTTPSConnection and password
I use httplib.HTTPSConnection with private key:
h = httplib.HTTPSConnection(url, key_file='../cert/priv.pem', cert_file='../cert/srv_test.crt')
Then I am asked to enter the password to that private ...
1
vote
1answer
185 views
python httplib and broken tcp connection
How do I find out if a connection has been broken using the httplib library? Seems like something so basic yet I can't find the answer on here or google.
1
vote
1answer
481 views
When I use httplib for my OAUTH in Python, I always get “CannotSendRequest” and then "
Traceback:
File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/base.py" in get_response
92. response = callback(request, *callback_args, **callback_kwargs)
File ...
1
vote
2answers
822 views
Parsing Python Response using httplib
After connecting to a socket and capturing the response using .read() how do I parse the input stream and read lines?
I see the data is returned without any CRLF
...
1
vote
3answers
4k views
How to use cookielib with httplib in python?
In python, I'm using httplib because it "keep-alive" the http connection (as oppose to urllib(2)). Now, I want to use cookielib with httplib but they seem to hate each other!! (no way to interface ...
0
votes
0answers
28 views
URLError and BadStatusLine exceptions when fetching a webpage using urllib2
I'm getting certain exception when trying to fetch a webpage using urllib2. There are three exceptions that get thrown:
BadStatusLine
File "/usr/local/lib/python2.6/httplib.py", line 355, in ...
0
votes
1answer
22 views
What should be done about a python client fetching a URL wrt caching and redirects?
I am writing a client in Python 2.7.2 using httplib to fetch urls from the web:
def connectHttp(url, sub_url)
conn = httplib.HTTPConnection(url)
try:
conn.request("GET", "/" + ...
0
votes
0answers
40 views
send http put request in werkzeug
in my web app, I use werkzeug to listen and process requests. In one of the functionalities, I need to listen to request(say from A) and send an http put request to another server (B), then after I ...
0
votes
3answers
48 views
gai error at /home [Errno -2] Name or service not known
per the example in the httplib docs:
>>> import httplib, urllib
>>> params = urllib.urlencode({'@number': 12524, '@type': 'issue', '@action': 'show'})
>>> headers = ...
0
votes
0answers
52 views
Permanent gaierror 'Temporary failure in name resolution' after running for a few hours
I have a long running python script, launched with upstart. This script makes quite a lot of requests. Everything works well at first, however after a few hours I start permanently getting the ...
0
votes
1answer
72 views
post parameters in python
I've tried a lot of codes to post parameters through urllib or httplib.
So, this is my code:
import httplib,urllib
para = urllib.urlencode({"username":"test@msn.com","password":"test"})
conn = ...
0
votes
0answers
164 views
facebook app request delete comes back true but notification doesn't go away
I'm issuing a delete request using the code below. I get "true" back, but the notification stays. what??
request_ids = request.GET.getlist('request_ids')
print(request_ids)
count = ...
0
votes
2answers
119 views
What is the difference between Python's httplib and urllib2? [closed]
Possible Duplicate:
Python urllib vs httplib?
I am just curious when I would want to use httplib over urllib2 and vice versa.
0
votes
2answers
59 views
How to check redirected web page address, without downloading it in Python
For a given url, how can I detect final internet location after HTTP redirects, without downloading final page (e.g. HEAD request.) using python. I am trying to write a mass downloader, my downloading ...
0
votes
1answer
123 views
Python httplib.HTTPSConnection timeout — connection vs. response
When creating an HTTPSConnection with httplib, easy enough to set a timeout:
connection = httplib.HTTPSConnection('some.server.com', timeout=10)
connection.request('POST', '/api', xml, ...
0
votes
1answer
286 views
Python urllib2 cannot open localhost on alternate port (not 80)? Error 10013
Here is my server.py:
import BaseHTTPServer
import SocketServer
class TestRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
def do_GET(self):
self.wfile.write("hello world at %s" % ...
0
votes
2answers
512 views
Python httplib and POST
I am currently working with a piece of code that has been written by somebody else. It uses httplib to make requests to server. It has all the data supplied in a correct format - for example message ...