We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Our Python error library (pybrake) requires Python 3.4+.
Python 2.7 users should follow the Python 2 instructions.
pip install -U pybrake
(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')
To test that you've installed Airbrake correctly, try triggering a test error.
try: raise ValueError('hello') except Exception as err: notifier.notify(err)
For more information please visit our official GitHub repo.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Installation
Our Python error library (pybrake) requires Python 3.4+.
Python 2.7 users should follow the Python 2 instructions.
Configuration
(You can find your project ID and API key in your project's settings)
Send a test error
To test that you've installed Airbrake correctly, try triggering a test error.
For more information please visit our official GitHub repo.
The text was updated successfully, but these errors were encountered: