bloodyterminal

A little helper to structure your terminal output


License
MIT
Install
pip install bloodyterminal==1.8

Documentation

Bloody Terminal

A simple piece of code to help structure your console outputs. BT makes use of colorama to provide a few options to create a consistent console output “theme”.


from bloodyterminal import bt

bt.success("your string")
bt.info("your string")
bt.warning("your string")
bt.debug("your string")
bt.custom("your prefix", "your string")

Will result in something like this:

alt text

The [INFO] prefix has a more vibrant yellow color in most terminals.

To test this you can also use bt.demo() to get this output.