Skip to content

Commit e240231

Browse files
committed
add scrapy-playwright
1 parent 9f4d8a1 commit e240231

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ARG SCRAPY_SPLASH_VERSION=0.9.0
1313
ARG SCRAPYRT_VERSION=v0.15.0
1414
ARG SPIDERMON_VERSION=1.20.0
1515
ARG SCRAPY_POET_VERSION=0.16.0
16+
ARG SCRAPY_PLAYWRIGHT_VERSION=v0.0.32
1617

1718
SHELL ["/bin/bash", "-c"]
1819

@@ -47,6 +48,7 @@ RUN set -xe \
4748
https://github.com/scrapinghub/scrapyrt/archive/refs/tags/$SCRAPYRT_VERSION.zip \
4849
https://github.com/scrapinghub/spidermon/archive/refs/tags/$SPIDERMON_VERSION.zip \
4950
https://github.com/scrapinghub/scrapy-poet/archive/refs/tags/$SCRAPY_POET_VERSION.zip \
51+
https://github.com/scrapy-plugins/scrapy-playwright/archive/refs/tags/$SCRAPY_PLAYWRIGHT_VERSION.zip \
5052
&& mkdir -p /etc/bash_completion.d \
5153
&& curl -sSL https://github.com/scrapy/scrapy/raw/master/extras/scrapy_bash_completion -o /etc/bash_completion.d/scrapy_bash_completion \
5254
&& echo 'source /etc/bash_completion.d/scrapy_bash_completion' >> /root/.bashrc \

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ utility which allows you to deploy your project to a Scrapyd server.
2222

2323
[scrapy-poet][7] is the web-poet Page Object pattern implementation for Scrapy.
2424

25-
This image is based on `debian:bookworm`, 7 latest stable python packages are installed:
25+
This image is based on `debian:bookworm`, 8 latest stable python packages are installed:
2626

2727
- scrapy==2.11.0
2828
- scrapyd==1.4.3
@@ -31,10 +31,11 @@ This image is based on `debian:bookworm`, 7 latest stable python packages are in
3131
- scrapyrt==v0.15.0
3232
- spidermon==1.20.0
3333
- scrapy-poet==0.16.0
34+
- scrapy-playwright==v0.0.32
3435

3536
```bash
3637
# fetch latest versions
37-
echo "scrapy scrapyd scrapyd-client scrapy-splash scrapyrt spidermon scrapy-poet" |
38+
echo "scrapy scrapyd scrapyd-client scrapy-splash scrapyrt spidermon scrapy-poet scrapy-playwright" |
3839
xargs -n1 pip --disable-pip-version-check index versions 2>/dev/null |
3940
grep -v Available
4041
```

0 commit comments

Comments
 (0)