Auto-organize Python Imports Using isort
Organizing Python Imports
Organizing imports is a small but essential aspect of writing clean and maintainable Python code. As your codebase grows, import statements can become disorganized, leading to confusion and decreased readability. This is where isort comes to the rescue.
What is isort?
isort is a Python utility that sorts and organizes imports automatically according to PEP 8 (Python Enhancement Proposal-8). It ensures that import statements are arranged in a consistent and logical order. By categorizing and alphabetizing imports, isort eliminates clutter and makes your code more readable.
How to Use isort?
1. Activate your virtual environment
Before installing isort, you have to activate your virtual environment. A virtual environment helps isolate your project's dependencies from your global Python installation.
2. Install isort via pip
Once your virtual environment is active, download and install isort using pip by entering the following command in your terminal:
1 |
|
3. Flag codes to be ignored
You may want to flag the imports that isort should not reformat.
To ignore a single line of import, use # isort: skip
:
1 2 |
|
To ignore a block of imports, start with # isort: off
and end with # isort: on
:
1 2 3 4 5 6 7 8 9 10 |
|
To ignore imports in the entire file, use # isort: skip_file
:
1 2 3 4 |
|
4. (Optional) Customize isort's configuration
To customize isort's behavior, you can use configuration files, such as .isort.cfg (preferred), pyproject.toml (preferred), setup.cfg, tox.ini, .editorconfig, and custom files. For more information, you may want to visit isort's official documentation on its supported config files.
I prefer to use the .isort.cfg file as it is easy to understand that this configuration file is related to isort.
Using the Gen EMR project as an example, below is a sample production .isort.cfg file from our Django project.
1 2 3 4 5 6 7 8 9 10 11 12 |
|
You may want to view the isort's available config options.
- The profile is required to integrate Black with isort.
- The default_section is the default section where uncategorized imports will be placed.
- The known_first_party contains your project's local packages (e.g., A Django app called pages).
- The known_[package_name] creates a new custom section name for known imports (e.g., Django).
- The sections shows how imports will be organized in a chronological manner.
- The import_heading_[section_name] adds a comment for each section to help quickly categorize the imports.
Lesson learned: You can use isort --show-config
to check whether isort is using the settings you specified in your configuration file.
In the last section of this tutorial, check out the sample output using this configuration.
5. Format Files
Make sure to navigate to your source code directory before running the following code in your terminal.
To format a single file:
1 |
|
To format the files in the entire directory:
1 |
|
Sample isort's Formatting
Before formatting:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
After formatting:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|