[PYTHON] Compliant with pep8

reference: Compliant with Python coding standard PEP8

Python style guide and various Lint / analysis tools to protect it!

Installation:

pip install pep8
pip install pyflakes #Detects only python logical errors

Run pep8

$ pep8 [file name]

Show problem area

$ pep8 --show-source (file name)

See instructions on how to fix

$ pep8 --show-pep8 (file name)

Run pyflakes

$ pyflakes (file name)

Recommended Posts

Compliant with pep8
Comply with Python coding standard PEP8