我正在尝试覆盖此类的名为 GetFollowerIDs 的方法: https ://github.com/bear/python-twitter/blob/master/twitter.py#L3705
我想要实现的是正常执行该功能,然后得到next_cursor
不只是result
.
我尝试了以下方法:
class MyApi(twitter.Api):
def GetFollowerIDs(self, *args, **kwargs):
super(MyApi, self).GetFollowerIDs(*args, **kwargs)
print result
print next_cursor
我收到了这个错误:
TypeError: unbound method GetFollowerIDs() must be called with MyApi instance as first argument (got nothing instead)
当这样调用它时:
ids = MyApi.GetFollowerIDs(
screen_name=options['username'],
cursor=cursor,
count=options['batch-size'],
total_count=options['total'],
)
最重要的是,result
并且next_cursor
已经显示为在我的 IDE 中未定义。