Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 314 Bytes

readme.md

File metadata and controls

23 lines (16 loc) · 314 Bytes

hug_raven

Sentry integration for hug Python framework.

Installation

pip install hug_raven

Usage

import hug
from hug_raven import Sentry

@hug.get('/0')
def divide_by_zero():
    return 1 / 0

api = hug.API(__name__)
sentry = Sentry(api)