You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This integration uses [`pure_eval`](https://github.com/alexmojaki/pure_eval) to safely evaluate additional expressions in the source code and display their values alongside other local variables.
9
+
10
+
**This integration is experimental.** It may be removed in minor versions.
11
+
12
+
Python version 3.5 or greater is required.
13
+
14
+
To install dependencies, either `pip install 'sentry-sdk[pure_eval]'` or `pip install pure_eval executing asttokens`.
15
+
16
+
Add ``PureEvalIntegration()`` to your ``integrations`` list:
17
+
18
+
```python
19
+
import sentry_sdk
20
+
from sentry_sdk.integrations.pure_eval import PureEvalIntegration
0 commit comments