pyflakes3k
passive checker of Python 2 programs - Python modules
Install
- All systems
-
curl cmd.cat/pyflakes3k.sh
- Debian
-
apt-get install python-pyflakes
- Ubuntu
-
apt-get install python-pyflakes
- Arch Linux
-
pacman -S python-pyflakes
- Kali Linux
-
apt-get install python-pyflakes
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install python-pyflakes
- Raspbian
-
apt-get install python-pyflakes
- Dockerfile
- dockerfile.run/pyflakes3k
python-pyflakes
passive checker of Python 2 programs - Python modules
Pyflakes is program to analyze Python programs and detect 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. Unlike PyLint, Pyflakes checks only for logical errors in programs; it does not perform any checks on style. This is the Python 2 library version.