Skip to content

Commit

Permalink
doc: add playwright to install section in readme (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
vdusek authored May 30, 2024
1 parent 2d2a050 commit 598a266
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,24 @@ If you plan to use `BeautifulSoupCrawler`, install `crawlee` with `beautifulsoup
pip install 'crawlee[beautifulsoup]'
```

If you plan to use `PlaywrightCrawler`, install `crawlee` with the `playwright` extra:

```bash
pip install 'crawlee[playwright]'
```

Then, install the Playwright dependencies:

```bash
playwright install
```

You can install multiple extras at once by using a comma as a separator:

```bash
pip install 'crawlee[beautifulsoup,playwright]'
```

## Features

- Unified interface for **HTTP and headless browser** crawling.
Expand Down

0 comments on commit 598a266

Please sign in to comment.