尝试检查是否建立了连接,但没有发生任何事情
我使用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()
答案 0 :(得分:1)
您只创建了一个Stream,但您没有启动它,请参阅docs。
在这个例子中,我们将使用过滤器来传输包含的所有推文 单词python。 track参数是搜索项的数组 流。
myStream.filter(轨迹= ['蟒'])