I was wondering if there exists a sort of Python beautifier like the gnu-indent command line tool for C code. Of course indentation is not the point in Python since it is progra
black is another recent option.
It provides deliberate and fast code formatting and is used by many projects such as pytest, SQLAlchemy and Pillow to name a few.
pytest
SQLAlchemy
Pillow