Style guide enforcement and logical error detection for Python
Lint your Python code for style and logical errors
flake8
$ flake8 myfile.py
$ flake8 src/
$ flake8 . --ignore=E501,W503 --statistics