ソースを参照

Implement Category.__iter__()

tags/v0.2
Ben Kurtovic 11年前
コミット
a3eee798f9
1個のファイルの変更4行の追加0行の削除
  1. +4
    -0
      earwigbot/wiki/category.py

+ 4
- 0
earwigbot/wiki/category.py ファイルの表示

@@ -58,6 +58,10 @@ class Category(Page):
"""Return a nice string representation of the Category."""
return '<Category "{0}" of {1}>'.format(self.title, str(self.site))

def __iter__(self):
"""Iterate over all members of the category."""
return self.get_members()

def _get_members_via_api(self, limit, follow):
"""Iterate over Pages in the category using the API."""
params = {"action": "query", "list": "categorymembers",


読み込み中…
キャンセル
保存