We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
107 108 #page attribute in tweepy.cursor and iteration 109 for page in tweepy.Cursor(self.api.search, q=keyword,count=200, include_rts=False):
line 109 raised the error and it can be fixed with for page in tweepy.Cursor(self.api.search, q=keyword,count=200, include_rts=False).pages():
for page in tweepy.Cursor(self.api.search, q=keyword,count=200, include_rts=False).pages():