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))