Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to save tweepy objects(user status) to my database, after inputing the below codes, it's only saving a user with a particular username instead of it to save all the users objects. How can I make it save all the users object who are on my list?

Views:

consumer_key=""
consumer_secret=""
access_token=""
access_token_secret=""
auth=tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api=tweepy.API(auth)
db=MySQLdb.connect("localhost","","","")
cur=db.cursor()

def tweetstream(request):
    statuses=Cursor(api.list_timeline, owner=request.user, slug='Testy').items(20)
    for status in statuses:

        print "%s\t%s\t%s\t%s" % (status.text,
                                  status.author.screen_name,
                                  status.created_at,
                                  status.source,)

        cur.execute("INSERT INTO tweets VALUES (%s, %s, %s, %s)", (status.text,
                                                                   status.author.screen_name,
                                                                   status.created_at,
                                                                   status.source))

        return render_to_response('dashboard.html',{'statuses': statuses},context_instance=RequestContext(request))
share|improve this question

1 Answer

up vote 0 down vote accepted

You have to put the return statement out of the for block! That's why one insertions is done..

for status in statuses:

    print "%s\t%s\t%s\t%s" % (status.text,
                              status.author.screen_name,
                              status.created_at,
                              status.source,)

    cur.execute("INSERT INTO tweets VALUES (%s, %s, %s, %s)", (status.text,
                                                               status.author.screen_name,
                                                               status.created_at,
                                                               status.source))

return render_to_response('dashboard.html',{'statuses': statuses},context_instance=RequestContext(request))
share|improve this answer
I've done that, it's not even returning any objects. The page is just blank. – picomon May 8 '12 at 15:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.