Skip to content

Instantly share code, notes, and snippets.

@avarx
Created February 27, 2015 10:32
Show Gist options
  • Save avarx/147c30a8af2df9f614a2 to your computer and use it in GitHub Desktop.
Save avarx/147c30a8af2df9f614a2 to your computer and use it in GitHub Desktop.
T3weets.py
import tweepy
import json
# Authentication details. To obtain these visit dev.twitter.com
consumer_key = 'XXX'
consumer_secret = 'XXX'
access_token = 'XXX'
access_token_secret = 'XXX'
# This is the listener, resposible for receiving data
class StdOutListener(tweepy.StreamListener):
def on_data(self, data):
# Twitter returns data in JSON format - we need to decode it first
decoded = json.loads(data)
# Also, we convert UTF-8 to ASCII ignoring all bad characters sent by users
print '@%s: %s' % (decoded['user']['screen_name'], decoded['text'].encode('ascii', 'ignore'))
print ''
return True
def on_error(self, status):
print status
if __name__ == '__main__':
l = StdOutListener()
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
print "Showing all new tweets for #TYPO3:"
# There are different kinds of streams: public stream, user stream, multi-user streams
# In this example follow #programming tag
# For more details refer to https://dev.twitter.com/docs/streaming-apis
stream = tweepy.Stream(auth, l)
stream.filter(track=['TYPO3'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment