A simple Scrapy extension that logs spider errors to your Sentry account, helping you monitor and fix issues with your Scrapy spiders efficiently. 🚀
Note: While this extension captures errors from Scrapy spiders, it does not capture errors elsewhere in Scrapy's operation (e.g., the Scrapy pipeline).
pip install city-scrapers-sentry
Add SENTRY_DSN
and scrapy_sentry_errors.extensions.Errors
extension to your Scrapy project's settings.py
file:
Example:
# sentry dsn
SENTRY_DSN = 'http://public:secret@example.com/1'
EXTENSIONS = {
"scrapy_sentry_errors.extensions.Errors": 10,
}
Sentry spider errors will be logged to your Sentry account.
-
Clone this repository.
-
Run the dev setup script and follow the prompts. This will create a virtual environment and a
.env
file with your Sentry DSN:
bash ./scripts/dev_setup.sh
- Simulate a failed spider run using the example Scrapy project in this repo:
pipenv run example
Run the tests with:
pipenv run test
-
Bump the version number in
pyproject.toml
-
Create a new build with:
pipenv run build
- Publish the build to PyPI with:
pipenv run publish
We welcome contributions of all kinds from anyone. Here are some ways you can contribute:
- Reporting Bugs: If you find a bug, please report it by opening an issue. Be sure to provide a detailed description of the bug and, if possible, steps to reproduce it.
- Suggesting Enhancements: Have an idea for a new feature or think something could be improved? Let us know by opening an issue.
- Code Contributions: Feel free to fork the repository and submit pull requests. Whether it's fixing a bug, adding a feature, or improving documentation, your help is welcome.
This project began as a fork of scrapy-sentry, which was developed by Jordi Llonch. We are grateful for his work and those of other contributors.