我在我的Mac书籍空气中使用python 2.7.7。我复制了官方Tweepy文档中的代码 - http://docs.tweepy.org/en/latest/streaming_how_to.html?highlight=stream。
import tweepy
consumer_key = "***"
consumer_secret = "***"
access_token = "***"
access_token_secret = "***"
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
class MyStreamListener(tweepy.StreamListener):
def on_status(self, status):
print(status.text)
myStreamListener = MyStreamListener()
myStream = tweepy.Stream(auth = api.auth, listener=MyStreamListener())
myStream.filter(track=['@soroushg_'])
但每当我运行此代码时,它会说
InsecurePlatformWarning:真正的SSLContext对象不可用。这可以防止urllib3正确配置SSL,并可能导致某些SSL连接失败。
如果有人知道我为什么喜欢知道。提前谢谢。
答案 0 :(得分:0)
这是一个小点问题,我不得不更新pip!