-
-
Notifications
You must be signed in to change notification settings - Fork 19
Setup Airbrake for your Python application #57
Copy link
Copy link
Closed
Labels
Description
Installation
pybrake requires Python 3.6+.
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.
Reactions are currently unavailable