Lib para debug em python, bastante simples, visa substituir os print()s durante o processo de debug padrão.

https://github.com/gruns/icecream

Uso

from icecream import ic
 
def foo(i):
    return i + 333
 
ic(foo(123))

Output:

ic| foo(123): 456