Pyflakes analyzes Python source code non-intrusively to check for errors.
Pyflakes analyzes Python source code non-intrusively to check for errors.
Similar to the C language source code analyzer lint, Pyflakes performs similar function on Python source code. It can be used to check for simple errors like misplaced quotes, code indentation inconsistencies, syntax errors, referenced but undeclared variables, unused imported modules, etc. A very useful tool for any Python developer's toolkit!
See also: