pycodestyle

A tool to check Python code against PEP 8 style conventions. More information: <https://pycodestyle.readthedocs.io>.

Install

All systems
curl cmd.cat/pycodestyle.sh
Debian Debian
apt-get install pycodestyle
Ubuntu
apt-get install pycodestyle
Arch Arch Linux
pacman -S pycodestyle
image/svg+xml Kali Linux
apt-get install pycodestyle
Fedora
dnf install pycodestyle
Windows (WSL2)
sudo apt-get update sudo apt-get install pycodestyle
OS X
brew install pycodestyle
Raspbian
apt-get install pycodestyle

A tool to check Python code against PEP 8 style conventions. More information: <https://pycodestyle.readthedocs.io>.

  • Check the style of a single file:
    pycodestyle file.py
  • Check the style of multiple files:
    pycodestyle file1.py file2.py file3.py
  • Show only the first occurrence of an error:
    pycodestyle --first file.py
  • Show the source code for each error:
    pycodestyle --show-source file.py
  • Show the specific PEP 8 text for each error:
    pycodestyle --show-pep8 file.py

© tl;dr; authors and contributors