Created
May 28, 2020 15:24
-
-
Save kurasaiteja/79c4b3ca9a0d20fd871ecf1e513e75ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tweepy import Stream | |
# Set up words to track | |
keywords_to_track = ['#javascript','#python'] | |
# Instantiate the SListener object | |
listen = SListener(api) | |
# Instantiate the Stream object | |
stream = Stream(auth, listen) | |
# Begin collecting data | |
stream.filter(track = keywords_to_track) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment