Jaymon / pout

Python pretty print on steroids
MIT License
29 stars 0 forks source link

Add hook to turn on/off pouts #69

Open Jaymon opened 3 years ago

Jaymon commented 3 years ago

it would be cool to do something like:

pout.suppress(True)

pout.v("this will be ignored")

pout.suppress(False)

pout.v("this will print like normal")

Because sometimes I have pout's buried deep into a set of methods and it would be great to be able to print them when I am at the place I want to debug instead of having all the setup code print out every time