-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
Description
Installation
pybrake requires Python 3.4+.
pip install -U pybrakeConfiguration
(You can find your project ID and API key in your project's settings)
import pybrake
notifier = pybrake.Notifier(project_id=<Your project ID>,
project_key='<Your project API KEY>',
environment='production')Send a test error
To test that you've installed Airbrake correctly, try triggering a test error.
try:
raise ValueError('hello')
except Exception as err:
notifier.notify(err)Full documentation
For more information please visit our official GitHub repo.