Skip to content

Instantly share code, notes, and snippets.

@aniruddha27
Created August 15, 2020 05:24
# Streaming tweets from user timeline
user = "AnalyticsVidhya"
public_tweet = api.user_timeline(id=user,count=5)
for tweet in public_tweet:
print("-->",tweet.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment