Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
717 views

How to Collect Tweets More Quickly Using Twitter API in Python?

For a research project, I am collecting tweets using Python-Twitter. However, when running our program nonstop on a single computer for a week we manage to collect about only 20 MB of data per week. I ...
2
votes
1answer
110 views

Python Twitter library: cannot import it

I'm trying this presumably basic thing of importing Python Twitter library. First I got an error in line 52, saying he couldn't upload a json library. That line of code is part of script where the ...
1
vote
1answer
80 views

access twitter HomeTimeline of user

I am trying to develop a gtk3 desktop application using python to perform the basic twitter functions like accessing the home timeline of a user, making tweets etc. I am using python-twitter ...
1
vote
1answer
113 views

Twitter Python API in Terminal - Errors installing

I've installed the following libraries and gotten through all the steps in the twitter python setup: httplib2-0.7.1 simplegeo-python-oauth2-1fcc1a6 python-twitter-0.8.2 ...
1
vote
1answer
233 views

Python Twitter - Get tweet URLS

I am using the python-twitter module to get my most recent twitter status updates: for i in range(0, limit): tweet = twitter.Api().GetUserTimeline(TWITTER_USERNAME)[i] tweet.date = ...
1
vote
1answer
98 views

can i get date of friendship in twitter?

is there a way to get the date of friendship creation for both my friends and followers in twitter? especially for python-twitter....
1
vote
1answer
177 views

Using django-syncr with twitter

I wanted to add twitter feed to my application. So I've downloaded python-twitter (with python-oauth) and django-syncr. Installed everything and what now ? In my main view I wanted to perform Twitter ...
1
vote
3answers
745 views

How do I extend a python module? (python-twitter)

What are the best practices for extending a python module -- in this case I want to extend python-twitter by adding new methods to the base API class. I've looked at tweepy, and I like that as well, ...
0
votes
1answer
27 views

How do I know how many result pages can I get using python-twitter GetSearch() method

I use twitter-python search API to retrieve search results like below import twitter api = twitter.Api() i = 1 result = api.GetSearch("Avatar", page=i) print [s.text for s in result] The code above ...
0
votes
0answers
64 views

python-twitter API

I am trying to use the python-twitter API to get a user timeline on a twitter user but I keep getting the following error below after having the API work earlier today in exactly the same manner I am ...
0
votes
2answers
91 views

location of twitter.py file (python-twitter library) in Mac OS X 10.6.7 with Python 2.6.7

I have python 2.6.7 installed in my mac (/usr/local/bin/python). Previously, I installed python-twitter library. I follow these steps when I installed it: tar -xvf python-twitter-0.8.3.tar.gz cd ...
0
votes
1answer
324 views

Retrieve tweets of a twitter account starting from certain date to current date

I want to write a script that retrieve the tweets from a twitter account. Here is the scenario that I would like to achieve: my script should be able to retrieve all tweets of a user starting from ...
0
votes
0answers
202 views

python-twitter authentication, How?

somebody please explain me how to use the library python-twitter? http://code.google.com/p/python-twitter/ I'm try authenticate: import urlparse import twitter import oauth2 as oauth consumer_key = ...
0
votes
1answer
85 views

Python-twitter API help

I have just started using the python-twitter API and it requires me to register the app for the authorization using OAuth. But when i register with twitter it asks for a Application website. Now the ...
0
votes
1answer
106 views

python-twitter GetSearch giving empty list

My code was working correctly till yesterday and I was able to fetch tweets, from GetSearch(), but now it is returning empty list, though I check my credentials are correct Is something changed ...
0
votes
1answer
96 views

Python process file and return specific items

Say i have a dict, dict is a dictonary with dictonary as value dict = {'**Leon**':{'Name':'Leon L','**follow**':['Apple', 'PPy','Jack','Tommy']},'**Jack**':{'name':'Jack ...
0
votes
1answer
496 views

How to set User-Agent in python-twitter?

i'm writing a small script to tweet messages from the monitoring systems. The only issue i ran into so far is that i can't set the User-Agent correctly, all tweets show up as "from API" which ain't a ...
0
votes
2answers
414 views

Django and python-twitter error

im trying to send my title post to twitter, in my local machine is working great!!!, but in remote i have this error from the snippet file: AttributeError: 'module' object has no attribute 'Api' im ...