Skip to content

adrievx/exceptionless-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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)