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

Method __anext__

requests_html.py:491–497  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

489 return self
490
491 async def __anext__(self):
492 while True:
493 url = self.next(fetch=False, next_symbol=self.next_symbol)
494 if not url:
495 break
496 response = await self.session.get(url)
497 return response.html
498
499 def add_next_symbol(self, next_symbol):
500 self.next_symbol.append(next_symbol)

Callers 1

test_async_paginationFunction · 0.80

Calls 1

nextMethod · 0.95

Tested by 1

test_async_paginationFunction · 0.64