tweepy.cursor 不是可调用的 pylint(不可调用)
tweepy.cursor is not callablepylint(not-callable)
我正在尝试使用
'''
对于 tweepy.cursor(api.followers).items() 中的关注者:
打印(follower.name)
'''
但是我收到这种类型的错误 *tweepy.cursor is not callablepylint(not-callable)
av 尝试使用 from '''tweepy import tweepy''' 但它也出现了更多错误 > 无法从 class tweepy
导入模块
尝试使用光标(而不是光标):
import tweepy
api = tweepy.API(auth)
for follower in tweepy.Cursor(api.followers).items():
print(follower.name)
我正在尝试使用 ''' 对于 tweepy.cursor(api.followers).items() 中的关注者: 打印(follower.name) ''' 但是我收到这种类型的错误 *tweepy.cursor is not callablepylint(not-callable) av 尝试使用 from '''tweepy import tweepy''' 但它也出现了更多错误 > 无法从 class tweepy
导入模块尝试使用光标(而不是光标):
import tweepy
api = tweepy.API(auth)
for follower in tweepy.Cursor(api.followers).items():
print(follower.name)