8e1eee1c44f5e32f59eb194fd224fb1be3e65890
[twitter-api-cdsw-solutions] / twitter-stream2.py
1 import tweepy
2 from twitter_authentication import CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET
3
4 auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
5 auth.set_access_token(ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
6
7 api = tweepy.API(auth)
8
9 class StreamListener(tweepy.StreamListener):
10     def on_status(self, tweet):
11         print(tweet.author.screen_name + "\t" + tweet.text)
12
13     def on_error(self, status_code):
14         print( 'Error: ' + repr(status_code))
15         return False
16
17 l = StreamListener()
18 streamer = tweepy.Stream(auth=auth, listener=l)
19
20 keywords = ['python', 'perl']
21 streamer.filter(track = keywords)

Benjamin Mako Hill || Want to submit a patch?