Skip to main content

Scrapy extension for integration of Sentry SDK to Scrapy projects

Project description

scrapy-sentry-sdk

A Scrapy extension for integration of Sentry SDK to Scrapy projects.

This package provides a Scrapy extension for convenient initialization of Sentry SDK.

Installation

pip install scrapy_sentry_sdk

Usage

To use the extension add the following to you project settings.py:

# Send exceptions to Sentry
# replace SENTRY_DSN by you own DSN
SENTRY_DSN = "XXXXXXXXXX"

# Optionally, additional configuration options can be provided
SENTRY_CLIENT_OPTIONS = {
    "release": "you-project@version"  # these correspond to the sentry_sdk.init kwargs
}

# Enable or disable extensions
# See https://doc.scrapy.org/en/latest/topics/extensions.html
EXTENSIONS = {
    'scrapy_sentry_sdk.extensions.SentryLogging': 1,  # Load SentryLogging extension before others
}

Configuration

Currently, this extension uses two Scrapy settings keys:

  • SENTRY_DSN: your project DSN (string, required)
  • SENTRY_CLIENT_OPTIONS: additional SDK options (dict, optional)

More details on configuring the SDK can be found in Sentry documentation.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scrapy_sentry_sdk-0.4.1.tar.gz (2.1 kB view hashes)

Uploaded Source

Built Distribution

scrapy_sentry_sdk-0.4.1-py3-none-any.whl (2.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page