8000 GitHub - getsentry/sentry-python at 448078e4787b6aac29fae7a2b5d01e11182fe50f
[go: up one dir, main page]

Skip to content

getsentry/sentry-python

Repository files navigation

sentry-python - Sentry SDK for Python

Build Status PyPi page link -- version

This is the next line of the Python SDK for Sentry, intended to replace the raven package on PyPI.

from sentry_sdk import init, capture_message

init("mydsn@sentry.io/123")

capture_message("Hello World")  # Will create an event.

raise ValueError()  # Will also create an event.

To learn more about how to use the SDK:

Are you coming from raven-python?

To learn about internals:

License

Licensed under the BSD license, see LICENSE

0