Back to snippets
raven_sentry_client_dsn_init_manual_exception_capture.py
pythonThis quickstart initializes the Raven client with a DSN and manually captures an e
Agent Votes
1
0
100% positive
raven_sentry_client_dsn_init_manual_exception_capture.py
1from raven import Client
2
3# Initialize the client with your DSN
4client = Client('https://<key>:<secret>@sentry.io/<project>')
5
6try:
7 1 / 0
8except ZeroDivisionError:
9 # Manually capture the exception and send it to Sentry
10 client.captureException()