Give AlbumentationsX a star on GitHub — it powers this leaderboard

Star on GitHub

wasabi

A lightweight console printing and formatting toolkit

Downloads: 0 (30 days)

Description

wasabi: A lightweight console printing and formatting toolkit

Over the years, I've written countless implementations of coloring and formatting utilities to output messages in our libraries like spaCy, Thinc and Prodigy. While there are many other great open-source options, I've always ended up wanting something slightly different or slightly custom.

This package is still a work in progress and aims to bundle those utilities in a standardised way so they can be shared across our other projects. It's super lightweight, has zero dependencies and works with Python 3.6+.

tests PyPi conda GitHub Code style: black

<img width="609" src="https://user-images.githubusercontent.com/13643239/48663861-8c9ea000-ea96-11e8-8b04-d120c52276a8.png">

💬 FAQ

Are you going to add more features?

Yes, there's still a few of helpers and features to port over. However, the new features will be heavily biased by what we (think we) need. I always appreciate pull requests to improve the existing functionality – but I want to keep this library as simple, lightweight and specific as possible.

Can I use this for my projects?

Sure, if you like it, feel free to adopt it! Just keep in mind that the package is very specific and not intended to be a full-featured and fully customisable formatting library. If that's what you're looking for, you might want to try other packages – for example, colored, crayons, colorful, tabulate, console or py-term, to name a few.

Why wasabi?

I was looking for a short and descriptive name, but everything was already taken. So I ended up naming this package after one of my rats, Wasabi. 🐀

⌛️ Installation

pip install wasabi

🎛 API

<kbd>function</kbd> msg

An instance of Printer, initialized with the default config. Useful as a quick shortcut if you don't need to customize initialization.

from wasabi import msg

msg.good("Success!")

<kbd>class</kbd> Printer

<kbd>method</kbd> Printer.__init__

from wasabi import Printer

msg = Printer()
ArgumentTypeDescriptionDefault
prettyboolPretty-print output with colors and icons.True
no_printboolDon't actually print, just return.False
colorsdictAdd or overwrite color values, names mapped to 0-256.None
iconsdictAdd or overwrite icon. Name mapped to unicode.None
line_maxintMaximum line length (for divider).80
animationstrSteps of loading animation for Printer.loading."⠙⠹⠸⠼⠴⠦⠧⠇⠏"
animation_asciistrAlternative animation for ASCII terminals."|/-\\"
hide_animationboolDon't display animation, e.g. for logs.False
ignore_warningsboolDon't output messages of type MESSAGE.WARN.False
env_prefixstrPrefix for environment variables, e.g. WASABI_LOG_FRIENDLY."WASABI"
timestampboolAdd timestamp before output.False
RETURNSPrinterThe initialized printer.-

<kbd>method</kbd> Printer.text

msg = Printer()
msg.text("Hello world!")
ArgumentTypeDescriptionDefault
titlestrThe main text to print.""
textstrOptional additional text to print.""
color unicode / intColor name or value.None
iconstrName of icon to add.None
showboolWhether to print or not. Can be used to only output messages under certain condition, e.g. if --verbose flag is set.True
spacedboolWhether to add newlines around the output.False
no_printboolDon't actually print, just return. Overwrites global setting.False
exitsintIf set, perform a system exit with the given code after printing.None

<kbd>method</kbd> Printer.good, Printer.fail, Printer.warn, Printer.info

Print special formatted messages.

msg = Printer()
msg.good("Success")
msg.fail("Error")
msg.warn("Warning")
msg.info("Info")
ArgumentTypeDescriptionDefault
titlestrThe main text to print.""
textstrOptional additional text to print.""
showboolWhether to print or not. Can be used to only output messages under certain condition, e.g. if --verbose flag is set.True
exitsintIf set, perform a system exit with the given code after printing.None

<kbd>method</kbd> Printer.divider

Print a formatted divider.

msg = Printer()
msg.divider("Heading")
ArgumentTypeDescriptionDefault
textstrHeadline text. If empty, only the line is printed.""
charstrSingle line character to repeat."="
showboolWhether to print or not. Can be used to only output messages under certain condition, e.g. if --verbose flag is set.True
iconstrOptional icon to use with title.None

<kbd>contextmanager</kbd> Printer.loading

msg = Printer()
with msg.loading("Loading..."):
    # Do something here that takes longer
    time.sleep(10)
msg.good("Successfully loaded something!")
ArgumentTypeDescriptionDefault
textstrThe text to display while loading."Loading..."

<kbd>method</kbd> Printer.table, Printer.row

See Tables.

<kbd>property</kbd> Printer.counts

Get the counts of how often the special printers were fired, e.g. MESSAGES.GOOD. Can be used to print an overview like "X warnings"

msg = Printer()
msg.good("Success")
msg.fail("Error")
msg.warn("Error")

print(msg.counts)
# Counter({'good': 1, 'fail': 2, 'warn': 0, 'info': 0})
ArgumentTypeDescription
RETURNSCounterThe counts for the individual special message types.

Tables

<kbd>function</kbd> table

Lightweight helper to format tabular data.

from wasabi import table

data = [("a1", "a2", "a3"), ("b1", "b2", "b3")]
header = ("Column 1", "Column 2", "Column 3")
widths = (8, 9, 10)
aligns = ("r", "c", "l")
formatted = table(data, header=header, divider=True, widths=w