MCPcopy
hub / github.com/psf/requests-html / __iter__

Method __iter__

requests_html.py:474–483  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

472 return url
473
474 def __iter__(self):
475
476 next = self
477
478 while True:
479 yield next
480 try:
481 next = next.next(fetch=True, next_symbol=self.next_symbol).html
482 except AttributeError:
483 break
484
485 def __next__(self):
486 return self.next(fetch=True, next_symbol=self.next_symbol).html

Callers

nothing calls this directly

Calls 1

nextMethod · 0.80

Tested by

no test coverage detected