X-Git-Url: https://projects.mako.cc/source/twitter-api-cdsw/blobdiff_plain/1e2d406ccc7bfaa9c73ab809367ce5ae2ab6fc79..HEAD:/twitter1-cursor.py diff --git a/twitter1-cursor.py b/twitter1-cursor.py index dfb1188..b7de59b 100644 --- a/twitter1-cursor.py +++ b/twitter1-cursor.py @@ -9,7 +9,7 @@ auth.set_access_token(ACCESS_TOKEN, ACCESS_TOKEN_SECRET) 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)