英文:
I cannot import Stream from tweepy
问题
我已安装 tweepy,版本为 4.14.0
但是当我尝试使用
from tweepy import Stream
时,我收到错误信息ImportError: cannot import name 'Stream' from 'tweepy'
我认为这之前是可以工作的,API 有什么变化吗?
英文:
I have tweepy installed, version 4.14.0
However when I try
from tweepy import Stream
I obtain the error ImportError: cannot import name 'Stream' from 'tweepy'
I think this was working before, has anything changed in the API?
答案1
得分: 1
API v1.1 status/filter端点的支持似乎已被移除。
更改日志在此处:https://docs.tweepy.org/en/stable/changelog.html#twitter-api-backwards-incompatible-changes
英文:
It looks like support for the API v1.1 status/filter endpoint may have been removed.
Changelog here: https://docs.tweepy.org/en/stable/changelog.html#twitter-api-backwards-incompatible-changes
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论