3 from twitter_authentication import CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET
6 auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
7 auth.set_access_token(ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
11 # I found the idea of how to the user the Cursor here:
12 # https://tweepy.readthedocs.org/en/v3.4.0/cursor_tutorial.html
13 for page in tweepy.Cursor(api.home_timeline, count=200).pages():