0
votes
1answer
19 views
Parsing Multiple json elements in python
I'm trying to build a small script that will go through the Etsy API and retrieve certain information. The API returns 25 different listing all in json and I would appreciate it if someone could help ...
0
votes
1answer
52 views
+50
facebook api getting the number of friends a user has
I have 2 unrelated questions.
how many posts does facebook allow you to get with an api?
using facepy, facebook, or any other api, how do I get the number of friends a user has (the user is not my ...
0
votes
1answer
32 views
python csv write string into 1 cell
I am using the facebook api to get a time, convert it to a different format, and then write it to a csv file. Everything works well except that when the string gets written, it separates the string ...
0
votes
0answers
12 views
Using SugarCRM's python webservice library with oauth?
Im trying to implement some features from our company's sugarCRM server into a dashboard. We are using python as a programming language so i would like to stick to that. I found this library called ...
0
votes
0answers
16 views
Getting contacts with oauth in sugarcrm
For a project I am trying to getting sugarCRM contacts from a user using OAuth. The sugarcrm site has little information on how to do this + it is in PHP (see here) which I dont use. With some ...
1
vote
1answer
36 views
Dropbox python sdk import error
I am trying to use the dropbox sdk for python. I installed a virtual enviroment and used pip install to install dropbox-sdk. When I try to run the example code (see below) I get a importerror client ...
0
votes
1answer
32 views
Django memcache low level api giving less performance than cache middleware
This is the first time I am posting a question here so please ignore deviations from standard format...
Here is my setup.
Nginx --> Uwsgi --> Django --> (Memcached/ Mysql)
I have a set of APIs in ...
1
vote
1answer
16 views
Pymongo API TypeError: Unhashable dict
I'm writing an API for my software so that it is easier to access mongodb.
I have this line:
def update(self, recid):
self.collection.find_and_modify(query={"recid":recid}, update={{ ...
0
votes
2answers
30 views
Split JSON file in equal/smaller parts with Python
I am currently working on a project where I use Sentiment Analysis for Twitter Posts.
I am classifying the Tweets with Sentiment140. With the tool I can classify up to 1,000,000 Tweets per day and I ...
0
votes
1answer
55 views
Query Soundcloud API using created_at filter
Is it possible to use the created_at filter as part of a query in Python? I added it into my query filters, trying several different ways, but it seems to ignore that particular filter. The results ...
3
votes
1answer
35 views
Getting the source URL from an existing Shopify product image in Python
I'm basically having trouble seeing how a Shopify image url is stored and what I should write to access it. I'm not a python expert, so it could be something simple I'm not seeing.
Shopify has an API ...
0
votes
0answers
22 views
WiThings API OAuth with Python
I've really been struggling with getting OAuth to work with the WiThings API lately, using Python 3.3. For reference, here is the documentation for WiThings: http://www.withings.com/api
Now... As ...
0
votes
1answer
30 views
Not getting full profile info from linkedin python
I am trying to get all the info I can from a public profile. Linkedin says that I should be able to get:
<id>
<first-name>
<last-name>
<headline>
<location>
...
0
votes
2answers
45 views
Python: Appending API Calls to Spreadsheet
I'll start out by saying I'm very new to Python and programming in general but am very hands on in my learning style.
I would like to use Python to:
Gather an entire column of a spreadsheet into a ...
2
votes
2answers
3k views
Tumblr API 2: Where is the “OAUTH_TOKEN” and “OAUTH_TOKEN_SECRET”
I want to use Tumblr API 2, http://www.tumblr.com/docs/en/api/v2
I have already registered an Application here: http://www.tumblr.com/oauth/apps
But I only get the "OAuth Consumer Key" and "Secret ...