isort Plugin
Python import sorter.
Commands
Sort
isort sort check— Check import sorting (dry run)isort sort write— Sort imports in-place
Usage Examples
- "Sort imports in this Python file"
- "Check if imports are sorted correctly"
- "Organize imports in the whole project"
- "Fix import ordering"
Installation
pip install isort
Examples
# Sort imports in-place
isort .
# Check only
isort --check-only .
# Show diff
isort --check-only --diff .
# Profile for black compatibility
isort --profile black .
# Force single line
isort --force-single-line-imports .