Returns an iterator over all MediaWikiArticle objects. Optional parameters can include those passed to MediaWiki.list(), MediaWiki.search() and URL.download().
(self, **kwargs)
| 1637 | return self.all() |
| 1638 | |
| 1639 | def all(self, **kwargs): |
| 1640 | """ Returns an iterator over all MediaWikiArticle objects. |
| 1641 | Optional parameters can include those passed to |
| 1642 | MediaWiki.list(), MediaWiki.search() and URL.download(). |
| 1643 | """ |
| 1644 | for title in self.list(**kwargs): |
| 1645 | yield self.search(title, **kwargs) |
| 1646 | |
| 1647 | articles = all |
| 1648 |