passive checker of Python programs
Project description
A simple program which checks Python source files for errors.
Pyflakes analyzes programs and detects various errors. It works by parsing the source file, not importing it, so it is safe to use on modules with side effects. It’s also much faster.
It is available on PyPI and it supports all active versions of Python from 2.5 to 3.4.
Installation
It can be installed with:
$ pip install --upgrade pyflakes
Useful tips:
Be sure to install it for a version of Python which is compatible with your codebase: for Python 2, pip2 install pyflakes and for Python3, pip3 install pyflakes.
You can also invoke Pyflakes with python3 -m pyflakes . or python2 -m pyflakes . if you have it installed for both versions.
If you require more options and more flexibility, you could give a look to Flake8 too.
Design Principles
Pyflakes makes a simple promise: it will never complain about style, and it will try very, very hard to never emit false positives.
Pyflakes is also faster than Pylint or Pychecker. This is largely because Pyflakes only examines the syntax tree of each file individually. As a consequence, Pyflakes is more limited in the types of things it can check.
If you like Pyflakes but also want styleistic checks, you want flake8, which combines Pyflakes with style checks against PEP 8 and adds per-project configuration ability.
Mailing-list
Share your feedback and ideas: subscribe to the mailing-list
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pyflakes-0.9.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05df584a29eeea9a2a2110dd362e53d04e0c4bb1754b4d71234f651917f3c2f0 |
|
MD5 | 16629ae263c812658036594778b5ad29 |
|
BLAKE2b-256 | 59706fbc74a5554fd6f0230f6cc298c9e74847cc727bdbf07c9f9d01ad8c0dc3 |