Coder Social home page Coder Social logo

goerr's Introduction

Goerr

Go style explicit error handling in Python. Features:

  • Pretty print of error details
  • Trace errors across the call stack
  • Log errors
  • Test errors
pip install goerr

Documentation

API

Class Err

Methods:

err: creates a new error, print it and store it in the trace if the option is activated. Exit the program if the trace is not activated. Parameters:

  • ex: an exception (optional)
  • msg: the message string (optional) Either a message string or an exception has to be provided as argument for the error to be printed. If no argument is provided it will just record the function name to keep a trace of the call stack

warning: prints a warning message

info: prints an info message

debug: prints a debug message

panic: force program exit after an error even if the errors trace is activated

to_dict: returns a dictionnary with the error details

Class Log

Same as Err but log errors

Properties

log_path: path of the file where to log. Default is "errors.log"
log_format: csv or text. Default is "csv". Note: the tracebacks are not recorded if the format is csv.

Class Trace

Same as Err but trace errors

Properties

trace: prints the errors trace and reset it via: same as err with an empty error: to record the call stack. See example

Example

Check the examples directory for code

Trace errors across the call stack:

import time
from goerr import Trace

err = Trace()

def func1():
    print("Func 1 running")
    time.sleep(0.5)
    try:
        'x' > 1
    except Exception as e:
        err.new("Errmsg frun func1", e)
    print("Func 1 finished")

def func2():
    func1()
    time.sleep(0.5)
    err.via("Errmsg frun func2")
    print("Func 2 running")
       
def func3():
    func2()
    time.sleep(0.5)
    err.via()
    print("Func 3 running")
        
func3()
err.trace()

Output:

Stack trace screenshot

Testing errors in programs

A helper function is available to test errors:

testing.assert_err: parameters:

  • error type: a string with the error type
  • function to run: the function to test
  • *args: function arguments
  • **kwargs: function keyword arguments

Example:

# the program
from goerr import Err
   
   class Foo(Err):
      def func1(self, param1, param2):
          try:
              param1 > param2
          except Exception as e:
              self.err(e)

# the test
import unittest
from goerr.testing import assert_err
from myprogram import Foo

   class MyTest(unittest.TestCase):
	  def test_myprogram(self):
          foo = Foo()
          assert_err("TypeError", foo.func1, 1, "bar")

Why?

I like the explicit errors management in Go (unlike many people) and I wanted to have the same kind of experience in Python: a fined grained control over errors all across the call stack.

The same lib in Go: terr

goerr's People

Contributors

synw avatar

Stargazers

 avatar O. Libre avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.