尝试检查连接是否建立,但没有任何反应
我用on_connect
来理解,但没有得到任何东西:
import tweepy
import time
class InOutStreamListener(tweepy.StreamListener):
def on_connect(self):
print 'Connected'
def disconnect(self):
if self.running is False:
return
self.running = False
def on_friends(self, friends):
print friends[0]
auth = tweepy.OAuthHandler('code', 'code')
auth.set_access_token('code', 'code')
l = InOutStreamListener()
streamer = tweepy.Stream(auth, l)
time.sleep(15)
streamer.disconnect()
你只是创建了一个流,你还没有启动它,请参阅文档。
在本例中,我们将使用过滤器来流式传输包含python。track参数是一个搜索词数组流。
myStream.filter(跟踪= [' python '])