From ba48aab4fca5486068104ad61b2d37db6f7cc86a Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Thu, 22 Oct 2015 19:42:29 -0700 Subject: [PATCH] updated cursor to new version of tweepy docs --- twitter1-cursor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2