I am new to app engine and tweepy so as when i created a simple app, i always end up getting errors. How can i search for tweets in app engine?
import tweepy
auth = tweepy.OAuthHandler('kljaYhxWqM2LBqUQdbY1X4H0V', 'ANkoqZx6bx65CSDITfVeFrhSahqst4TsbBrLVZWSlSaMUaJBYQ')
auth.set_access_token('622919352-nrH1LzNOmdn2VI62M9oZJT6dJA1GMBiZBJaypRrE', 'pxr36RyGuCHaIWluqtWENnB05sNGi0u20GdyH17Xw1fQQ')
api = tweepy.API(auth)
public_tweets = api.home_timeline()
for tweet in public_tweets:
print tweet.text