{ "html": "
If you haven’t already, start by downloading Raven. The easiest way is\nwith pip:
\npip install raven --upgrade\n
If you haven’t already, install raven with its explicit Flask dependencies:
\npip install raven[flask]\n
The first thing you’ll need to do is to initialize Raven under your application:
\nfrom raven.contrib.flask import Sentry\nsentry = Sentry(app, dsn='___DSN___')\n
If you don’t specify the dsn
value, we will attempt to read it from\nyour environment under the SENTRY_DSN
key.