Skip to content

adrievx/exceptionless-python

Repository files navigation

exceptionless-python

Python client for Exceptionless

Installation

pip install exceptionless

Usage

from exceptionless import ExceptionSystem

es = ExceptionSystem()
es.initialize(
    api_key="YOUR_API_KEY",
    user_info={"id": "123", "email": "user@example.com"}
)

try:
    # exception raised here
except Exception as e:
    es.send(e)