2 from twitter_authentication import API_KEY, API_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET
4 auth = tweepy.OAuthHandler(API_KEY, API_SECRET)
5 auth.set_access_token(ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
9 public_tweets = api.search("data science", count=20)
11 for tweet in public_tweets:
12 print tweet.user.screen_name + "\t" + str(tweet.created_at) + "\t" + tweet.text