""" Sentry Client ============= Provides sentry_client attribute for ad hoc capturing of messages and errors. https://docs.getsentry.com/hosted/clients/python/usage/ """ from raven import Client from ows_accounting import config sentry_client = None if config.SENTRY: sentry_client = Client(config.SENTRY)