python-isort
Port variant v12
Summary Utility library to sort Python imports (3.12)
Package version 6.1.0
Homepage https://pycqa.github.io/isort/index.html
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v13
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 07 OCT 2025, 02:19:18 UTC
Port created 30 NOV 2020, 06:56:42 UTC
Subpackage Descriptions
single [![isort - isort your imports, so you don't have to.]](https://pycqa.github.io/isort/) ------------------------------------------------------------------------ [PyPI version] [![Python Version]][pypi status] [Test] [Lint] [Code coverage Status] [License] [Downloads] [![Code style: black]](https://github.com/psf/black) [![Imports: isort]](https://pycqa.github.io/isort/) [DeepSource] [pypi status]: https://pypi.org/project/isort/ _________________ [Read Latest Documentation] - [Browse GitHub Code Repository] _________________ isort your imports, so you don't have to. isort is a Python utility / library to sort imports alphabetically and automatically separate into sections and by type. It provides a command line utility, Python library and [plugins for various editors] to quickly sort all your imports. It requires Python 3.9+ to run but supports formatting Python 2 code too. - [Try isort now from your browser!] - [Using black? See the isort and black compatibility guide.] - [isort has official support for pre-commit!] ![Example Usage] Before isort: ```python from my_lib import Object import os from my_lib import Object3 from my_lib import Object2 import sys from third_party import lib15, lib1, lib2, lib3, lib4, lib5, lib6, lib7, lib8, lib9, lib10, lib11, lib12, lib13, lib14 import sys from __future__ import absolute_import from third_party import lib3 print("Hey") print("yo") ``` After isort: ```python from __future__ import absolute_import import os import sys from third_party import (lib1, lib2, lib3, lib4, lib5, lib6, lib7, lib8, lib9, lib10, lib11, lib12, lib13, lib14, lib15) from my_lib import Object, Object2, Object3 print("Hey") print("yo") ``` ## Installing isort Installing isort is as simple as: `bash pip install isort ` ## Using isort **From the command line**: To run on specific files: ```bash isort mypythonfile.py mypythonfile2.py ``` To apply recursively:
Configuration Switches (platform-specific settings discarded)
PY312 ON Build using Python 3.12 PY313 OFF Build using Python 3.13
Package Dependencies by Type
Build (only) python312:dev:std
python-pip:single:v12
autoselect-python:single:std
Build and Runtime python312:primary:std
Download groups
main mirror://PYPIWHL/7f/cc/9b681a170efab4868a032631dea1e8446d8ec718a7f657b94d49d1a12643
Distribution File Information
58d8927ecce74e5087aef019f778d4081a3b6c98f15a80ba35782ca8a2097784 94329 python-src/isort-6.1.0-py3-none-any.whl
Ports that require python-isort:v12
python-pylint:v12 Python code static checker (3.12)