Skip to content

Instantly share code, notes, and snippets.

@benrules2
Created November 3, 2016 00:30
Show Gist options
  • Save benrules2/41c0358cb59008c9bc7c8adc76c0bfee to your computer and use it in GitHub Desktop.
Save benrules2/41c0358cb59008c9bc7c8adc76c0bfee to your computer and use it in GitHub Desktop.
Get Username Mentions
def read_messages(twitter_account, since = 0):
mentions = tweepy.Cursor(twitter_account.mentions_timeline, since_id = str(since)).items()
tweets = []
for tweet in tweets:
tweets.append(tweet.text)
if (tweet.id > since):
since = tweet.id
return {"messages":tweets, "since_id": since}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment