Skip to content

Commit c6c7d98

Browse files
committed
Readme: expand reporting issues section
1 parent 421ac90 commit c6c7d98

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -982,6 +982,30 @@ async def main():
982982
asyncio.run(main())
983983
```
984984

985+
### Software versions
986+
987+
Be sure to include which versions of Scrapy and scrapy-playwright you are using:
988+
989+
```
990+
$ python -c "import scrapy_playwright; print(scrapy_playwright.__version__)"
991+
0.0.34
992+
```
993+
994+
```
995+
$ scrapy version -v
996+
Scrapy : 2.11.1
997+
lxml : 5.1.0.0
998+
libxml2 : 2.12.3
999+
cssselect : 1.2.0
1000+
parsel : 1.8.1
1001+
w3lib : 2.1.2
1002+
Twisted : 23.10.0
1003+
Python : 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0]
1004+
pyOpenSSL : 24.0.0 (OpenSSL 3.2.1 30 Jan 2024)
1005+
cryptography : 42.0.5
1006+
Platform : Linux-6.5.0-35-generic-x86_64-with-glibc2.35
1007+
```
1008+
9851009
### Reproducible code example
9861010

9871011
When opening an issue please include a
@@ -1013,6 +1037,12 @@ class ExampleSpider(scrapy.Spider):
10131037
)
10141038
```
10151039

1040+
### Logs
1041+
1042+
Logs for spider jobs displaying the issue in detail are extremely useful
1043+
understanding possible bugs. Include lines before and after the problem,
1044+
not just isolated tracebacks.
1045+
10161046

10171047
## Frequently Asked Questions
10181048

0 commit comments

Comments
 (0)