2 from twitter_authentication import CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET
4 auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
5 auth.set_access_token(ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
9 public_tweets = api.home_timeline(count=100)
11 for tweet in public_tweets: