Top "Pyflakes" questions

Pyflakes analyzes Python source code non-intrusively to check for errors.

PyLint, PyChecker or PyFlakes?

I would like to get some feedback on these tools on : features; adaptability; ease of use and learning curve.

python pylint pep8 pyflakes pychecker
How do I get Pyflakes to ignore a statement?

A lot of our modules start with: try: import json except ImportError: from django.utils import simplejson as json # Python 2.4 …

python pyflakes
Excluding directory

I am working on a django project and am trying to run pyflakes on an app in it. I need …

python django static-analysis pyflakes
How can I use Emacs Flymake mode for python with pyflakes and pylint checking code?

For checking code in python mode I use flymake with pyflakes Also I want check code style (pep8) with pylint (…

python emacs pylint pep8 pyflakes
How to avoid flake8's "F821 undefined name '_'" when _ has been installed by gettext?

Problem overview: In my project's main script, gettext installs the function _() that is used in other modules for translations (like …

python python-3.x gettext pyflakes flake8
How to ignore Pyflakes errors ‘imported but unused’ in __init__.py in Python?

I split my tests across multiple Python files: tests ├── __init__.py ├── test_apples.py └── test_bananas.py.py I import …

python import lint pyflakes
vim-flake8 is not working

I installed vim-flake8 by git cloning it on my Pathogen bundle folder as usual, but when I tried to run …

python vim pyflakes flake8
How do I follow python PEP8 regarding line breaks, and how important is it?

I am writing in python 3.5.1 and I am a programming novice. I use gedit with a pep8 and pyflakes plugins …

python pep8 gedit python-3.5 pyflakes