Setup Airbrake for your Python application
Closed this issue · 0 comments
salonijain0918 commented
Installation
pybrake requires Python 3.4+.
pip install -U pybrake
Configuration
(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.