MCPcopy Create free account
hub / github.com/clips/pattern / findAllNext

Method findAllNext

pattern/web/soup/BeautifulSoup.py:272–277  ·  view source on GitHub ↗

Returns all items that match the given criteria and appear after this Tag in the document.

(self, name=None, attrs={}, text=None, limit=None,
                    **kwargs)

Source from the content-addressed store, hash-verified

270 return self._findOne(self.findAllNext, name, attrs, text, **kwargs)
271
272 def findAllNext(self, name=None, attrs={}, text=None, limit=None,
273 **kwargs):
274 """Returns all items that match the given criteria and appear
275 after this Tag in the document."""
276 return self._findAll(name, attrs, text, limit, self.nextGenerator,
277 **kwargs)
278
279 def findNextSibling(self, name=None, attrs={}, text=None, **kwargs):
280 """Returns the closest sibling to this Tag that matches the

Callers 1

testNextMethod · 0.80

Calls 1

_findAllMethod · 0.95

Tested by 1

testNextMethod · 0.64