X7ROOT File Manager
Current Path:
/opt/cloudlinux/venv/lib/python3.11/site-packages/sentry_sdk
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
sentry_sdk
/
ðŸ“
..
📄
__init__.py
(1.03 KB)
ðŸ“
__pycache__
📄
_compat.py
(2.73 KB)
📄
_functools.py
(4.84 KB)
📄
_lru_cache.py
(5.26 KB)
📄
_queue.py
(11 KB)
📄
_types.py
(2.19 KB)
📄
_werkzeug.py
(3.7 KB)
📄
api.py
(6.05 KB)
📄
attachments.py
(1.77 KB)
📄
client.py
(22.35 KB)
📄
consts.py
(8.49 KB)
ðŸ“
crons
📄
debug.py
(1.11 KB)
📄
envelope.py
(9.37 KB)
📄
hub.py
(26.42 KB)
ðŸ“
integrations
📄
monitor.py
(2.97 KB)
📄
profiler.py
(33.18 KB)
📄
py.typed
(0 B)
📄
scope.py
(24.26 KB)
📄
scrubber.py
(3.8 KB)
📄
serializer.py
(12.97 KB)
📄
session.py
(5.43 KB)
📄
sessions.py
(5.76 KB)
📄
tracing.py
(29.04 KB)
📄
tracing_utils.py
(12 KB)
📄
tracing_utils_py2.py
(1.21 KB)
📄
tracing_utils_py3.py
(2.1 KB)
📄
transport.py
(18.13 KB)
📄
utils.py
(45.58 KB)
📄
worker.py
(4.15 KB)
Editing: attachments.py
import os import mimetypes from sentry_sdk._types import TYPE_CHECKING from sentry_sdk.envelope import Item, PayloadRef if TYPE_CHECKING: from typing import Optional, Union, Callable class Attachment(object): def __init__( self, bytes=None, # type: Union[None, bytes, Callable[[], bytes]] filename=None, # type: Optional[str] path=None, # type: Optional[str] content_type=None, # type: Optional[str] add_to_transactions=False, # type: bool ): # type: (...) -> None if bytes is None and path is None: raise TypeError("path or raw bytes required for attachment") if filename is None and path is not None: filename = os.path.basename(path) if filename is None: raise TypeError("filename is required for attachment") if content_type is None: content_type = mimetypes.guess_type(filename)[0] self.bytes = bytes self.filename = filename self.path = path self.content_type = content_type self.add_to_transactions = add_to_transactions def to_envelope_item(self): # type: () -> Item """Returns an envelope item for this attachment.""" payload = None # type: Union[None, PayloadRef, bytes] if self.bytes is not None: if callable(self.bytes): payload = self.bytes() else: payload = self.bytes else: payload = PayloadRef(path=self.path) return Item( payload=payload, type="attachment", content_type=self.content_type, filename=self.filename, ) def __repr__(self): # type: () -> str return "<Attachment %r>" % (self.filename,)
Upload File
Create Folder