sentry-sdk 0.7.5__py2.py3-none-any.whl → 2.46.0__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sentry_sdk/__init__.py +48 -30
- sentry_sdk/_compat.py +74 -61
- sentry_sdk/_init_implementation.py +84 -0
- sentry_sdk/_log_batcher.py +172 -0
- sentry_sdk/_lru_cache.py +47 -0
- sentry_sdk/_metrics_batcher.py +167 -0
- sentry_sdk/_queue.py +289 -0
- sentry_sdk/_types.py +338 -0
- sentry_sdk/_werkzeug.py +98 -0
- sentry_sdk/ai/__init__.py +7 -0
- sentry_sdk/ai/monitoring.py +137 -0
- sentry_sdk/ai/utils.py +144 -0
- sentry_sdk/api.py +496 -80
- sentry_sdk/attachments.py +75 -0
- sentry_sdk/client.py +1023 -103
- sentry_sdk/consts.py +1438 -66
- sentry_sdk/crons/__init__.py +10 -0
- sentry_sdk/crons/api.py +62 -0
- sentry_sdk/crons/consts.py +4 -0
- sentry_sdk/crons/decorator.py +135 -0
- sentry_sdk/debug.py +15 -14
- sentry_sdk/envelope.py +369 -0
- sentry_sdk/feature_flags.py +71 -0
- sentry_sdk/hub.py +611 -280
- sentry_sdk/integrations/__init__.py +276 -49
- sentry_sdk/integrations/_asgi_common.py +108 -0
- sentry_sdk/integrations/_wsgi_common.py +180 -44
- sentry_sdk/integrations/aiohttp.py +291 -42
- sentry_sdk/integrations/anthropic.py +439 -0
- sentry_sdk/integrations/argv.py +9 -8
- sentry_sdk/integrations/ariadne.py +161 -0
- sentry_sdk/integrations/arq.py +247 -0
- sentry_sdk/integrations/asgi.py +341 -0
- sentry_sdk/integrations/asyncio.py +144 -0
- sentry_sdk/integrations/asyncpg.py +208 -0
- sentry_sdk/integrations/atexit.py +17 -10
- sentry_sdk/integrations/aws_lambda.py +377 -62
- sentry_sdk/integrations/beam.py +176 -0
- sentry_sdk/integrations/boto3.py +137 -0
- sentry_sdk/integrations/bottle.py +221 -0
- sentry_sdk/integrations/celery/__init__.py +529 -0
- sentry_sdk/integrations/celery/beat.py +293 -0
- sentry_sdk/integrations/celery/utils.py +43 -0
- sentry_sdk/integrations/chalice.py +134 -0
- sentry_sdk/integrations/clickhouse_driver.py +177 -0
- sentry_sdk/integrations/cloud_resource_context.py +280 -0
- sentry_sdk/integrations/cohere.py +274 -0
- sentry_sdk/integrations/dedupe.py +48 -14
- sentry_sdk/integrations/django/__init__.py +584 -191
- sentry_sdk/integrations/django/asgi.py +245 -0
- sentry_sdk/integrations/django/caching.py +204 -0
- sentry_sdk/integrations/django/middleware.py +187 -0
- sentry_sdk/integrations/django/signals_handlers.py +91 -0
- sentry_sdk/integrations/django/templates.py +79 -5
- sentry_sdk/integrations/django/transactions.py +49 -22
- sentry_sdk/integrations/django/views.py +96 -0
- sentry_sdk/integrations/dramatiq.py +226 -0
- sentry_sdk/integrations/excepthook.py +50 -13
- sentry_sdk/integrations/executing.py +67 -0
- sentry_sdk/integrations/falcon.py +272 -0
- sentry_sdk/integrations/fastapi.py +141 -0
- sentry_sdk/integrations/flask.py +142 -88
- sentry_sdk/integrations/gcp.py +239 -0
- sentry_sdk/integrations/gnu_backtrace.py +99 -0
- sentry_sdk/integrations/google_genai/__init__.py +301 -0
- sentry_sdk/integrations/google_genai/consts.py +16 -0
- sentry_sdk/integrations/google_genai/streaming.py +155 -0
- sentry_sdk/integrations/google_genai/utils.py +576 -0
- sentry_sdk/integrations/gql.py +162 -0
- sentry_sdk/integrations/graphene.py +151 -0
- sentry_sdk/integrations/grpc/__init__.py +168 -0
- sentry_sdk/integrations/grpc/aio/__init__.py +7 -0
- sentry_sdk/integrations/grpc/aio/client.py +95 -0
- sentry_sdk/integrations/grpc/aio/server.py +100 -0
- sentry_sdk/integrations/grpc/client.py +91 -0
- sentry_sdk/integrations/grpc/consts.py +1 -0
- sentry_sdk/integrations/grpc/server.py +66 -0
- sentry_sdk/integrations/httpx.py +178 -0
- sentry_sdk/integrations/huey.py +174 -0
- sentry_sdk/integrations/huggingface_hub.py +378 -0
- sentry_sdk/integrations/langchain.py +1132 -0
- sentry_sdk/integrations/langgraph.py +337 -0
- sentry_sdk/integrations/launchdarkly.py +61 -0
- sentry_sdk/integrations/litellm.py +287 -0
- sentry_sdk/integrations/litestar.py +315 -0
- sentry_sdk/integrations/logging.py +307 -96
- sentry_sdk/integrations/loguru.py +213 -0
- sentry_sdk/integrations/mcp.py +566 -0
- sentry_sdk/integrations/modules.py +14 -31
- sentry_sdk/integrations/openai.py +725 -0
- sentry_sdk/integrations/openai_agents/__init__.py +61 -0
- sentry_sdk/integrations/openai_agents/consts.py +1 -0
- sentry_sdk/integrations/openai_agents/patches/__init__.py +5 -0
- sentry_sdk/integrations/openai_agents/patches/agent_run.py +140 -0
- sentry_sdk/integrations/openai_agents/patches/error_tracing.py +77 -0
- sentry_sdk/integrations/openai_agents/patches/models.py +50 -0
- sentry_sdk/integrations/openai_agents/patches/runner.py +45 -0
- sentry_sdk/integrations/openai_agents/patches/tools.py +77 -0
- sentry_sdk/integrations/openai_agents/spans/__init__.py +5 -0
- sentry_sdk/integrations/openai_agents/spans/agent_workflow.py +21 -0
- sentry_sdk/integrations/openai_agents/spans/ai_client.py +42 -0
- sentry_sdk/integrations/openai_agents/spans/execute_tool.py +48 -0
- sentry_sdk/integrations/openai_agents/spans/handoff.py +19 -0
- sentry_sdk/integrations/openai_agents/spans/invoke_agent.py +86 -0
- sentry_sdk/integrations/openai_agents/utils.py +199 -0
- sentry_sdk/integrations/openfeature.py +35 -0
- sentry_sdk/integrations/opentelemetry/__init__.py +7 -0
- sentry_sdk/integrations/opentelemetry/consts.py +5 -0
- sentry_sdk/integrations/opentelemetry/integration.py +58 -0
- sentry_sdk/integrations/opentelemetry/propagator.py +117 -0
- sentry_sdk/integrations/opentelemetry/span_processor.py +391 -0
- sentry_sdk/integrations/otlp.py +82 -0
- sentry_sdk/integrations/pure_eval.py +141 -0
- sentry_sdk/integrations/pydantic_ai/__init__.py +47 -0
- sentry_sdk/integrations/pydantic_ai/consts.py +1 -0
- sentry_sdk/integrations/pydantic_ai/patches/__init__.py +4 -0
- sentry_sdk/integrations/pydantic_ai/patches/agent_run.py +215 -0
- sentry_sdk/integrations/pydantic_ai/patches/graph_nodes.py +110 -0
- sentry_sdk/integrations/pydantic_ai/patches/model_request.py +40 -0
- sentry_sdk/integrations/pydantic_ai/patches/tools.py +98 -0
- sentry_sdk/integrations/pydantic_ai/spans/__init__.py +3 -0
- sentry_sdk/integrations/pydantic_ai/spans/ai_client.py +246 -0
- sentry_sdk/integrations/pydantic_ai/spans/execute_tool.py +49 -0
- sentry_sdk/integrations/pydantic_ai/spans/invoke_agent.py +112 -0
- sentry_sdk/integrations/pydantic_ai/utils.py +223 -0
- sentry_sdk/integrations/pymongo.py +214 -0
- sentry_sdk/integrations/pyramid.py +112 -68
- sentry_sdk/integrations/quart.py +237 -0
- sentry_sdk/integrations/ray.py +165 -0
- sentry_sdk/integrations/redis/__init__.py +48 -0
- sentry_sdk/integrations/redis/_async_common.py +116 -0
- sentry_sdk/integrations/redis/_sync_common.py +119 -0
- sentry_sdk/integrations/redis/consts.py +19 -0
- sentry_sdk/integrations/redis/modules/__init__.py +0 -0
- sentry_sdk/integrations/redis/modules/caches.py +118 -0
- sentry_sdk/integrations/redis/modules/queries.py +65 -0
- sentry_sdk/integrations/redis/rb.py +32 -0
- sentry_sdk/integrations/redis/redis.py +69 -0
- sentry_sdk/integrations/redis/redis_cluster.py +107 -0
- sentry_sdk/integrations/redis/redis_py_cluster_legacy.py +50 -0
- sentry_sdk/integrations/redis/utils.py +148 -0
- sentry_sdk/integrations/rq.py +95 -37
- sentry_sdk/integrations/rust_tracing.py +284 -0
- sentry_sdk/integrations/sanic.py +294 -123
- sentry_sdk/integrations/serverless.py +48 -19
- sentry_sdk/integrations/socket.py +96 -0
- sentry_sdk/integrations/spark/__init__.py +4 -0
- sentry_sdk/integrations/spark/spark_driver.py +316 -0
- sentry_sdk/integrations/spark/spark_worker.py +116 -0
- sentry_sdk/integrations/sqlalchemy.py +142 -0
- sentry_sdk/integrations/starlette.py +737 -0
- sentry_sdk/integrations/starlite.py +292 -0
- sentry_sdk/integrations/statsig.py +37 -0
- sentry_sdk/integrations/stdlib.py +235 -29
- sentry_sdk/integrations/strawberry.py +394 -0
- sentry_sdk/integrations/sys_exit.py +70 -0
- sentry_sdk/integrations/threading.py +158 -28
- sentry_sdk/integrations/tornado.py +84 -52
- sentry_sdk/integrations/trytond.py +50 -0
- sentry_sdk/integrations/typer.py +60 -0
- sentry_sdk/integrations/unleash.py +33 -0
- sentry_sdk/integrations/unraisablehook.py +53 -0
- sentry_sdk/integrations/wsgi.py +201 -119
- sentry_sdk/logger.py +96 -0
- sentry_sdk/metrics.py +81 -0
- sentry_sdk/monitor.py +120 -0
- sentry_sdk/profiler/__init__.py +49 -0
- sentry_sdk/profiler/continuous_profiler.py +730 -0
- sentry_sdk/profiler/transaction_profiler.py +839 -0
- sentry_sdk/profiler/utils.py +195 -0
- sentry_sdk/py.typed +0 -0
- sentry_sdk/scope.py +1713 -85
- sentry_sdk/scrubber.py +177 -0
- sentry_sdk/serializer.py +405 -0
- sentry_sdk/session.py +177 -0
- sentry_sdk/sessions.py +275 -0
- sentry_sdk/spotlight.py +242 -0
- sentry_sdk/tracing.py +1486 -0
- sentry_sdk/tracing_utils.py +1236 -0
- sentry_sdk/transport.py +806 -134
- sentry_sdk/types.py +52 -0
- sentry_sdk/utils.py +1625 -465
- sentry_sdk/worker.py +54 -25
- sentry_sdk-2.46.0.dist-info/METADATA +268 -0
- sentry_sdk-2.46.0.dist-info/RECORD +189 -0
- {sentry_sdk-0.7.5.dist-info → sentry_sdk-2.46.0.dist-info}/WHEEL +1 -1
- sentry_sdk-2.46.0.dist-info/entry_points.txt +2 -0
- sentry_sdk-2.46.0.dist-info/licenses/LICENSE +21 -0
- sentry_sdk/integrations/celery.py +0 -119
- sentry_sdk-0.7.5.dist-info/LICENSE +0 -9
- sentry_sdk-0.7.5.dist-info/METADATA +0 -36
- sentry_sdk-0.7.5.dist-info/RECORD +0 -39
- {sentry_sdk-0.7.5.dist-info → sentry_sdk-2.46.0.dist-info}/top_level.txt +0 -0
|
@@ -1,119 +0,0 @@
|
|
|
1
|
-
from __future__ import absolute_import
|
|
2
|
-
|
|
3
|
-
import sys
|
|
4
|
-
|
|
5
|
-
from celery.exceptions import SoftTimeLimitExceeded, Retry # type: ignore
|
|
6
|
-
|
|
7
|
-
from sentry_sdk.hub import Hub
|
|
8
|
-
from sentry_sdk.utils import capture_internal_exceptions, event_from_exception
|
|
9
|
-
from sentry_sdk._compat import reraise
|
|
10
|
-
from sentry_sdk.integrations import Integration
|
|
11
|
-
from sentry_sdk.integrations.logging import ignore_logger
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class CeleryIntegration(Integration):
|
|
15
|
-
identifier = "celery"
|
|
16
|
-
|
|
17
|
-
@staticmethod
|
|
18
|
-
def setup_once():
|
|
19
|
-
import celery.app.trace as trace # type: ignore
|
|
20
|
-
|
|
21
|
-
old_build_tracer = trace.build_tracer
|
|
22
|
-
|
|
23
|
-
def sentry_build_tracer(name, task, *args, **kwargs):
|
|
24
|
-
# Need to patch both methods because older celery sometimes
|
|
25
|
-
# short-circuits to task.run if it thinks it's safe.
|
|
26
|
-
task.__call__ = _wrap_task_call(task.__call__)
|
|
27
|
-
task.run = _wrap_task_call(task.run)
|
|
28
|
-
return _wrap_tracer(task, old_build_tracer(name, task, *args, **kwargs))
|
|
29
|
-
|
|
30
|
-
trace.build_tracer = sentry_build_tracer
|
|
31
|
-
|
|
32
|
-
# This logger logs every status of every task that ran on the worker.
|
|
33
|
-
# Meaning that every task's breadcrumbs are full of stuff like "Task
|
|
34
|
-
# <foo> raised unexpected <bar>".
|
|
35
|
-
ignore_logger("celery.worker.job")
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
def _wrap_tracer(task, f):
|
|
39
|
-
# Need to wrap tracer for pushing the scope before prerun is sent, and
|
|
40
|
-
# popping it after postrun is sent.
|
|
41
|
-
#
|
|
42
|
-
# This is the reason we don't use signals for hooking in the first place.
|
|
43
|
-
# Also because in Celery 3, signal dispatch returns early if one handler
|
|
44
|
-
# crashes.
|
|
45
|
-
def _inner(*args, **kwargs):
|
|
46
|
-
hub = Hub.current
|
|
47
|
-
if hub.get_integration(CeleryIntegration) is None:
|
|
48
|
-
return f(*args, **kwargs)
|
|
49
|
-
|
|
50
|
-
with hub.push_scope() as scope:
|
|
51
|
-
scope._name = "celery"
|
|
52
|
-
scope.add_event_processor(_make_event_processor(task, *args, **kwargs))
|
|
53
|
-
|
|
54
|
-
return f(*args, **kwargs)
|
|
55
|
-
|
|
56
|
-
return _inner
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
def _wrap_task_call(f):
|
|
60
|
-
# Need to wrap task call because the exception is caught before we get to
|
|
61
|
-
# see it. Also celery's reported stacktrace is untrustworthy.
|
|
62
|
-
def _inner(*args, **kwargs):
|
|
63
|
-
try:
|
|
64
|
-
return f(*args, **kwargs)
|
|
65
|
-
except Exception:
|
|
66
|
-
reraise(*_capture_exception())
|
|
67
|
-
|
|
68
|
-
return _inner
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
def _make_event_processor(task, uuid, args, kwargs, request=None):
|
|
72
|
-
def event_processor(event, hint):
|
|
73
|
-
with capture_internal_exceptions():
|
|
74
|
-
event["transaction"] = task.name
|
|
75
|
-
|
|
76
|
-
with capture_internal_exceptions():
|
|
77
|
-
extra = event.setdefault("extra", {})
|
|
78
|
-
extra["celery-job"] = {
|
|
79
|
-
"task_name": task.name,
|
|
80
|
-
"args": args,
|
|
81
|
-
"kwargs": kwargs,
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
if "exc_info" in hint:
|
|
85
|
-
with capture_internal_exceptions():
|
|
86
|
-
if isinstance(hint["exc_info"][1], Retry):
|
|
87
|
-
return None
|
|
88
|
-
|
|
89
|
-
if hasattr(task, "throws") and isinstance(
|
|
90
|
-
hint["exc_info"][1], task.throws
|
|
91
|
-
):
|
|
92
|
-
return None
|
|
93
|
-
|
|
94
|
-
with capture_internal_exceptions():
|
|
95
|
-
if issubclass(hint["exc_info"][0], SoftTimeLimitExceeded):
|
|
96
|
-
event["fingerprint"] = [
|
|
97
|
-
"celery",
|
|
98
|
-
"SoftTimeLimitExceeded",
|
|
99
|
-
getattr(task, "name", task),
|
|
100
|
-
]
|
|
101
|
-
|
|
102
|
-
return event
|
|
103
|
-
|
|
104
|
-
return event_processor
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
def _capture_exception():
|
|
108
|
-
hub = Hub.current
|
|
109
|
-
exc_info = sys.exc_info()
|
|
110
|
-
|
|
111
|
-
if hub.get_integration(CeleryIntegration) is not None:
|
|
112
|
-
event, hint = event_from_exception(
|
|
113
|
-
exc_info,
|
|
114
|
-
client_options=hub.client.options,
|
|
115
|
-
mechanism={"type": "celery", "handled": False},
|
|
116
|
-
)
|
|
117
|
-
hub.capture_event(event, hint=hint)
|
|
118
|
-
|
|
119
|
-
return exc_info
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
Copyright (c) 2018 Sentry (https://sentry.io) and individual contributors.
|
|
2
|
-
All rights reserved.
|
|
3
|
-
|
|
4
|
-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
5
|
-
|
|
6
|
-
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
7
|
-
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
8
|
-
|
|
9
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: sentry-sdk
|
|
3
|
-
Version: 0.7.5
|
|
4
|
-
Summary: Python client for Sentry (https://getsentry.com)
|
|
5
|
-
Home-page: https://github.com/getsentry/sentry-python
|
|
6
|
-
Author: Sentry Team and Contributors
|
|
7
|
-
Author-email: hello@getsentry.com
|
|
8
|
-
License: BSD
|
|
9
|
-
Platform: UNKNOWN
|
|
10
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
-
Classifier: Environment :: Web Environment
|
|
12
|
-
Classifier: Intended Audience :: Developers
|
|
13
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
14
|
-
Classifier: Operating System :: OS Independent
|
|
15
|
-
Classifier: Programming Language :: Python
|
|
16
|
-
Classifier: Programming Language :: Python :: 2
|
|
17
|
-
Classifier: Programming Language :: Python :: 2.7
|
|
18
|
-
Classifier: Programming Language :: Python :: 3
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.4
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.5
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
23
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
-
Requires-Dist: urllib3
|
|
25
|
-
Requires-Dist: certifi
|
|
26
|
-
Provides-Extra: flask
|
|
27
|
-
Requires-Dist: flask (>=0.8) ; extra == 'flask'
|
|
28
|
-
Requires-Dist: blinker (>=1.1) ; extra == 'flask'
|
|
29
|
-
|
|
30
|
-
Sentry-Python - Sentry SDK for Python
|
|
31
|
-
=====================================
|
|
32
|
-
|
|
33
|
-
**Sentry-Python is an SDK for Sentry.** Check out `GitHub
|
|
34
|
-
<https://github.com/getsentry/sentry-python>`_ to find out more.
|
|
35
|
-
|
|
36
|
-
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
sentry_sdk/__init__.py,sha256=jXWBE1y7JwVaSZLq6WP28yt3Mmy7OkP8_F5DsMxT8VQ,1437
|
|
2
|
-
sentry_sdk/_compat.py,sha256=HTAvMm4UL6ccsGjnm36JXF2ORLyy-y2cWFWRxwEh8sg,2226
|
|
3
|
-
sentry_sdk/api.py,sha256=drlZ9ySY1VMlQhnlNupLR29ULDV3kanQDzVxOk9O8m8,2683
|
|
4
|
-
sentry_sdk/client.py,sha256=MhB_Y1FNacfUWyGOc62ZtnuAT6hkwp8X3MV26Q6_aiM,8599
|
|
5
|
-
sentry_sdk/consts.py,sha256=2Qd6bsyWQM4O6HT1lC8NjWlIGsT0BQUrmmnpieGBgTk,2257
|
|
6
|
-
sentry_sdk/debug.py,sha256=T0OO3L7fNYCUEHVxDpvgBhjLgzKeOzSu2duMW7E0jPM,1037
|
|
7
|
-
sentry_sdk/hub.py,sha256=yqcuHIU--ZTwVM2DImkeNcTubrw0tmJ4dGUGm3f283w,12902
|
|
8
|
-
sentry_sdk/scope.py,sha256=b38pDJdeu8W1eG9N0W_KXiEWUc3ZGxKUeUR5GnudocQ,7060
|
|
9
|
-
sentry_sdk/transport.py,sha256=ctgpgtsAQpCAPyYg_XBXOkHvtFo9p0ur0SB_GsSMESE,6851
|
|
10
|
-
sentry_sdk/utils.py,sha256=1DsJlLq9PTeEjdgxQZxEbD8ODZ31nOzxw4SkPSyYbhw,25733
|
|
11
|
-
sentry_sdk/worker.py,sha256=fAuJmAoXFx77S-6lLJfpOtSBQPrIKCexpsi2bhqirns,3549
|
|
12
|
-
sentry_sdk/integrations/__init__.py,sha256=MbSy6__Amaf66hKX_kP_YcqTa15RsGwEAE_VMTPdKW0,4236
|
|
13
|
-
sentry_sdk/integrations/_wsgi_common.py,sha256=_yyf2Hx1QrdYF31Jv751x-mgHAgma-SgPrsskXlZK0k,3654
|
|
14
|
-
sentry_sdk/integrations/aiohttp.py,sha256=b2-ImHBenk-SzCno7O41ZtqMotWxCOhbW-2SRRfTO8w,3551
|
|
15
|
-
sentry_sdk/integrations/argv.py,sha256=yWXh1dFWVExMfjosBjZvPPPP1qtORfaujMfAMT8y_g0,894
|
|
16
|
-
sentry_sdk/integrations/atexit.py,sha256=8c9qwo3ZRggbQQnjedYFa4FippmuRzQX5WSSBaRZ-VA,1490
|
|
17
|
-
sentry_sdk/integrations/aws_lambda.py,sha256=Sdb2nRZdc3X75OJJrpz-PM63V4BKHyQiCtXD9qYgzfk,6716
|
|
18
|
-
sentry_sdk/integrations/celery.py,sha256=BfZRCNHv1eXmvl7UZcn62FO3wm9bEbkuqLRMpH4jYmQ,3859
|
|
19
|
-
sentry_sdk/integrations/dedupe.py,sha256=nnCJ9L6JmquXOG39lTElIJTz_lnWqM5mkSEzdceZgyA,1085
|
|
20
|
-
sentry_sdk/integrations/excepthook.py,sha256=294XsnVKcwMlA8bpiVPjA0yYGtuJc1IR61U0oQo1TOw,1335
|
|
21
|
-
sentry_sdk/integrations/flask.py,sha256=Vd-o3M8tK8Mp0WELs4TbGjZPAOtgB5TX9sF6mtyOsKM,7152
|
|
22
|
-
sentry_sdk/integrations/logging.py,sha256=PzGeFSqDPKsqgwP2UfYh2fz3il3Wt34pYZQYghMByss,6019
|
|
23
|
-
sentry_sdk/integrations/modules.py,sha256=-GC7pOzXSdTfNEvmPy8QuzhOgyk-VL_navkObPGEdbY,1239
|
|
24
|
-
sentry_sdk/integrations/pyramid.py,sha256=gXGNNe0XKhyTNoc5Bp1EB_vbXIKYx1Ou9EGXHEgMYGo,5914
|
|
25
|
-
sentry_sdk/integrations/rq.py,sha256=a86OtlEpmfCbe5VBUuJ2YOJibgegIuKxtY57t09rIjo,3231
|
|
26
|
-
sentry_sdk/integrations/sanic.py,sha256=WY89fn2MB4AMvAQmAIPAZMf4vtW7qHnvEkDaODbERAU,6497
|
|
27
|
-
sentry_sdk/integrations/serverless.py,sha256=fL3Qi3fd7IAV72cNaQnY1t7IPywL4W5eJ_sbHCjN7iE,1127
|
|
28
|
-
sentry_sdk/integrations/stdlib.py,sha256=H1vXlYRPffGe5yKuw-wMNcNB4teofEy2fTLk6UiQI08,1869
|
|
29
|
-
sentry_sdk/integrations/threading.py,sha256=JzCACLnNHkc0TJp0CcyTR3xrWhaKrWaGMuapVv7aHOg,1597
|
|
30
|
-
sentry_sdk/integrations/tornado.py,sha256=FaXB6d_CizXsNmYyYx8TREBMKKz1rCjgB3XTosExhOA,6222
|
|
31
|
-
sentry_sdk/integrations/wsgi.py,sha256=0RGrEplXPaWE-CSvK75hICr8fsqaZZ9sq_aNy7qhKjY,7253
|
|
32
|
-
sentry_sdk/integrations/django/__init__.py,sha256=1pV702u9O4TzsISWz4Qa8pxpVIevVI1ePQK0C5c_ic0,11037
|
|
33
|
-
sentry_sdk/integrations/django/templates.py,sha256=M-eaxlszwxieagP6c6fOzJS9fcn0GTdUX82CdydUM94,3202
|
|
34
|
-
sentry_sdk/integrations/django/transactions.py,sha256=7Qg9xhn8Rn5GzYq7hkP5OOjcxR21lBO7SvMxADC6GIA,4131
|
|
35
|
-
sentry_sdk-0.7.5.dist-info/LICENSE,sha256=WUBNTIVOV5CX1Bv8zVAGr96dbXDmRs9VB0zb_q1ezxw,1330
|
|
36
|
-
sentry_sdk-0.7.5.dist-info/METADATA,sha256=VcQ4J4um1xEOq6hN7WY_TQmicaI1mxfXFH4hBBFXsEs,1340
|
|
37
|
-
sentry_sdk-0.7.5.dist-info/WHEEL,sha256=HX-v9-noUkyUoxyZ1PMSuS7auUxDAR4VBdoYLqD0xws,110
|
|
38
|
-
sentry_sdk-0.7.5.dist-info/top_level.txt,sha256=XrQz30XE9FKXSY_yGLrd9bsv2Rk390GTDJOSujYaMxI,11
|
|
39
|
-
sentry_sdk-0.7.5.dist-info/RECORD,,
|
|
File without changes
|