python

クラス変数初期化時に他のクラスメンバが見つからなくて死亡

にわかpython屋のわし、詰まる。 #python3 class A : def set(self, type, value) : A.FUNC_MAP[type](self, value) def _setSearch(self, s) : self.search = s def _setTitle(self, s) : self.title = s FUNC_MAP = { "search" : A._setSearch, # NameErro…

tweepy の Cursor を使うと AttributeError で切腹なさる

Traceback (most recent call last): File "foo.py", line 48, in test() File "foo.py", line 33, in test for status in tweepy.Cursor(api.user_timeline).items(50) : File "tweepy\cursor.py", line 181, in next self.current_page = self.page_iterat…