Metadata-Version: 2.1
Name: cowexcept
Version: 1.2.1
Summary: Spice up those exceptions with cowexcept!
Home-page: https://github.com/James-Ansley/cowexcept
Author: James Finnie-Ansley
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Topic :: Utilities
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# CowExcept

Spice up those exceptions with cowexcept!

     ______________________________________ 
    < NameError: name 'baz' is not defined >
     -------------------------------------- 
         \   ^__^
          \  (oo)\_______
             (__)\       )\/\
                 ||----w |
                 ||     ||
    
## Install

    pip install cowexcept


## Should you install this?

Probably not!
This is a hastily hacked together project that does not do anything useful.
It also does not do zesty and exciting things like have nicely formatted 3.10 syntax error messages.
But! It might still spice up those error messages and make them a bit less draining to read.

## Usage

All you have to do to get started is `import cowexcept` and then any exceptions whenceforth will be in beautiful cowsay format:

    >>> import cowexcept
    >>> 1 / 0
    Traceback (most recent call last):
      File "...", line 90, in runcode
        exec(code, self.locals)
      File "<input>", line 1, in <module>
     _____________________________________ 
    < ZeroDivisionError: division by zero >
     ------------------------------------- 
         \   ^__^
          \  (oo)\_______
             (__)\       )\/\
                 ||----w |
                 ||     ||


