-h, --help
show this help message and exit
-lLINE_LENGTH, --linesLINE_LENGTH
The maximum length of an import line (used for wrapping long imports).
-sSKIP, --skipSKIP
Files that sort imports should skip over.
-nsNOT_SKIP, --dont-skipNOT_SKIP
Files that sort imports should never skip over.
-tFORCE_TO_TOP,--topFORCE_TO_TOP
Force specific imports to the top of their appropriate section.
-bKNOWN_STANDARD_LIBRARY, --builtinKNOWN_STANDARD_LIBRARY
Force isort to recognize a module as part of the python standard library.
-oKNOWN_THIRD_PARTY, --thirdpartyKNOWN_THIRD_PARTY
Force isort to recognize a module as being part of a third party library.
-pKNOWN_FIRST_PARTY, --projectKNOWN_FIRST_PARTY
Force isort to recognize a module as being part of the current python project.
-mMODE, --multi_lineMODE
Multi line output (0=grid, 1=vertical, 2=hanging, 3=vert-hanging, 4=vert-grid, 5=vert-grid-
grouped).
-iINDENT, --indentINDENT
String to place for indents; defaults to " " (4 spaces).
-aADD_IMPORTS, --add_importADD_IMPORTS
Adds the specified import line to all files, automatically determining correct placement.
-af, --force_adds
Forces import adds even if the original file is empty.
-rREMOVE_IMPORTS, --remove_importREMOVE_IMPORTS
Removes the specified import from all files.
-ls, --length_sort
Sort imports by their string length.
-d, --stdout
Force resulting output to stdout, instead of in-place.
-c, --check-only
Checks the file for unsorted imports and prints them to the command line without modifying the
file.
-sl, --force_single_line_imports
Forces all from imports to appear on their own line.
-sdDEFAULT_SECTION, --section-defaultDEFAULT_SECTION
Sets the default section for imports (by default, FIRSTPARTY). Possible values: FUTURE, ISTDLIB,
THIRDPARTY, FIRSTPARTY, LOCALFOLDER-df, --diff
Prints a diff of all the changes isort would make to a file, instead of changing it in place
-e, --balanced
Balances wrapping to produce the most consistent line length possible.
-rc, --recursive
Recursively look for Python files of which to sort imports.
-ot, --order-by-type
Order imports by type in addition to alphabetically.
-ac, --atomic
Ensures the output doesn't save if the resulting file contains syntax errors.
-cs, --combine-star
Ensures that if a star import is present, nothing else is imported from that namespace.
-v, --version
Show program's version number and exit.
-vb, --verbose
Shows verbose output, such as when files are skipped or when a check is successful.
-spSETTINGS_PATH, --settings-pathSETTINGS_PATH
Explicitly set the settings path instead of auto determining based on file location.
isort 3.9.2 December 2014 ISORT(1)