Skip to main content

A tool to check Python code against PEP 8 style conventions.

# To check the style of a single file:
pycodestyle <file.py>

# To check the style of multiple files:
pycodestyle <file1.py> <file2.py> <file3.py>

# To show only the first occurrence of an error:
pycodestyle --first <file.py>

# To show the source code for each error:
pycodestyle --show-source <file.py>

# To show the specific PEP 8 text for each error:
pycodestyle --show-pep8 <file.py>