Skip to content

nimbusproject/exceptional-python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

exceptional-python

exceptional-python is a python client for Exceptional, a service which tracks errors in your web apps.

It is adapted from pylons-exceptional by removing dependencies to pylons.

Usage

Send exception directly

exceptional = Exceptional('YOUR_API_KEY_HERE')
try:
  1/0
except Exception as e:
  exceptional.submit(e, os.environ)
  raise

or, use log handler

import logging
logger = logging.getLogger(__name__)
handler = ExceptionalLogHandler('YOUR_API_KEY_HERE')
handler.setLevel(logging.ERROR)
logger.addHandler(handler)

try:
  1/0
except:
  logger.error('oops!')

About

A python client for Exceptional (getexceptional.com)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%