The httplib2 tag has no wiki summary.
4
votes
1answer
44 views
Is this a bug of httplib2
My python program use httplib2.Http to make http request. Once I need to generate a request, I create a httplib2.Http object, so that my program will frequently create/destroy httplib2.Http objects.
...
0
votes
1answer
24 views
Uploading Newline-delimited JSON From a File to BigQuery
I recently wrote a Python script that uploads local, newline-delimited JSON files to a BigQuery table. It's very similar to the example provided in the official documentation here. The problem I'm ...
0
votes
1answer
29 views
ImportError: No module named httplib2 on Heroku
Here is my import libraries in my python code which i hosted on heroku
import os
from flask import Flask, render_template
import sys, httplib2, json;
Its shows error ImportError: No module named ...
0
votes
1answer
20 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 ...
0
votes
1answer
21 views
import httplib2 works in mac terminal but not IDLE shell
I'm having great problems with getting the python site package httplib2 to work properly in IDLE. I'm using a mac with OSX 10.8.3 and python 2.7.
I used the following installation steps to install ...
0
votes
1answer
43 views
How do I install python's httplib2 on a mac?
OS: Mac OSx 10.8.3
IDE: Eclipse w/ PyDev
How do I properly install httplib2 on a Mac? It can be done on Ubuntu, Debian, Gentoo, and FreeBSD via the command posted below except Mac OS.
Apparently ...
2
votes
1answer
55 views
HTTP Post Using httplib2 Error
I am trying to get a new access token by using a refresh token as described by Google here. Google says I need to make a HTTP request. I had no clue how to do that, so I looked up how to do it from ...
0
votes
0answers
43 views
python3 and httplib2 - connection closed by remotehost
So I'm trying to post a xml file via httplib2 and python 3:
http = httplib2.Http()
def upload(self):
response, content = http.request(
self.URL,
'POST',
...
0
votes
1answer
81 views
Python: What's the difference between httplib2 and urllib2?
I'm trying to implement an OAuth2 authentication server and for the client part i wanted to send a json request to the server (from a Django view) and i found several libraries to do that tho' the ...
3
votes
1answer
463 views
ImportError: No module named httplib2
I have a Python 2.7 GAE app that already has a lot of functionality. Now I want to integrate with a Google API.
Within my IDE (PyCharm) running on Mac OSX, I added the following lines to my app's ...
0
votes
0answers
68 views
Python httplib2 Access is denied
I am facing a problem on executing simple code.
import httplib2
h = httplib2.Http(".cache")
resp, content = h.request("http://example.org/", "GET")
Output is
Traceback (most recent call last):
...
2
votes
1answer
137 views
Foursquare API Python Access Token Error
I am trying to get access token from Foursquare API via Python.
I'm using the wrapper from https://github.com/mLewisLogic/foursquare
And, followed the same approach mentioned on ...
1
vote
1answer
440 views
Character encoding error: UnicodeEncodeError: 'charmap' codec can't encode character X in position Y: character maps to <undefined>
I'm trying to scrape yahoo finance web pages to get stock price data with Python 3.3, httplib2, and beautifulsoup4. Here is the code:
def getData (symbol = 'GOOG', period = 'm'):
baseUrl = ...
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
100 views
httplib2 PUT request with json data is not working
i'm trying to make a 'put' request to update data from my database and nothing happens with this code:
def post(self,request,*args,**kwargs):
firstname=request.POST['first']
...
0
votes
2answers
142 views
Python List to String Conversion
This seems like a simple task and I'm not sure if I've accomplished it already, or if I'm chasing my tail.
values = [value.replace('-','') for value in values] ## strips out hyphen (only 1)
...
1
vote
2answers
186 views
pyinstaller compiled file has ssl issue, error: 185090050
i've got some python code that's successfully running on my windows machine in the python ide and cmd prompt.
after i compile with pyinstaller (into one file) i get the following error:
Traceback ...
2
votes
2answers
593 views
Intermittent “sslv3 alert handshake failure” under Python
I have a REST API written in Java running under JBoss. Recently we updated our JVM from 1.6 to 1.7. This started to cause issues with only our Python clients which were connecting. Intermittently, ...
0
votes
1answer
567 views
Httplib2 ssl error
Today I faced one interesting issue.
I'm using the foursquare recommended python library httplib2 raise
SSLHandshakeError(SSLError(1, '_ssl.c:504: error:14090086:SSL ...
1
vote
0answers
63 views
Httplib2 module installation on window7 64
In Python, I used the easy_install and tried to install oauth2. Then I found it needs httplib2.
Used: easy_install httplib2 in the command prompt.
and found the httplib2 0.7.6 egg in site-packages ...
0
votes
1answer
174 views
Python httplib2 is not working for authenticated resource
I have a resource which is authenticated which requires realm, username and password for authentication.
Python's urllib2 has provision to provide realm whereas i did not find any provision for ...
1
vote
1answer
220 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"?> \
...
2
votes
1answer
1k views
How to specify python requests http put body?
I'm trying to rewrite some old python code with requests module.
The purpose is to upload an attachment.
The mail server requires the following specification :
...
0
votes
0answers
323 views
How to handle proxy authentication in httplib2
My codes:
import httplib2
import socks
httplib2.debuglevel=4
h = httplib2.Http(proxy_info = httplib2.ProxyInfo(socks.PROXY_TYPE_HTTP, 'proxycn2.huawei.com', 8080, proxy_user=‘xiaoming’, ...
0
votes
1answer
170 views
Error in getting OAuth authentication url
I have the following code in a Python desktop application that authorizes users before using the AppHarbor API. I am following the steps mentioned in the knowledge base and have the following ...
0
votes
2answers
270 views
multithreaded crawler with different proxy for each thread, the right way?
I'm going to write a multithreaded crawler that is planned to run on about 10M pages, in order to speed thing up I need to fetch about 10~ different pages simultaneity.
Each of the crawler-threads ...
0
votes
1answer
467 views
Grooveshark closing connection early (httplib.BadStatusLine)
I'm trying to connect to grooveshark. For this python is my language of choice. but i have hit a brick wall. it would seem that grooveshark recently changed part of their protocol, or i might have hit ...
2
votes
1answer
218 views
Python write binary data to MIME infoset
I am tring to post an HTTP request using httplib2 that contains some xml and some binary data using this infoset:
MIME-Version: 1.0
Content-Type: Multipart/Related;boundary=MIME_boundary;
...
...
0
votes
1answer
615 views
Why is Google telling me that my REST httplib2 code is malformed?
import httplib2
from urllib import urlencode
h = httplib2.Http()
h.add_credentials('zackster@gmail.com', 'PassWord')
data = dict(key="ThisIsMyApiKeyICopiedAndPastedIt")
resp, content = ...
0
votes
1answer
136 views
Unable to Submit Multipart form with no file using httplib2
I need to write a script that will automatically submit the form at http://iedb.ebi.ac.uk/tools/ElliPro/iedb_input by choosing the " Protein structure (Go to step 2b)" and then entering some value in ...
0
votes
1answer
609 views
google-app-engine : ImportError httplib2 in google api python client hello world
I just downloaded the Google App Engine SDK for python (google_appengine_1.6.5.zip) and i try to launch an example from google-api-python-client (appengine) :
$ tree
.
|-- app.yaml
|-- ...
2
votes
1answer
4k views
python, Json and string indices must be integers, not str
I am using Python, and I sent a request to a URL and received a reply using httplib2. The reply I got was in JSon, how do I access a specific parameter. What I have at the moment is:
resp, content = ...
3
votes
1answer
784 views
Python httplib2 AttributeError: 'builtin_function_or_method' object has no attribute 'new'
I am trying to scrape text from wikipedia. Since httplib2 is already installed, I thought I would use it.
When I go through the simple retrieval from their basic examples, the first example gives me ...
0
votes
3answers
904 views
How do I save a file using python's httplib2?
I can run the following code:
import httplib2
h = httplib2.Http('.cache')
response, content = h.request('http://2.bp.blogspot.com/-CXFfl9luHPM/TV-Os6opQfI/AAAAAAAAA2E/oCgrgvWqzrY/s1600/cow.jpg')
...
5
votes
3answers
2k views
Why does this url raise BadStatusLine with httplib2 and urllib2?
Using httplib2 and urllib2, I'm trying to fetch pages from this url, but all of them didn't work out and ended up with this exception.
content = ...
0
votes
1answer
339 views
Is there a direct equivalent to httplib.HTTPConnection() in httplib2
I'm trying to get rid of an exception HTTPException('ApplicationError: 5 ',) I get when using httplib in a python27 API (running on google appengine) - further detailed in this post ApplicationError2 ...
0
votes
1answer
87 views
does the Linux distribution matters for noarch packages?
I need httplib2 v0.7 RPM for RHEL 5.7, but can't find one. So,
do you by chance know where can I get some?
I see such RPMs but for other distros (e.g. Mandrake). Since it is python-only lib (noarch) ...
0
votes
1answer
274 views
httplib2 API is different when installed from source or as RPM?
Boy, is this frustrating...
I installed the httplib2 by downloading the .tar.gz package from the site on my CentOS development VM. After spending 1/2 day to get it do two-way ssl authentication, I ...
3
votes
2answers
363 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 ...
0
votes
0answers
313 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 ...
1
vote
2answers
575 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 ...
0
votes
2answers
1k 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)
...
1
vote
3answers
1k 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: ...
2
votes
1answer
3k views
Python 3 httplib2 cookies
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 ...
1
vote
1answer
2k 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'.
...
0
votes
1answer
894 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:
...
3
votes
2answers
720 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 ...
5
votes
1answer
404 views
How do I make calls to AWS with Python 3 and httplib2 on Windows 7?
I am using httplib2 to make calls to Amazon Web Services (AWS):
http = httplib2.Http(cache='.cache')
response, content = http.request('https://sdb.amazonaws.com/...')
However it fails looking for ...
1
vote
2answers
1k 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 ...
0
votes
1answer
1k 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'
...

