Python package with tools for suppressing output.
shhh... please be qyet
pip install qyetFor 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@dunossauro for a great content (in pt_BR) on how to create a Python package.
