Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 372 Bytes

File metadata and controls

23 lines (19 loc) · 372 Bytes

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)