pylama
Code audit tool for python. (by klen)
isort
A Python utility / library to sort imports. (by PyCQA)
pylama | isort | |
---|---|---|
5 | 45 | |
1,053 | 6,777 | |
0.2% | 0.6% | |
0.0 | 8.6 | |
about 1 year ago | 26 days ago | |
Python | Python | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
pylama
Posts with mentions or reviews of pylama.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-03-18.
-
Enhance Your Project Quality with These Top Python Libraries
Pylama is a code audit tool for Python that wraps tools like Pylint, pycodestyle, PyFlakes, McCabe, and others to provide a unified interface.
-
How pythonic is enough pythonic?
Use a code linter. And potentially use black.
-
Newbie here: blank spaces for better code readability?
Use a linter like pylama
-
Advice on training Python best practices
Lint your code. I recommend pylama.
-
Code Quality Tools in Python
Linters analyze code to detect various categories of issues like logistical issue and stylistic issues. Some popular linters are Pylint, pycodestyle, Flake8 and Pylama.
isort
Posts with mentions or reviews of isort.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-05-05.
-
Nix Flake Templates
Use black and isort for formatting.
-
Ruff and Ready: Linting Before the Party
isort as an import sorter,
-
Top Tools for Static Analysis Help in Your Python Projects
Based on what the Ruff official website says, - Ruff is an extremely fast Python linter and formatter, written in Rust. It can be used to replace tools like Flake8, black, isort, pydocstyle, pylint, while executing much faster than any individual tool.
-
Setting up `pre-commit` in a Django project
# .pre-commit-config.yaml (28.06.2024) repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.6.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-added-large-files - repo: https://github.com/PyCQA/isort rev: 5.13.2 hooks: - id: isort - repo: https://github.com/psf/black rev: 24.4.2 hooks: - id: black - repo: https://github.com/pycqa/flake8 rev: 7.1.0 hooks: - id: flake8 - repo: local hooks: - id: django-check name: Run Django Check entry: python manage.py check language: system pass_filenames: false types: [python]
-
Enhance Your Project Quality with These Top Python Libraries
isort: This library sorts your imports alphabetically, and automatically separates them into sections and by type. It provides a cleaner and more organised way to manage project imports.
-
A Tale of Two Kitchens - Hypermodernizing Your Python Code Base
isort will sort the imports for you
-
Django Code Formatting and Linting Made Easy: A Step-by-Step Pre-commit Hook Tutorial
isort is a Python utility that helps in sorting and organizing import statements in Python code to create readable and consistent code. It automatically formats import statements in accordance with PEP 8.
-
How to Write Impeccably Clean Code That Will Save Your Sanity
repos: - repo: https://github.com/ambv/black rev: 23.3.0 hooks: - id: black args: [--config=./pyproject.toml] language_version: python3.11 - repo: https://github.com/pycqa/flake8 rev: 6.0.0 hooks: - id: flake8 args: [--config=./tox.ini] language_version: python3.11 - repo: https://github.com/pycqa/isort rev: 5.12.0 hooks: - id: isort args: ["--profile", "black", "--filter-files"] language_version: python3.11 - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.4.0 hooks: - id: requirements-txt-fixer language_version: python3.11 - id: debug-statements - id: detect-aws-credentials - id: detect-private-key
- Automate Python Linting and Code Style Enforcement with Ruff and GitHub Actions
-
Improve your Django Code with pre-commit
repos: ... pre-commmit stuff ... black stuff - repo: https://github.com/pycqa/isort rev: 5.12.0 hooks: - id: isort name: isort (python)
What are some alternatives?
When comparing pylama and isort you can also consider the following projects:
Pylint - It's not just a linter that annoys you!
black - The uncompromising Python code formatter
Flake8 - flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.
awesome-python-typing - Collection of awesome Python types, stubs, plugins, and tools to work with them.
prospector - Inspects Python source files and provides information about type and location of classes, methods etc
yapf - A formatter for Python files