Skip to content

Commit a2975ef

Browse files
authored
docs: Fix crawler imports in readme (#865)
With the release of Crawlee v0.5.0, the imports has been updated.
1 parent 02e3e0b commit a2975ef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ The [`BeautifulSoupCrawler`](https://crawlee.dev/python/api/class/BeautifulSoupC
8989
```python
9090
import asyncio
9191

92-
from crawlee.beautifulsoup_crawler import BeautifulSoupCrawler, BeautifulSoupCrawlingContext
92+
from crawlee.crawlers import BeautifulSoupCrawler, BeautifulSoupCrawlingContext
9393

9494

9595
async def main() -> None:
@@ -129,7 +129,7 @@ The [`PlaywrightCrawler`](https://crawlee.dev/python/api/class/PlaywrightCrawler
129129
```python
130130
import asyncio
131131

132-
from crawlee.playwright_crawler import PlaywrightCrawler, PlaywrightCrawlingContext
132+
from crawlee.crawlers import PlaywrightCrawler, PlaywrightCrawlingContext
133133

134134

135135
async def main() -> None:

0 commit comments

Comments
 (0)