Skip to content
master
Switch branches/tags
Go to file
Code

Latest commit

* Auto enabled auto session tracking

* Moved auto_session_tracking outof expeirmental features and added it by default

* fix: Formatting

* Fixed type error

* Removed auto_session_tracking from from Experiment type

* Removed redundant default

* Auto detection of session mode when auto_session_tracking is enabled

* fix: Formatting

* Added test that ensures session mode is flips from applicatoin to request in WSGI handler

* New line at end of file

* Linting fixes

* Added default for session_mode in auto_session_tracking

* Added defaults to session_mode to Session class

* Fixed failing test due to changes in WSGI handler tracking requests:

* Reordered param to the end

* fix: Formatting

* Modified flask test to match request mode sessions

* Removed redundant typing Union

Co-authored-by: sentry-bot <markus+ghbot@sentry.io>
1279eec

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
Feb 18, 2021
Feb 18, 2021

README.md

sentry-python - Sentry SDK for Python

Build Status PyPi page link -- version Discord

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("https://mydsn@sentry.io/123")

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

raise ValueError()  # Will also create an event.

Contributing to the SDK

Please refer to CONTRIBUTING.md.

License

Licensed under the BSD license, see LICENSE