from tweepy import Stream
from tweepy import OAuthHandler
from tweepy.streaming import StreamListener
ckey = 'HPZLP2PF7ktZpIBkQHCR4Bn1B'
csecret = 'KTVKfGsLqTWKSjZEkUbGOuOW0kuRi1dgKCtYSHcyJMxMuF8sgG'
atoken = '136375442-7RolevcTndEUHsinbOBWpI8bBOyzqqOmRaWDJLCi'
asecret = 'yd1biftCLMkaet9stnZDCK8kwzwlGZyYFzrF3eYeczHNN'
class listener(StreamListener):
def on_data(self, data):
print data
return True
def on_error(self, status):
print status
auth = OAuthHandler (ckey, csecret)
auth.set_access_token (atoken, asecret)
twitterStream = Stream(auth, listener())
twitterStream.filter(track = ["eleicoes2014"])
Conseguiu ter acesso aos dados mas deu um erro no final, como se fosse um loop infinito.
Nenhum comentário:
Postar um comentário