api = tweepy.API(auth)
# I found the idea of how to the user the Cursor here:
-# https://tweepy.readthedocs.org/en/v3.2.0/cursor_tutorial.html
+# https://tweepy.readthedocs.org/en/v3.4.0/cursor_tutorial.html
for page in tweepy.Cursor(api.home_timeline, count=200).pages():
for tweet in page:
print(tweet.text)