Current Path: > > opt > alt > python38 > lib > > python3.8 > site-packages > sentry_sdk
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
integrations | Directory | - | - | |
__init__.py | File | 1437 bytes | April 05 2019 23:15:16. | |
_compat.py | File | 2226 bytes | April 05 2019 23:15:16. | |
api.py | File | 2884 bytes | April 05 2019 23:15:16. | |
client.py | File | 8599 bytes | April 05 2019 23:15:16. | |
consts.py | File | 2258 bytes | April 05 2019 23:15:16. | |
debug.py | File | 1037 bytes | April 05 2019 23:15:16. | |
hub.py | File | 13023 bytes | April 05 2019 23:15:16. | |
scope.py | File | 7193 bytes | April 05 2019 23:15:16. | |
transport.py | File | 6951 bytes | April 05 2019 23:15:16. | |
utils.py | File | 27563 bytes | April 05 2019 23:15:16. | |
worker.py | File | 3549 bytes | April 05 2019 23:15:16. |
""" The Sentry SDK is the new-style SDK for [sentry.io](https://sentry.io/). It implements the unified API that all modern SDKs follow for Python 2.7 and 3.5 or later. The user documentation can be found on [docs.sentry.io](https://docs.sentry.io/). ## Quickstart The only thing to get going is to call `sentry_sdk.init()`. When not passed any arguments the default options are used and the DSN is picked up from the `SENTRY_DSN` environment variable. Otherwise the DSN can be passed with the `dsn` keyword or first argument. import sentry_sdk sentry_sdk.init() This initializes the default integrations which will automatically pick up any uncaught exceptions. Additionally you can report arbitrary other exceptions: try: my_failing_function() except Exception as e: sentry_sdk.capture_exception(e) """ from sentry_sdk.hub import Hub, init from sentry_sdk.scope import Scope from sentry_sdk.transport import Transport, HttpTransport from sentry_sdk.client import Client from sentry_sdk.api import * # noqa from sentry_sdk.api import __all__ as api_all from sentry_sdk.consts import VERSION # noqa __all__ = api_all + [ # noqa "Hub", "Scope", "Client", "Transport", "HttpTransport", "init", "integrations", ] # Initialize the debug support after everything is loaded from sentry_sdk.debug import init_debug_support init_debug_support() del init_debug_support
SILENT KILLER Tool