MCPcopy Index your code
hub / github.com/clips/pattern / all

Method all

pattern/web/__init__.py:1639–1645  ·  view source on GitHub ↗

Returns an iterator over all MediaWikiArticle objects. Optional parameters can include those passed to MediaWiki.list(), MediaWiki.search() and URL.download().

(self, **kwargs)

Source from the content-addressed store, hash-verified

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

Callers 1

__iter__Method · 0.95

Calls 2

listMethod · 0.95
searchMethod · 0.95

Tested by

no test coverage detected