Skip to content

Commit 598a266

Browse files
authored
doc: add playwright to install section in readme (#162)
1 parent 2d2a050 commit 598a266

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,24 @@ If you plan to use `BeautifulSoupCrawler`, install `crawlee` with `beautifulsoup
3434
pip install 'crawlee[beautifulsoup]'
3535
```
3636

37+
If you plan to use `PlaywrightCrawler`, install `crawlee` with the `playwright` extra:
38+
39+
```bash
40+
pip install 'crawlee[playwright]'
41+
```
42+
43+
Then, install the Playwright dependencies:
44+
45+
```bash
46+
playwright install
47+
```
48+
49+
You can install multiple extras at once by using a comma as a separator:
50+
51+
```bash
52+
pip install 'crawlee[beautifulsoup,playwright]'
53+
```
54+
3755
## Features
3856

3957
- Unified interface for **HTTP and headless browser** crawling.

0 commit comments

Comments
 (0)