from crawlee.crawlers import BeautifulSoupCrawler, BeautifulSoupCrawlingContext from crawlee.http_clients import HttpxHttpClient async def main() -> None: http_client = HttpxHttpClient(verify=False) crawler = BeautifulSoupCrawler(http_client=http_client)
from crawlee.crawlers import BeautifulSoupCrawler, BeautifulSoupCrawlingContext from crawlee.http_clients import HttpxHttpClient async def main() -> None: http_client = HttpxHttpClient(verify=False) crawler = BeautifulSoupCrawler(http_client=http_client)