/py-buzz

"That's not flying, it's falling with style": Python Exceptions with extras

Primary LanguagePythonMIT LicenseMIT

Latest Version Build Status Documentation Status

py-buzz

That's not flying, it's falling with style: Exceptions with extras

py-buzz supplies extras to python exceptions in a base Buzz exception class. Buzz is fully equipped with exception tools that are written over and over again in python projects such as:

  • checking conditions and raising errors on failure (require_conditon)
  • catching exceptions wrapping them in clearer exception types with better error messages (handle_errors)
  • checking many conditions and reporting which ones failed (check_expressions)

Buzz can be used as a stand-alone exception class, but it is best used as a bass class for custom exceptions within a project. This allows the user to focus on creating a set of Exceptions that provide complete coverage for issues within their application without having to re-write convenience functions themselves.

Super-quick Start

  • requirements: python3
  • install through pip: $ pip install py-buzz
  • minimal usage example: examples/basic.py

Documentation

The complete documentation can be found at the py-buzz home page