From a2975ef2136ec4b86171da760c3c04fe0d66a0eb Mon Sep 17 00:00:00 2001 From: Peter JOHN Matecsa Date: Mon, 6 Jan 2025 03:29:58 -0500 Subject: [PATCH] docs: Fix crawler imports in readme (#865) With the release of Crawlee v0.5.0, the imports has been updated. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f88ad6c285..27df69eb7d 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ The [`BeautifulSoupCrawler`](https://crawlee.dev/python/api/class/BeautifulSoupC ```python import asyncio -from crawlee.beautifulsoup_crawler import BeautifulSoupCrawler, BeautifulSoupCrawlingContext +from crawlee.crawlers import BeautifulSoupCrawler, BeautifulSoupCrawlingContext async def main() -> None: @@ -129,7 +129,7 @@ The [`PlaywrightCrawler`](https://crawlee.dev/python/api/class/PlaywrightCrawler ```python import asyncio -from crawlee.playwright_crawler import PlaywrightCrawler, PlaywrightCrawlingContext +from crawlee.crawlers import PlaywrightCrawler, PlaywrightCrawlingContext async def main() -> None: