Python client for Exceptionless
pip install exceptionlessfrom 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)