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 ...
7
votes
4answers
25k views

104, 'Connection reset by peer' socket error, or When does closing a socket result in a RST rather than FIN?

We're developing a Python web service and a client web site in parallel. When we make an HTTP request from the client to the service, one call consistently raises a socket.error in socket.py, in ...
6
votes
2answers
1k views

Is Twisted an httplib2/socket replacement?

Many python libraries, even recently written ones, use httplib2 or the socket interface to perform networking tasks. Those are obviously easier to code on than Twisted due to their blocking nature, ...
4
votes
1answer
1k views

How to do mutual certificate authentication with httplib2

I'm using httplib2 to make a request from my server to another web service. We want to use mutual certificate authentication. I see how to use a certificate for the outgoing connection ...
4
votes
4answers
1k views

httplib2, how to set more than one cookie?

As you are probably aware, more often than not, an HTTP server will send more than just a session_id cookie; however, httplib2 handles cookies with a dictionary, like this: response, content = ...
4
votes
2answers
1k views

Best practise when using httplib2.Http() object

I'm writing a pythonic web API wrapper with a class like this import httplib2 import urllib class apiWrapper: def __init__(self): self.http = httplib2.Http() def _http(self, url, ...
3
votes
2answers
63 views

How can I examine the network communications of the Python HTTP Client?

I'm trying to isolate a bug that exists either in Python's httplib2 HTTP client or an API. (First guess is the API.) While using httplib2 to POST data to a RESTful API, I'm getting a 401 response ...
3
votes
2answers
111 views

Can I do preemptive authentication with httplib2?

I need to perform preemptive basic authentication against an HTTP server, i.e., authenticate right away without waiting on a 401 response. Can this be done with httplib2? Edit: I solved it by adding ...
3
votes
1answer
414 views

Implementing a custom Python authentication handler

The answer to a previous question showed that Nexus implement a custom authentication helper called "NxBASIC". How do I begin to implement a handler in python? Update: Implementing the handler ...
2
votes
1answer
1k views

Python 3 httplib2 cookies [Fixed]

Fixed, httplin2 can't handle more than one cookie, the patch can be found here: http://code.google.com/p/httplib2/issues/detail?id=146 I am coding a facebook login script to get my last ...
2
votes
2answers
914 views

Using Httplib2 on Python Appengine

Why am I getting this error when running my application which is trying to OAuth with Foursquare? import httplib2 ImportError: No module named httplib2 I have installed httplib2 by downloading it ...
2
votes
1answer
366 views

Python CouchDB/httplib - error: [Errno 61] Connection refused

Did any one get this error? Please advice! There seems to be some problem with httplib python library. Python 2.7 (r27:82508, Jul 3 2010, 20:17:05) [GCC 4.0.1 (Apple Inc. build 5493)] on darwin ...
2
votes
4answers
2k views

Httplib2 - AttributeError: 'NoneType' object has no attribute 'makefile'

How do I fix this? PS: On googling, I found that this is some httplib2 bug but I didn't understand how to use the patches people have provided. Traceback (most recent call last): File ...
2
votes
3answers
709 views

how to follow meta refreshes in Python

Python's urllib2 follows 3xx redirects to get the final content. Is there a way to make urllib2 (or some other library such as httplib2) also follow meta refreshes? Or do I need to parse the HTML ...
2
votes
1answer
271 views

Accessing python httplib2 over a network share in windows 7

I am trying to run python from a network share on windows 7. The network share is T: >t:\python-2.6.1\python Python 2.6.1 (r261:67517, Dec 4 2008, 16:51:00) [MSC v.1500 32 bit (Intel)] on win32 ...
2
votes
1answer
244 views

Downloading compressed content over HTTP using Python

How do I take advantage of HTTP 1.1's compression when downloading web pages using Python? I am currently using the built-in urllib module for downloading web content. Reading through the ...
2
votes
1answer
929 views

Handling authentication and proxy servers with httplib2

I'm attempting to test interactions with a Nexus server that requires authentication for the operations I intend to use, but I also need to handle an internal proxy server. Based on my (limited) ...
1
vote
2answers
137 views

Python BadStatusLine error on certain DELETE requests

I am trying to use the python-rest-client ( http://code.google.com/p/python-rest-client/wiki/Using_Connection ) to perform testing of some RESTful webservices. Since I'm just learning, I've been ...
1
vote
1answer
180 views

Permission Denied on httplib2 install

I'm trying to install the httplib2 library for Python so I can use it to interact with the Twitter but I get the following error in the console when I try to install via 'python setup.py install'. ...
1
vote
2answers
187 views

Python httplib2 Handling Exceptions

I have this very simple code to check if a site is up or down. import httplib2 h = httplib2.Http() response, content = h.request("http://www.folksdhhkjd.com") if response.status == 200: print ...
1
vote
0answers
129 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
2answers
276 views

how do I install httplib2 for python under windows 7 64?

Only instructions I can find refer to unix/linux?
1
vote
1answer
456 views

Python httplib2, AttributeError: 'set' object has no attribute 'items'

I'm playing with the Python library httplib2. The following is my code. import urllib.parse import httplib2 httplib2.debuglevel = 1 http = httplib2.Http() url = ...
1
vote
1answer
211 views

httplib2 download progress bar in python

Is it possible to display the percentage a file has downloaded in python while using httplib2? I know you can with urllib2 but I want to use httplib2.
1
vote
1answer
221 views

Problem with programmatic login using httplib2

Im using httplib2 library in python to do a programmatic login to a website. Below is my code: import urllib,httplib2 url='http://somesite.com' header_data={'Content-type': ...
1
vote
2answers
108 views

include hash # in url with httplib2

I'm trying to make an http request using httplib2: import httplib2, time, re, urllib` conn = httplib2.Http(".cache") page = conn.request(u"http://www.mydomain.com/search?q=cars#p=100","GET") The ...
1
vote
1answer
163 views

HttpLib2 throws error when trying to do a request to couchdb

I'm building an application in Python2.6 that needs to get data from CouchDb. I'm using CouchDB-0.8-py2.6 to connect to the database. I'm using this code: import couchdb server = ...
1
vote
2answers
313 views

httplib2 giving internal server error 500 with proxy

Following is the code and error it throws. It works fine without the proxy http = httplib2.Http() . When I try the same http proxy in Firefox, it works fine. Any pointers are highly appreciated! ...
1
vote
1answer
237 views

Adding string to end of URL

To practise some more bits of python I've been having a go at the challenges on pythonchallenge.com In brief, this challenge as a first step requires one to load an html page from a url with a number ...
1
vote
1answer
542 views

Using httplib2 in python 3 properly? (Timeout problems)

Hey, first time post, I'm really stuck on httplib2. I've been reading up on it from diveintopython3.org, but it mentions nothing about a timeout function. I look up the documentation, but the only ...
1
vote
4answers
2k views

httplib2 not found

sh-3.2# python -V Python 2.6.4 sh-3.2# python -c "import httplib2" Traceback (most recent call last): File "<string>", line 1, in <module> ImportError: No module named httplib2 errr.. ...
1
vote
4answers
2k views

how to fix or make an exception for this error

I'm creating a code that gets image's urls from any web pages, the code are in python and use BeutifulSoup and httplib2. When I run the code, I get the next error: Look me http://movies.nytimes.com ...
0
votes
0answers
51 views

httplib2.CertificateHostnameMismatch in Google plus API

I tried to use Google plus API to go through the OAuth2 process. I got the verifier and am going to exchange the access token, then the error occurred. httplib2.CertificateHostnameMismatch: Server ...
0
votes
0answers
76 views

google contacts api calls returns 401 using python httplib2 (but works fine with wget)

After authentification the google contacts api returns a url of the form: ...
0
votes
2answers
153 views

Error opening ssl connection using httplib2

I am using httplib2 for opening up an ssl connection. Following is the code. import httplib2 if __name__=='__main__': conn = httplib2.Http(disable_ssl_certificate_validation=True) ...
0
votes
2answers
393 views

Looking to solve the SSL error in Google Plus API command-line Python starter kit running on localhost

I'm trying to get the command-line Python starter for Google Plus API working, but after the authentication has completed, I run into this error: ssl.SSLError: [Errno 185090050] _ssl.c:336: ...
0
votes
0answers
82 views

Apache SSL or Urllib2 problem accessing https

I have setup SSL on my site. It appears to run fine. https://eforms.gov.ie/en/ But when i try access it via python using urllib2 or httplib2 it throws timeout errors. import urllib2 response = ...
0
votes
1answer
296 views

CertificateValidationUnsupported using oauth2/httplib2 on Python 2.4

At a first look, python-ouath2 seemed to have many problems with Python 2.4, so I managed to get a patch on that by Googling. But I'm still getting an error from httplib2 as follows: ...
0
votes
1answer
395 views

Issue with python httplib2 on linux

I'm using the following snippet of code to call a web service, that requires basic auth: import urllib import httplib2 url='http://heywatch.com/download.json' ...
0
votes
1answer
217 views

How to OAuth Twitter with httplib2 and Python 3.x?

I know there are a lot of Python Twitter API and OAuth wrappers out there, but I don't want to use them. I want to use nothing more than httplib2 and Python 3.x standard library. Could you please ...
0
votes
3answers
543 views

How do I properly install httplib2 on Google App Engine?

I copied my httplib2 directory into my GAE project, and now I'm getting the following error: line 64, in <module> _ssl_wrap_socket = ssl.wrap_socket Is this an issue with Google App Engine, ...
0
votes
0answers
218 views

how to save a .png image retrieved using httplib2 [closed]

Possible Duplicate: How do I copy a remote image in python? I'm using the Python httplib2 library to retrieve a .png image from the web. E.g. import httplib2 h = httplib2.Http('.cache') ...
0
votes
0answers
137 views

Is that possible to HTTPlib2 and pycURL in same python application to achieve NTLM authentication?

Is that possible to HTTPlib2 and pycURL in same python application to achieve NTLM authentication? I am using httplib2 for basic authentication. i need to use NTLM authentication for my python ...
0
votes
3answers
220 views

Python fetch data 403

I am trying to fetch data from a webpage using urllib2. The page is visible on the browser but through the script I keep getting HTTPError: HTTP Error 403: Forbidden I also tried mimicking a browser ...
0
votes
2answers
695 views

Python create cookies and then load a page with the cookies

I would like to access a web page from a python program. I have to set up cookies to load the page. I used the httplib2 library, but I didn't find how add my own cookie resp_headers, content = ...
0
votes
0answers
146 views

Recieving incomplete body with httplib2

I am having some trouble using httplib2. When I browse to the page with Google Chrome and save the source the file is about 106kB. When I request the file with httplib2 i only get 99.x kB and there ...
0
votes
1answer
324 views

Help converting code using httlib2 to use urllib2

What am I trying to do? Visit a site, retrieve cookie, visit the next page by sending in the cookie info. It all works but httplib2 is giving me one too many problems with socks proxy on one site. ...
0
votes
2answers
614 views

Python Regex Help (httplib2 cookies)

Having the same problem as the poster of this question: http://stackoverflow.com/questions/1738227/httplib2-how-to-set-more-than-one-cookie The cookie looks like this.. ...
0
votes
2answers
449 views

Does the Python library httplib2 cache URIs with GET strings?

In the following example what is cached correctly? Is there a Vary-Header I have to set server-side for the GET string? import httplib2 h = httplib2.Http(".cache") resp, content = ...