Tagged Questions
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 ...
3
votes
1answer
647 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 ...
2
votes
1answer
36 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 ...
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
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
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
0answers
225 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
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
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
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
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
3answers
506 views
weird problem with urllib2.proxyhandler in python 2.5
in windows XP, python 2.5 and 2.6 I tested the following code:
import urllib2
proxy= urllib2.ProxyHandler({'http': '127.0.0.1:8080'})
opener = urllib2.build_opener(proxy)
...
0
votes
1answer
55 views
Help with HTML parsing and sending requests to a web server
I'm working on a small project and I've run into a small problem. The script I have needs to fetch a website and find a specific value in the source HTML file. The value is like this:
...