Search twitter feeds with Tweepy
Thanks to @Nirvana Tikku, he solved my question on how to talk with Tweepy and perform simple search in this Question . The below are a series of code summary on how i authenticate my tweepy on GAE. import tweepy creds = json.loads(open('credential.json').read()) tw_consumer_key = creds['tw_consumer_key'] tw_consumer_secret = creds['tw_consumer_secret'] tw_access_token = creds['tw_access_token'] tw_access_token_secret = creds['tw_access_token_secret'] try: auth = tweepy.OAuthHandler(tw_consumer_key, tw_consumer_secret) auth.set_access_token(tw_access_token, tw_access_token_secret) api = tweepy