首页 > 解决方案 > 无法导入 StreamListener

问题描述

我正在尝试使用 Twitter API 在 Python 中创建数据流,但无法StreamListener正确导入。

这是我的代码:

import tweepy
from tweepy import Stream
from tweepy.streaming import StreamListener

class MyListener(StreamListener):
 
    def on_data(self, data):
        try:
            with open('python.json', 'a') as f:
                f.write(data)
                return True
        except BaseException as e:
            print("Error on_data: %s" % str(e))
        return True
 
    def on_error(self, status):
        print(status)
        return True
 
twitter_stream = Stream(auth, MyListener())
twitter_stream.filter(track=['#python'])

我收到了这个错误:

Traceback (most recent call last):
  File "c:\Users\User\Documents\GitHub\tempCodeRunnerFile.python", line 6, in <module>
    from tweepy.streaming import StreamListener
ImportError: cannot import name 'StreamListener' from 'tweepy.streaming' (C:\Users\User\AppData\Local\Programs\Python\Python39\lib\site-packages\tweepy\streaming.py)

标签: pythonapitwitterimporttweepy

解决方案


Tweepy v4.0.0昨天发布并合并StreamListenerStream.

我建议您将代码更新为子类Stream
或者,您可以降级到 v3.10.0。


推荐阅读