/qyet

Utils for silencing python code

Primary LanguagePythonMIT LicenseMIT

Qyet

Python package with tools for suppressing output.

shhh... please be qyet

Installation

pip install qyet

Usage

For now, there is only one decorator, shhh, which suppresses the output of a function.

from qyet import shhh

@shhh
def foo():
    print("Hello, world!")

foo() # No output

License

MIT

Thanks to

@dunossauro for a great content (in pt_BR) on how to create a Python package.