MCPcopy Create free account
hub / github.com/csev/py4e / findAllNext

Method findAllNext

code/BeautifulSoup.py:257–262  ·  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

255 return self._findOne(self.findAllNext, name, attrs, text, **kwargs)
256
257 def findAllNext(self, name=None, attrs={}, text=None, limit=None,
258 **kwargs):
259 """Returns all items that match the given criteria and appear
260 after this Tag in the document."""
261 return self._findAll(name, attrs, text, limit, self.nextGenerator,
262 **kwargs)
263
264 def findNextSibling(self, name=None, attrs={}, text=None, **kwargs):
265 """Returns the closest sibling to this Tag that matches the

Callers

nothing calls this directly

Calls 1

_findAllMethod · 0.95

Tested by

no test coverage detected