def get_user_tweets(self): """Return a list of all tweets from the authenticathed API user.""" tweets = [] for status in tweepy.Cursor(self.api.user_timeline).items(): tweets.append(status) return tweets