このクラスの 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 で定義されていないと表示されています。