Scroll to navigation

PYTHON(1) User Commands PYTHON(1)

NAME

python autopep8.py - autopep8

DESCRIPTION

usage: autopep8 [-h] [--version] [-v] [-d] [-i] [--global-config filename]

[--ignore-local-config] [-r] [-j n] [-p n] [-a] [--experimental] [--exclude globs] [--list-fixes] [--ignore errors] [--select errors] [--max-line-length n] [--line-range line line] [--hang-closing] [--exit-code] [files [files ...]]

Automatically formats Python code to conform to the PEP 8 style guide.

positional arguments:

files to format or '-' for standard in

optional arguments:

show this help message and exit
show program's version number and exit
print verbose messages; multiple -v result in more verbose messages
print the diff for the fixed source
make changes to files in place
path to a global pep8 config file; if this file does not exist then this is ignored (default: ~/.config)
don't look for and apply local config files; if not passed, defaults are updated with any config files in the project's root directory
run recursively over directories; must be used with --in-place or --diff
number of parallel jobs; match CPU count if value is less than 1
maximum number of additional pep8 passes (default: infinite)
enable non-whitespace changes; multiple -a result in more aggressive changes
enable experimental fixes
exclude file/directory names that match these commaseparated globs
list codes for fixes; used by --ignore and --select
do not fix these errors/warnings (default: E226,E24,W50,W690)
fix only these errors/warnings (e.g. E4,W)
set maximum allowed line length (default: 79)
only fix errors found within this inclusive range of line numbers (e.g. 1 99); line numbers are indexed at 1
hang-closing option passed to pycodestyle
change to behavior of exit code. default behavior of return value, 0 is no differences, 1 is error exit. return 2 when add this option. 2 is exists differences.

SEE ALSO

The full documentation for python is maintained as a Texinfo manual. If the info and python programs are properly installed at your site, the command

info python

should give you access to the complete manual.

April 2019 python 1.4.4