Skip to content

dermasmid/python-exterminator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pest control

Bugs are bad, but it's even worse when it happens in production, this is why it is a good idea to document all data possible when a exception occurs.

Installing

pip3 install exterminator

Usage

You have three options.

As a decorator

from exterminator import Exterminator

@Exterminator()
def main_function():
    # do stuff that might work

main_function()

As a context manager

from exterminator import Exterminator

with Exterminator():
    # do stuff, you know the thing

Globally

from exterminator import Exterminator

Exterminator().globally()

# that's it! now every exception that is not handled will be logged

Important Note

If you are going to except all errors the context manager and globally solution wont work for you, the only option for you will be:

from exterminator import Exterminator

@Exterminator()
def main_function():
    # do stuff that work or not

try:
    main_function()
except:
    # do some stuff of your own...

About

Log the important data when a exception occurs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages