Best-of Python Developer Tools

πŸ†  A ranked list of awesome python developer tools and libraries. Updated weekly.

This curated list contains 270 awesome open-source projects with a total of 840K stars grouped into 17 categories. All projects are ranked by a project-quality score, which is calculated based on various metrics automatically collected from GitHub and different package managers. If you like to add or update projects, feel free to open an [issue](https://github.com/ml-tooling/best-of-python-dev/issues/new/choose), submit a [pull request](https://github.com/ml-tooling/best-of-python-dev/pulls), or directly edit the [projects.yaml](https://github.com/ml-tooling/best-of-python-dev/edit/main/projects.yaml). Contributions are very welcome! ---

πŸ§™β€β™‚οΈ  Discover other best-of lists or create your own.
πŸ“«  Subscribe to our newsletter for updates and trending projects.

--- ## Contents - [Linters & Style Checkers](#linters--style-checkers) _40 projects_ - [Type checkers](#type-checkers) _5 projects_ - [Code Formatters](#code-formatters) _7 projects_ - [Code Refactoring](#code-refactoring) _18 projects_ - [Code Security](#code-security) _8 projects_ - [Virtual Environments](#virtual-environments) _10 projects_ - [Dependency & Package Managers](#dependency--package-managers) _11 projects_ - [Code Metrics & Complexity](#code-metrics--complexity) _6 projects_ - [Logging](#logging) _21 projects_ - [Shell](#shell) _2 projects_ - [Documentation](#documentation) _29 projects_ - [Debugging Tools](#debugging-tools) _13 projects_ - [Testing Tools](#testing-tools) _43 projects_ - [Code Packaging](#code-packaging) _16 projects_ - [Build Tools](#build-tools) _14 projects_ - [System Monitoring & Profiling](#system-monitoring--profiling) _18 projects_ - [AST Tools](#ast-tools) _6 projects_ - [Others](#others) _1 projects_ ## Explanation - πŸ₯‡πŸ₯ˆπŸ₯‰  Combined project-quality score - ⭐️  Star count from GitHub - 🐣  New project _(less than 6 months old)_ - πŸ’€  Inactive project _(6 months no activity)_ - πŸ’€  Dead project _(12 months no activity)_ - πŸ“ˆπŸ“‰  Project is trending up or down - βž•  Project was recently added - ❗️  Warning _(e.g. missing/risky license)_ - πŸ‘¨β€πŸ’»  Contributors count from GitHub - πŸ”€  Fork count from GitHub - πŸ“‹  Issue count from GitHub - ⏱️  Last update timestamp on package manager - πŸ“₯  Download count from package manager - πŸ“¦  Number of dependent projects -   Flake8 related project -   Pytest related project -   Pylint related project -   Sphinx related project -   MkDocs related project
## Linters & Style Checkers Back to top
pylint (πŸ₯‡42 Β· ⭐ 4.7K) - Its not just a linter that annoys you!. ❗️GPL-2.0 - [GitHub](https://github.com/pylint-dev/pylint) (πŸ‘¨β€πŸ’» 530 Β· πŸ”€ 1K Β· πŸ“¦ 370K Β· πŸ“‹ 5K - 14% open Β· ⏱️ 26.06.2023): ``` git clone https://github.com/PyCQA/pylint ``` - [PyPi](https://pypi.org/project/pylint) (πŸ“₯ 14M / month Β· πŸ“¦ 22K Β· ⏱️ 29.06.2022): ``` pip install pylint ``` - [Conda](https://anaconda.org/conda-forge/pylint) (πŸ“₯ 4.2M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pylint ```
ruff (πŸ₯‡41 Β· ⭐ 16K) - An extremely fast Python linter, written in Rust. MIT - [GitHub](https://github.com/astral-sh/ruff) (πŸ‘¨β€πŸ’» 220 Β· πŸ”€ 480 Β· πŸ“₯ 29K Β· πŸ“¦ 9.5K Β· πŸ“‹ 2K - 15% open Β· ⏱️ 29.06.2023): ``` git clone https://github.com/charliermarsh/ruff ``` - [PyPi](https://pypi.org/project/ruff) (πŸ“₯ 2.7M / month Β· πŸ“¦ 560 Β· ⏱️ 22.06.2023): ``` pip install ruff ``` - [Conda](https://anaconda.org/conda-forge/ruff) (πŸ“₯ 240K Β· ⏱️ 25.06.2023): ``` conda install -c conda-forge ruff ```
pycodestyle (πŸ₯‡37 Β· ⭐ 4.9K) - Simple Python style checker in one Python file. ❗Unlicensed - [GitHub](https://github.com/PyCQA/pycodestyle) (πŸ‘¨β€πŸ’» 130 Β· πŸ”€ 670 Β· πŸ“¦ 350K Β· πŸ“‹ 690 - 12% open Β· ⏱️ 20.06.2023): ``` git clone https://github.com/PyCQA/pycodestyle ``` - [PyPi](https://pypi.org/project/pycodestyle) (πŸ“₯ 29M / month): ``` pip install pycodestyle ``` - [Conda](https://anaconda.org/conda-forge/pycodestyle) (πŸ“₯ 6.6M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pycodestyle ```
wemake-python-styleguide (πŸ₯ˆ36 Β· ⭐ 2.2K) - The strictest and most opinionated python linter ever!. MIT - [GitHub](https://github.com/wemake-services/wemake-python-styleguide) (πŸ‘¨β€πŸ’» 180 Β· πŸ”€ 370 Β· πŸ“¦ 15K Β· πŸ“‹ 1.1K - 10% open Β· ⏱️ 29.06.2023): ``` git clone https://github.com/wemake-services/wemake-python-styleguide ``` - [PyPi](https://pypi.org/project/wemake-python-styleguide) (πŸ“₯ 230K / month Β· πŸ“¦ 47 Β· ⏱️ 19.01.2020): ``` pip install wemake-python-styleguide ```
pyflakes (πŸ₯ˆ34 Β· ⭐ 1.3K) - A simple program which checks Python source files for errors. MIT - [GitHub](https://github.com/PyCQA/pyflakes) (πŸ‘¨β€πŸ’» 84 Β· πŸ”€ 160 Β· πŸ“¦ 230K Β· πŸ“‹ 480 - 7% open Β· ⏱️ 29.06.2023): ``` git clone https://github.com/PyCQA/pyflakes ``` - [PyPi](https://pypi.org/project/pyflakes) (πŸ“₯ 21M / month): ``` pip install pyflakes ``` - [Conda](https://anaconda.org/conda-forge/pyflakes) (πŸ“₯ 6.3M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pyflakes ```
pydocstyle (πŸ₯ˆ32 Β· ⭐ 1.1K) - docstring style checker. MIT - [GitHub](https://github.com/PyCQA/pydocstyle) (πŸ‘¨β€πŸ’» 89 Β· πŸ”€ 180 Β· πŸ“₯ 64 Β· πŸ“¦ 56K Β· πŸ“‹ 330 - 32% open Β· ⏱️ 17.01.2023): ``` git clone https://github.com/PyCQA/pydocstyle ``` - [PyPi](https://pypi.org/project/pydocstyle) (πŸ“₯ 3.1M / month): ``` pip install pydocstyle ``` - [Conda](https://anaconda.org/conda-forge/pydocstyle) (πŸ“₯ 1.5M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pydocstyle ```
flake8-bugbear (πŸ₯ˆ31 Β· ⭐ 950) - A plugin for Flake8 finding likely bugs and design problems.. MIT - [GitHub](https://github.com/PyCQA/flake8-bugbear) (πŸ‘¨β€πŸ’» 75 Β· πŸ”€ 93 Β· πŸ“¦ 33K Β· πŸ“‹ 200 - 26% open Β· ⏱️ 26.06.2023): ``` git clone https://github.com/PyCQA/flake8-bugbear ``` - [PyPi](https://pypi.org/project/flake8-bugbear) (πŸ“₯ 1.9M / month): ``` pip install flake8-bugbear ``` - [Conda](https://anaconda.org/conda-forge/flake8-bugbear) (πŸ“₯ 710K Β· ⏱️ 07.06.2023): ``` conda install -c conda-forge flake8-bugbear ```
pylint-django (πŸ₯ˆ29 Β· ⭐ 560) - Pylint plugin for improving code analysis for when.. ❗️GPL-2.0 - [GitHub](https://github.com/pylint-dev/pylint-django) (πŸ‘¨β€πŸ’» 68 Β· πŸ”€ 120 Β· πŸ“₯ 250 Β· πŸ“¦ 26K Β· πŸ“‹ 220 - 23% open Β· ⏱️ 15.05.2023): ``` git clone https://github.com/PyCQA/pylint-django ``` - [PyPi](https://pypi.org/project/pylint-django) (πŸ“₯ 1.1M / month): ``` pip install pylint-django ``` - [Conda](https://anaconda.org/conda-forge/pylint-django) (πŸ“₯ 150K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pylint-django ```
nitpick (πŸ₯ˆ28 Β· ⭐ 350) - Enforce the same settings on multiple projects. MIT - [GitHub](https://github.com/andreoliwa/nitpick) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 22 Β· πŸ“₯ 4 Β· πŸ“¦ 1.2K Β· πŸ“‹ 120 - 37% open Β· ⏱️ 09.06.2023): ``` git clone https://github.com/andreoliwa/nitpick ``` - [PyPi](https://pypi.org/project/nitpick) (πŸ“₯ 85K / month Β· πŸ“¦ 11 Β· ⏱️ 15.05.2020): ``` pip install nitpick ```
flake8-quotes (πŸ₯ˆ28 Β· ⭐ 170) - Flake8 extension for checking quotes in python. MIT - [GitHub](https://github.com/zheller/flake8-quotes) (πŸ‘¨β€πŸ’» 32 Β· πŸ”€ 36 Β· πŸ“¦ 19K Β· πŸ“‹ 49 - 12% open Β· ⏱️ 19.12.2022): ``` git clone https://github.com/zheller/flake8-quotes ``` - [PyPi](https://pypi.org/project/flake8-quotes) (πŸ“₯ 790K / month Β· πŸ“¦ 880 Β· ⏱️ 19.12.2022): ``` pip install flake8-quotes ``` - [Conda](https://anaconda.org/conda-forge/flake8-quotes) (πŸ“₯ 680K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge flake8-quotes ```
flake8-isort (πŸ₯ˆ28 Β· ⭐ 150) - flake8 plugin that integrates isort. ❗️GPL-2.0 - [GitHub](https://github.com/gforcada/flake8-isort) (πŸ‘¨β€πŸ’» 37 Β· πŸ”€ 93 Β· πŸ“¦ 23K Β· πŸ“‹ 57 - 15% open Β· ⏱️ 22.12.2022): ``` git clone https://github.com/gforcada/flake8-isort ``` - [PyPi](https://pypi.org/project/flake8-isort) (πŸ“₯ 1.1M / month Β· πŸ“¦ 680 Β· ⏱️ 25.07.2022): ``` pip install flake8-isort ``` - [Conda](https://anaconda.org/conda-forge/flake8-isort) (πŸ“₯ 42K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge flake8-isort ```
beartype (πŸ₯ˆ27 Β· ⭐ 1.9K) - Unbearably fast near-real-time runtime type-checking in pure Python. MIT - [GitHub](https://github.com/beartype/beartype) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 33 Β· πŸ“‹ 190 - 24% open Β· ⏱️ 29.06.2023): ``` git clone https://github.com/beartype/beartype ``` - [PyPi](https://pypi.org/project/beartype) (πŸ“₯ 270K / month Β· πŸ“¦ 110 Β· ⏱️ 15.03.2022): ``` pip install beartype ``` - [Conda](https://anaconda.org/conda-forge/beartype) (πŸ“₯ 52K Β· ⏱️ 07.06.2023): ``` conda install -c conda-forge beartype ```
flake8-eradicate (πŸ₯‰26 Β· ⭐ 300) - Flake8 plugin to find commented out or dead code. MIT - [GitHub](https://github.com/wemake-services/flake8-eradicate) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 14 Β· πŸ“¦ 17K Β· πŸ“‹ 49 - 38% open Β· ⏱️ 31.05.2023): ``` git clone https://github.com/wemake-services/flake8-eradicate ``` - [PyPi](https://pypi.org/project/flake8-eradicate) (πŸ“₯ 570K / month Β· πŸ“¦ 110 Β· ⏱️ 11.08.2022): ``` pip install flake8-eradicate ``` - [Conda](https://anaconda.org/conda-forge/flake8-eradicate) (πŸ“₯ 9.5K Β· ⏱️ 01.06.2023): ``` conda install -c conda-forge flake8-eradicate ```
pylama (πŸ₯‰25 Β· ⭐ 1K Β· πŸ’€) - Code audit tool for python. MIT - [GitHub](https://github.com/klen/pylama) (πŸ‘¨β€πŸ’» 46 Β· πŸ”€ 96 Β· πŸ“¦ 5.9K Β· πŸ“‹ 140 - 34% open Β· ⏱️ 08.08.2022): ``` git clone https://github.com/klen/pylama ``` - [PyPi](https://pypi.org/project/pylama) (πŸ“₯ 160K / month): ``` pip install pylama ```
check-manifest (πŸ₯‰25 Β· ⭐ 280) - Tool to check the completeness of MANIFEST.in for Python packages. MIT - [GitHub](https://github.com/mgedmin/check-manifest) (πŸ‘¨β€πŸ’» 22 Β· πŸ”€ 39 Β· πŸ“¦ 9.3K Β· πŸ“‹ 95 - 20% open Β· ⏱️ 02.05.2023): ``` git clone https://github.com/mgedmin/check-manifest ``` - [PyPi](https://pypi.org/project/check-manifest) (πŸ“₯ 210K / month Β· πŸ“¦ 2.9K Β· ⏱️ 26.03.2015): ``` pip install check-manifest ``` - [Conda](https://anaconda.org/conda-forge/check-manifest) (πŸ“₯ 94K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge check-manifest ```
flake8-import-order (πŸ₯‰25 Β· ⭐ 270) - Flake8 plugin that checks import order against.. ❗️LGPL-3.0 - [GitHub](https://github.com/PyCQA/flake8-import-order) (πŸ‘¨β€πŸ’» 46 Β· πŸ”€ 71 Β· πŸ“‹ 100 - 11% open Β· ⏱️ 10.12.2022): ``` git clone https://github.com/PyCQA/flake8-import-order ``` - [PyPi](https://pypi.org/project/flake8-import-order) (πŸ“₯ 390K / month Β· πŸ“¦ 1.2K Β· ⏱️ 04.03.2019): ``` pip install flake8-import-order ``` - [Conda](https://anaconda.org/conda-forge/flake8-import-order) (πŸ“₯ 240K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge flake8-import-order ```
flake8-builtins (πŸ₯‰24 Β· ⭐ 100) - Check for python builtins being used as variables or.. ❗️GPL-2.0 - [GitHub](https://github.com/gforcada/flake8-builtins) (πŸ‘¨β€πŸ’» 17 Β· πŸ”€ 21 Β· πŸ“¦ 9.2K Β· πŸ“‹ 43 - 2% open Β· ⏱️ 22.12.2022): ``` git clone https://github.com/gforcada/flake8-builtins ``` - [PyPi](https://pypi.org/project/flake8-builtins) (πŸ“₯ 600K / month): ``` pip install flake8-builtins ``` - [Conda](https://anaconda.org/conda-forge/flake8-builtins) (πŸ“₯ 210K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge flake8-builtins ```
flake8-black (πŸ₯‰23 Β· ⭐ 160) - flake8 plugin to run black for checking Python coding style. MIT - [GitHub](https://github.com/peterjc/flake8-black) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 11 Β· πŸ“¦ 6.9K Β· πŸ“‹ 29 - 20% open Β· ⏱️ 03.04.2023): ``` git clone https://github.com/peterjc/flake8-black ``` - [PyPi](https://pypi.org/project/flake8-black) (πŸ“₯ 1.2M / month): ``` pip install flake8-black ``` - [Conda](https://anaconda.org/conda-forge/flake8-black) (πŸ“₯ 440K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge flake8-black ```
mypy-protobuf (πŸ₯‰21 Β· ⭐ 570) - open source tools to generate mypy stubs from protobufs. Apache-2 - [GitHub](https://github.com/nipunn1313/mypy-protobuf) (πŸ‘¨β€πŸ’» 36 Β· πŸ”€ 70 Β· πŸ“‹ 120 - 8% open Β· ⏱️ 13.03.2023): ``` git clone https://github.com/dropbox/mypy-protobuf ``` - [PyPi](https://pypi.org/project/mypy-protobuf) (πŸ“₯ 1.2M / month): ``` pip install mypy-protobuf ``` - [Conda](https://anaconda.org/conda-forge/mypy-protobuf) (πŸ“₯ 100K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge mypy-protobuf ```
pandas-vet (πŸ₯‰21 Β· ⭐ 150) - A plugin for Flake8 that checks pandas code. MIT - [GitHub](https://github.com/deppen8/pandas-vet) (πŸ‘¨β€πŸ’» 13 Β· πŸ”€ 17 Β· πŸ“₯ 62 Β· πŸ“¦ 370 Β· πŸ“‹ 52 - 42% open Β· ⏱️ 16.05.2023): ``` git clone https://github.com/deppen8/pandas-vet ``` - [PyPi](https://pypi.org/project/pandas-vet) (πŸ“₯ 54K / month): ``` pip install pandas-vet ``` - [Conda](https://anaconda.org/conda-forge/pandas-vet) (πŸ“₯ 16K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pandas-vet ```
flake8-comprehensions (πŸ₯‰20 Β· ⭐ 430) - A flake8 plugin to help you write better.. MIT - [GitHub](https://github.com/adamchainz/flake8-comprehensions) (πŸ‘¨β€πŸ’» 15 Β· πŸ”€ 19 Β· πŸ“‹ 54 - 5% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/adamchainz/flake8-comprehensions ``` - [PyPi](https://pypi.org/project/flake8-comprehensions) (πŸ“₯ 920K / month): ``` pip install flake8-comprehensions ``` - [Conda](https://anaconda.org/conda-forge/flake8-comprehensions) (πŸ“₯ 720K Β· ⏱️ 15.06.2023): ``` conda install -c conda-forge flake8-comprehensions ```
pylint-flask (πŸ₯‰20 Β· ⭐ 62 Β· πŸ’€) - A Pylint plugin to analyze Flask applications. ❗️GPL-2.0 - [GitHub](https://github.com/jschaf/pylint-flask) (πŸ‘¨β€πŸ’» 7 Β· πŸ”€ 9 Β· πŸ“¦ 7.4K Β· πŸ“‹ 12 - 50% open Β· ⏱️ 19.07.2022): ``` git clone https://github.com/jschaf/pylint-flask ``` - [PyPi](https://pypi.org/project/pylint-flask) (πŸ“₯ 310K / month Β· πŸ“¦ 360 Β· ⏱️ 30.01.2019): ``` pip install pylint-flask ``` - [Conda](https://anaconda.org/conda-forge/pylint-flask) (πŸ“₯ 97K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pylint-flask ```
hacking (πŸ₯‰19 Β· ⭐ 230 Β· πŸ“‰) - OpenStack Hacking Style Checks. Mirror of code maintained at.. Apache-2 - [GitHub](https://github.com/openstack/hacking) (πŸ‘¨β€πŸ’» 190 Β· πŸ”€ 46 Β· ⏱️ 25.04.2023): ``` git clone https://github.com/openstack/hacking ``` - [PyPi](https://pypi.org/project/hacking) (πŸ“₯ 71K / month): ``` pip install hacking ```
flake8-simplify (πŸ₯‰19 Β· ⭐ 150) - A flake8 plugin that helps you to simplify code. MIT - [GitHub](https://github.com/MartinThoma/flake8-simplify) (πŸ‘¨β€πŸ’» 13 Β· πŸ”€ 19 Β· πŸ“‹ 120 - 40% open Β· ⏱️ 30.03.2023): ``` git clone https://github.com/MartinThoma/flake8-simplify ``` - [PyPi](https://pypi.org/project/flake8-simplify) (πŸ“₯ 240K / month Β· ⏱️ 03.06.2023): ``` pip install flake8-simplify ``` - [Conda](https://anaconda.org/conda-forge/flake8-simplify) (πŸ“₯ 29K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge flake8-simplify ```
imhotep (πŸ₯‰17 Β· ⭐ 220) - A static-analysis bot for Github. MIT - [GitHub](https://github.com/justinabrahms/imhotep) (πŸ‘¨β€πŸ’» 17 Β· πŸ”€ 36 Β· πŸ“¦ 11 Β· πŸ“‹ 46 - 43% open Β· ⏱️ 17.06.2023): ``` git clone https://github.com/justinabrahms/imhotep ``` - [PyPi](https://pypi.org/project/imhotep) (πŸ“₯ 57 / month Β· πŸ“¦ 6 Β· ⏱️ 20.02.2022): ``` pip install imhotep ```
flake8-bandit (πŸ₯‰15 Β· ⭐ 100 Β· πŸ’€) - Automated security testing using bandit and flake8. MIT - [GitHub](https://github.com/tylerwince/flake8-bandit) (πŸ‘¨β€πŸ’» 12 Β· πŸ”€ 26 Β· πŸ“‹ 26 - 38% open Β· ⏱️ 29.08.2022): ``` git clone https://github.com/tylerwince/flake8-bandit ``` - [PyPi](https://pypi.org/project/flake8-bandit) (πŸ“₯ 520K / month): ``` pip install flake8-bandit ```
linty_fresh (πŸ₯‰13 Β· ⭐ 180) - Surface lint errors during code review. Apache-2 mypy - [GitHub](https://github.com/lyft/linty_fresh) (πŸ‘¨β€πŸ’» 18 Β· πŸ”€ 21 Β· πŸ“‹ 9 - 88% open Β· ⏱️ 13.12.2022): ``` git clone https://github.com/lyft/linty_fresh ``` - [PyPi](https://pypi.org/project/linty-fresh) (πŸ“₯ 45 / month Β· ⏱️ 12.12.2018): ``` pip install linty-fresh ```
Show 13 hidden projects... - flake8 (πŸ₯‡37 Β· ⭐ 2.9K Β· πŸ“ˆ) - Flake8 is a wrapper around these tools: PyFlakes;.. ❗Unlicensed - parso (πŸ₯ˆ29 Β· ⭐ 540) - A Python Parser. ❗Unlicensed - darglint (πŸ₯ˆ28 Β· ⭐ 480 Β· πŸ’€) - A python documentation linter which checks that the docstring.. MIT - coala (πŸ₯ˆ27 Β· ⭐ 3.5K Β· πŸ’€) - coala provides a unified command-line interface for linting and.. ❗️AGPL-3.0 - pep8-naming (πŸ₯ˆ27 Β· ⭐ 460) - Naming Convention checker for Python. ❗️Saxpath - data-science-types (πŸ₯‰26 Β· ⭐ 200 Β· πŸ’€) - Mypy stubs, i.e., type information, for numpy, pandas.. Apache-2 - flake8-commas (πŸ₯‰25 Β· ⭐ 130 Β· πŸ’€) - Flake8 extension for enforcing trailing commas in python. MIT - Fixit (πŸ₯‰22 Β· ⭐ 400) - Advanced Python linting framework with auto-fixes and hierarchical.. ❗Unlicensed - flake8-mypy (πŸ₯‰19 Β· ⭐ 100 Β· πŸ’€) - A plugin for flake8 integrating Mypy. MIT - bellybutton (πŸ₯‰16 Β· ⭐ 260 Β· πŸ’€) - Custom Python linting through AST expressions. MIT - flakehell (πŸ₯‰16 Β· ⭐ 230 Β· πŸ’€) - Flake8 wrapper to make it nice, legacy-friendly, configurable. MIT - pycycle (πŸ₯‰15 Β· ⭐ 320 Β· πŸ’€) - Tool for pinpointing circular imports in Python. Find cyclic imports.. MIT - yala (πŸ₯‰15 Β· ⭐ 14) - Yet Another Linter Aggregator. MIT

## Type checkers Back to top
mypy (πŸ₯‡46 Β· ⭐ 16K Β· πŸ“ˆ) - Optional static typing for Python. MIT - [GitHub](https://github.com/python/mypy) (πŸ‘¨β€πŸ’» 660 Β· πŸ”€ 2.6K Β· πŸ“¦ 190K Β· πŸ“‹ 9.3K - 28% open Β· ⏱️ 29.06.2023): ``` git clone https://github.com/python/mypy ``` - [PyPi](https://pypi.org/project/mypy) (πŸ“₯ 15M / month Β· πŸ“¦ 7.9K Β· ⏱️ 06.06.2022): ``` pip install mypy ``` - [Conda](https://anaconda.org/conda-forge/mypy) (πŸ“₯ 3.1M Β· ⏱️ 26.06.2023): ``` conda install -c conda-forge mypy ```
pyright (πŸ₯ˆ37 Β· ⭐ 11K) - Static Type Checker for Python. MIT - [GitHub](https://github.com/microsoft/pyright) (πŸ‘¨β€πŸ’» 95 Β· πŸ”€ 1.1K Β· πŸ“₯ 550 Β· πŸ“¦ 530 Β· πŸ“‹ 4.2K - 0% open Β· ⏱️ 28.06.2023): ``` git clone https://github.com/Microsoft/pyright ``` - [npm](https://www.npmjs.com/package/pyright) (πŸ“₯ 610K / month Β· πŸ“¦ 10 Β· ⏱️ 26.06.2023): ``` npm install pyright ```
pyre-check (πŸ₯‰35 Β· ⭐ 6.4K) - Performant type-checking for python. MIT - [GitHub](https://github.com/facebook/pyre-check) (πŸ‘¨β€πŸ’» 250 Β· πŸ”€ 410 Β· πŸ“‹ 380 - 36% open Β· ⏱️ 29.06.2023): ``` git clone https://github.com/facebook/pyre-check ``` - [PyPi](https://pypi.org/project/pyre-check) (πŸ“₯ 63K / month Β· πŸ“¦ 48 Β· ⏱️ 08.11.2022): ``` pip install pyre-check ```
typeguard (πŸ₯‰35 Β· ⭐ 1.2K Β· πŸ“ˆ) - Run-time type checker for Python. MIT - [GitHub](https://github.com/agronholm/typeguard) (πŸ‘¨β€πŸ’» 30 Β· πŸ”€ 93 Β· πŸ“¦ 16K Β· πŸ“‹ 270 - 5% open Β· ⏱️ 20.06.2023): ``` git clone https://github.com/agronholm/typeguard ``` - [PyPi](https://pypi.org/project/typeguard) (πŸ“₯ 10M / month Β· πŸ“¦ 1.4K Β· ⏱️ 17.10.2020): ``` pip install typeguard ``` - [Conda](https://anaconda.org/conda-forge/typeguard) (πŸ“₯ 310K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge typeguard ```
pytype (πŸ₯‰32 Β· ⭐ 4.3K) - A static type analyzer for Python code. Apache-2 - [GitHub](https://github.com/google/pytype) (πŸ‘¨β€πŸ’» 93 Β· πŸ”€ 270 Β· πŸ“‹ 630 - 20% open Β· ⏱️ 17.06.2023): ``` git clone https://github.com/google/pytype ``` - [PyPi](https://pypi.org/project/pytype) (πŸ“₯ 210K / month Β· πŸ“¦ 120 Β· ⏱️ 31.01.2023): ``` pip install pytype ``` - [Conda](https://anaconda.org/conda-forge/pytype) (πŸ“₯ 160K Β· ⏱️ 17.06.2023): ``` conda install -c conda-forge pytype ```

## Code Formatters Back to top
black (πŸ₯‡44 Β· ⭐ 33K) - The uncompromising Python code formatter. MIT - [GitHub](https://github.com/psf/black) (πŸ‘¨β€πŸ’» 380 Β· πŸ”€ 2.1K Β· πŸ“₯ 43K Β· πŸ“¦ 390K Β· πŸ“‹ 2.3K - 17% open Β· ⏱️ 28.06.2023): ``` git clone https://github.com/psf/black ``` - [PyPi](https://pypi.org/project/black) (πŸ“₯ 21M / month Β· πŸ“¦ 11K Β· ⏱️ 26.09.2018): ``` pip install black ``` - [Conda](https://anaconda.org/conda-forge/black) (πŸ“₯ 7.5M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge black ```
yapf (πŸ₯ˆ41 Β· ⭐ 13K) - A formatter for Python files. Apache-2 - [GitHub](https://github.com/google/yapf) (πŸ‘¨β€πŸ’» 150 Β· πŸ”€ 900 Β· πŸ“¦ 79K Β· πŸ“‹ 810 - 45% open Β· ⏱️ 26.06.2023): ``` git clone https://github.com/google/yapf ``` - [PyPi](https://pypi.org/project/yapf) (πŸ“₯ 3.5M / month Β· πŸ“¦ 2.2K Β· ⏱️ 21.02.2023): ``` pip install yapf ``` - [Conda](https://anaconda.org/conda-forge/yapf) (πŸ“₯ 1.5M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge yapf ```
isort (πŸ₯ˆ40 Β· ⭐ 5.9K) - A Python utility / library to sort imports. MIT - [GitHub](https://github.com/PyCQA/isort) (πŸ‘¨β€πŸ’» 280 Β· πŸ”€ 540 Β· πŸ“¦ 400K Β· πŸ“‹ 1.2K - 13% open Β· ⏱️ 25.05.2023): ``` git clone https://github.com/PyCQA/isort ``` - [PyPi](https://pypi.org/project/isort) (πŸ“₯ 26M / month Β· πŸ“¦ 17K Β· ⏱️ 10.03.2019): ``` pip install isort ``` - [Conda](https://anaconda.org/conda-forge/isort) (πŸ“₯ 4.9M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge isort ```
autopep8 (πŸ₯‰37 Β· ⭐ 4.4K) - A tool that automatically formats Python code to conform to the PEP 8.. MIT - [GitHub](https://github.com/hhatto/autopep8) (πŸ‘¨β€πŸ’» 57 Β· πŸ”€ 290 Β· πŸ“¦ 180K Β· πŸ“‹ 470 - 24% open Β· ⏱️ 19.03.2023): ``` git clone https://github.com/hhatto/autopep8 ``` - [PyPi](https://pypi.org/project/autopep8) (πŸ“₯ 3.5M / month Β· πŸ“¦ 5.8K Β· ⏱️ 28.10.2022): ``` pip install autopep8 ``` - [Conda](https://anaconda.org/conda-forge/autopep8) (πŸ“₯ 1.2M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge autopep8 ```
docformatter (πŸ₯‰29 Β· ⭐ 420) - Formats docstrings to follow PEP 257. MIT - [GitHub](https://github.com/PyCQA/docformatter) (πŸ‘¨β€πŸ’» 26 Β· πŸ”€ 55 Β· πŸ“₯ 3 Β· πŸ“¦ 2.9K Β· πŸ“‹ 130 - 8% open Β· ⏱️ 23.06.2023): ``` git clone https://github.com/myint/docformatter ``` - [PyPi](https://pypi.org/project/docformatter) (πŸ“₯ 350K / month Β· πŸ“¦ 130 Β· ⏱️ 27.12.2020): ``` pip install docformatter ``` - [Conda](https://anaconda.org/conda-forge/docformatter) (πŸ“₯ 73K Β· ⏱️ 26.06.2023): ``` conda install -c conda-forge docformatter ```
autoimport (πŸ₯‰14 Β· ⭐ 71) - Autoimport automatically fixes wrong import statements. ❗️GPL-3.0 - [GitHub](https://github.com/lyz-code/autoimport) (πŸ‘¨β€πŸ’» 13 Β· πŸ”€ 14 Β· πŸ“¦ 110 Β· πŸ“‹ 38 - 21% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/lyz-code/autoimport ``` - [PyPi](https://pypi.org/project/autoimport) (πŸ“₯ 3.4K / month): ``` pip install autoimport ```
Show 1 hidden projects... - pyformat (πŸ₯‰19 Β· ⭐ 93 Β· πŸ’€) - Formats Python code to follow a consistent style. ❗️Saxpath

## Code Refactoring Back to top
rope (πŸ₯‡35 Β· ⭐ 1.6K) - a python refactoring library. ❗️LGPL-3.0 - [GitHub](https://github.com/python-rope/rope) (πŸ‘¨β€πŸ’» 77 Β· πŸ”€ 160 Β· πŸ“¦ 65K Β· πŸ“‹ 310 - 25% open Β· ⏱️ 29.06.2023): ``` git clone https://github.com/python-rope/rope ``` - [PyPi](https://pypi.org/project/rope) (πŸ“₯ 730K / month Β· πŸ“¦ 1.6K Β· ⏱️ 22.06.2022): ``` pip install rope ``` - [Conda](https://anaconda.org/conda-forge/rope) (πŸ“₯ 1.2M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge rope ```
vulture (πŸ₯ˆ31 Β· ⭐ 2.6K) - Find dead Python code. MIT - [GitHub](https://github.com/jendrikseipp/vulture) (πŸ‘¨β€πŸ’» 35 Β· πŸ”€ 120 Β· πŸ“¦ 3.9K Β· πŸ“‹ 180 - 8% open Β· ⏱️ 27.02.2023): ``` git clone https://github.com/jendrikseipp/vulture ``` - [PyPi](https://pypi.org/project/vulture) (πŸ“₯ 580K / month Β· πŸ“¦ 240 Β· ⏱️ 09.01.2023): ``` pip install vulture ``` - [Conda](https://anaconda.org/conda-forge/vulture) (πŸ“₯ 71K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge vulture ```
autoflake (πŸ₯ˆ28 Β· ⭐ 780) - Removes unused imports and unused variables as reported by pyflakes. MIT - [GitHub](https://github.com/PyCQA/autoflake) (πŸ‘¨β€πŸ’» 37 Β· πŸ”€ 77 Β· πŸ“‹ 100 - 34% open Β· ⏱️ 25.06.2023): ``` git clone https://github.com/myint/autoflake ``` - [PyPi](https://pypi.org/project/autoflake) (πŸ“₯ 1.6M / month Β· πŸ“¦ 670 Β· ⏱️ 01.09.2022): ``` pip install autoflake ``` - [Conda](https://anaconda.org/conda-forge/autoflake) (πŸ“₯ 480K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge autoflake ```
pyupgrade (πŸ₯ˆ25 Β· ⭐ 2.7K) - A tool (and pre-commit hook) to automatically upgrade syntax for newer.. MIT - [GitHub](https://github.com/asottile/pyupgrade) (πŸ‘¨β€πŸ’» 34 Β· πŸ”€ 150 Β· πŸ“‹ 380 - 3% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/asottile/pyupgrade ``` - [PyPi](https://pypi.org/project/pyupgrade) (πŸ“₯ 380K / month): ``` pip install pyupgrade ``` - [Conda](https://anaconda.org/conda-forge/pyupgrade) (πŸ“₯ 560K Β· ⏱️ 18.06.2023): ``` conda install -c conda-forge pyupgrade ```
Bowler (πŸ₯ˆ25 Β· ⭐ 1.5K) - Safe code refactoring for modern Python. MIT - [GitHub](https://github.com/facebookincubator/Bowler) (πŸ‘¨β€πŸ’» 27 Β· πŸ”€ 93 Β· πŸ“‹ 80 - 57% open Β· ⏱️ 20.01.2023): ``` git clone https://github.com/facebookincubator/Bowler ``` - [PyPi](https://pypi.org/project/bowler) (πŸ“₯ 99K / month Β· πŸ“¦ 11 Β· ⏱️ 17.09.2020): ``` pip install bowler ``` - [Conda](https://anaconda.org/conda-forge/bowler) (πŸ“₯ 17K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge bowler ```
unimport (πŸ₯‰20 Β· ⭐ 220) - The ultimate linter and formatter for removing unused import statements.. MIT - [GitHub](https://github.com/hakancelikdev/unimport) (πŸ‘¨β€πŸ’» 15 Β· πŸ”€ 21 Β· πŸ“‹ 110 - 10% open Β· ⏱️ 31.05.2023): ``` git clone https://github.com/hakancelik96/unimport ``` - [PyPi](https://pypi.org/project/unimport) (πŸ“₯ 14K / month): ``` pip install unimport ```
add-trailing-comma (πŸ₯‰17 Β· ⭐ 300) - A tool (and pre-commit hook) to automatically add trailing.. MIT - [GitHub](https://github.com/asottile/add-trailing-comma) (πŸ‘¨β€πŸ’» 11 Β· πŸ”€ 18 Β· πŸ“‹ 51 - 1% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/asottile/add-trailing-comma ``` - [PyPi](https://pypi.org/project/add-trailing-comma) (πŸ“₯ 22K / month): ``` pip install add-trailing-comma ```
com2ann (πŸ₯‰15 Β· ⭐ 130) - Tool for translation type comments to type annotations in Python. MIT - [GitHub](https://github.com/ilevkivskyi/com2ann) (πŸ‘¨β€πŸ’» 5 Β· πŸ”€ 10 Β· πŸ“¦ 42 Β· πŸ“‹ 26 - 26% open Β· ⏱️ 27.04.2023): ``` git clone https://github.com/ilevkivskyi/com2ann ``` - [PyPi](https://pypi.org/project/com2ann) (πŸ“₯ 16K / month): ``` pip install com2ann ```
retype (πŸ₯‰14 Β· ⭐ 130 Β· πŸ’€) - Re-apply type annotations from .pyi stubs to your codebase. MIT - [GitHub](https://github.com/ambv/retype) (πŸ‘¨β€πŸ’» 9 Β· πŸ”€ 17 Β· ⏱️ 14.08.2022): ``` git clone https://github.com/ambv/retype ``` - [PyPi](https://pypi.org/project/retype) (πŸ“₯ 750 / month): ``` pip install retype ``` - [Conda](https://anaconda.org/conda-forge/retype) (πŸ“₯ 23K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge retype ```
Show 9 hidden projects... - jedi (πŸ₯‡37 Β· ⭐ 5.4K) - Awesome autocompletion, static analysis and refactoring library for.. ❗Unlicensed - eradicate (πŸ₯ˆ25 Β· ⭐ 180) - Removes commented-out code from Python files. ❗Unlicensed - redbaron (πŸ₯‰23 Β· ⭐ 670 Β· πŸ’€) - Bottom-up approach to refactoring in python. ❗Unlicensed - baron (πŸ₯‰22 Β· ⭐ 280 Β· πŸ’€) - IDE allow you to refactor code, Baron allows you to write.. ❗️LGPL-3.0 - MonkeyType (πŸ₯‰20 Β· ⭐ 4.3K) - A Python library that generates static type annotations by.. ❗Unlicensed - pyannotate (πŸ₯‰19 Β· ⭐ 1.4K Β· πŸ’€) - Auto-generate PEP-484 annotations. Apache-2 - unify (πŸ₯‰19 Β· ⭐ 81 Β· πŸ’€) - Modifies strings to all use the same quote where possible. MIT - pep8ify (πŸ₯‰14 Β· ⭐ 120 Β· πŸ’€) - A library that modifies python source code to conform to pep8. Apache-2 - massedit (πŸ₯‰13 Β· ⭐ 110 Β· πŸ’€) - Programmatically edit text files with Python. Useful for source to.. MIT

## Code Security Back to top
bandit (πŸ₯‡37 Β· ⭐ 5.3K) - Bandit is a tool designed to find common security issues in Python.. Apache-2 - [GitHub](https://github.com/PyCQA/bandit) (πŸ‘¨β€πŸ’» 170 Β· πŸ”€ 520 Β· πŸ“₯ 710 Β· πŸ“¦ 42K Β· πŸ“‹ 610 - 26% open Β· ⏱️ 15.06.2023): ``` git clone https://github.com/PyCQA/bandit ``` - [PyPi](https://pypi.org/project/bandit) (πŸ“₯ 3.1M / month): ``` pip install bandit ``` - [Conda](https://anaconda.org/conda-forge/bandit) (πŸ“₯ 240K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge bandit ```
safety (πŸ₯‰26 Β· ⭐ 1.5K) - Safety checks Python dependencies for known security vulnerabilities and.. MIT - [GitHub](https://github.com/pyupio/safety) (πŸ‘¨β€πŸ’» 41 Β· πŸ”€ 120 Β· πŸ“₯ 350K Β· πŸ“¦ 19 Β· πŸ“‹ 170 - 30% open Β· ⏱️ 29.05.2023): ``` git clone https://github.com/pyupio/safety ``` - [PyPi](https://pypi.org/project/safety) (πŸ“₯ 1M / month): ``` pip install safety ``` - [Conda](https://anaconda.org/conda-forge/safety) (πŸ“₯ 69K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge safety ```
detect-secrets (πŸ₯‰25 Β· ⭐ 3.1K) - An enterprise friendly way of detecting and preventing.. Apache-2 - [GitHub](https://github.com/Yelp/detect-secrets) (πŸ‘¨β€πŸ’» 73 Β· πŸ”€ 330 Β· πŸ“‹ 290 - 31% open Β· ⏱️ 11.04.2023): ``` git clone https://github.com/Yelp/detect-secrets ``` - [PyPi](https://pypi.org/project/detect-secrets) (πŸ“₯ 410K / month): ``` pip install detect-secrets ```
dlint (πŸ₯‰16 Β· ⭐ 150) - Dlint is a tool for encouraging best coding practices and helping ensure.. BSD-3 - [GitHub](https://github.com/dlint-py/dlint) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 16 Β· πŸ“‹ 43 - 51% open Β· ⏱️ 10.04.2023): ``` git clone https://github.com/dlint-py/dlint ``` - [PyPi](https://pypi.org/project/dlint) (πŸ“₯ 120K / month): ``` pip install dlint ``` - [Conda](https://anaconda.org/conda-forge/dlint) (πŸ“₯ 3K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge dlint ```
Show 4 hidden projects... - pyarmor (πŸ₯ˆ35 Β· ⭐ 2.3K) - A tool used to obfuscate python scripts, bind obfuscated scripts.. ❗️SGI-B-2.0 - sqlmap (πŸ₯ˆ29 Β· ⭐ 27K) - Automatic SQL injection and database takeover tool. ❗Unlicensed - pyt (πŸ₯‰22 Β· ⭐ 2.1K Β· πŸ’€) - A Static Analysis Tool for Detecting Security Vulnerabilities in.. ❗️GPL-2.0 - dodgy (πŸ₯‰21 Β· ⭐ 110 Β· πŸ’€) - Looks at Python code to search for things which look dodgy such as.. MIT

## Virtual Environments Back to top
pipenv (πŸ₯‡45 Β· ⭐ 24K) - Python Development Workflow for Humans. MIT - [GitHub](https://github.com/pypa/pipenv) (πŸ‘¨β€πŸ’» 470 Β· πŸ”€ 1.9K Β· πŸ“¦ 91K Β· πŸ“‹ 4K - 4% open Β· ⏱️ 26.06.2023): ``` git clone https://github.com/pypa/pipenv ``` - [PyPi](https://pypi.org/project/pipenv) (πŸ“₯ 6.9M / month Β· πŸ“¦ 1.3K Β· ⏱️ 04.07.2022): ``` pip install pipenv ``` - [Conda](https://anaconda.org/conda-forge/pipenv) (πŸ“₯ 110K Β· ⏱️ 26.06.2023): ``` conda install -c conda-forge pipenv ```
virtualenv (πŸ₯ˆ41 Β· ⭐ 4.5K) - Virtual Python Environment builder. MIT - [GitHub](https://github.com/pypa/virtualenv) (πŸ‘¨β€πŸ’» 260 Β· πŸ”€ 1K Β· πŸ“¦ 280K Β· πŸ“‹ 1.4K - 5% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/pypa/virtualenv ``` - [PyPi](https://pypi.org/project/virtualenv) (πŸ“₯ 57M / month Β· πŸ“¦ 18K Β· ⏱️ 17.08.2020): ``` pip install virtualenv ``` - [Conda](https://anaconda.org/conda-forge/virtualenv) (πŸ“₯ 4.7M Β· ⏱️ 17.06.2023): ``` conda install -c conda-forge virtualenv ```
nodeenv (πŸ₯ˆ34 Β· ⭐ 1.6K) - Virtual environment for Node.js & integrator with virtualenv. BSD-3 - [GitHub](https://github.com/ekalinin/nodeenv) (πŸ‘¨β€πŸ’» 91 Β· πŸ”€ 180 Β· πŸ“¦ 50K Β· πŸ“‹ 180 - 27% open Β· ⏱️ 12.05.2023): ``` git clone https://github.com/ekalinin/nodeenv ``` - [PyPi](https://pypi.org/project/nodeenv) (πŸ“₯ 10M / month Β· πŸ“¦ 920 Β· ⏱️ 25.06.2022): ``` pip install nodeenv ``` - [Conda](https://anaconda.org/conda-forge/nodeenv) (πŸ“₯ 2.7M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge nodeenv ```
pyenv (πŸ₯ˆ33 Β· ⭐ 32K) - Simple Python version management. MIT - [GitHub](https://github.com/pyenv/pyenv) (πŸ‘¨β€πŸ’» 420 Β· πŸ”€ 2.8K Β· πŸ“‹ 1.6K - 1% open Β· ⏱️ 21.06.2023): ``` git clone https://github.com/pyenv/pyenv ``` - [PyPi](https://pypi.org/project/pyenv) (πŸ“₯ 10K / month Β· πŸ“¦ 1 Β· ⏱️ 12.01.2019): ``` pip install pyenv ```
pyenv-virtualenv (πŸ₯‰21 Β· ⭐ 5.6K) - a pyenv plugin to manage virtualenv (a.k.a. python-virtualenv). MIT - [GitHub](https://github.com/pyenv/pyenv-virtualenv) (πŸ‘¨β€πŸ’» 58 Β· πŸ”€ 370 Β· πŸ“‹ 330 - 32% open Β· ⏱️ 26.06.2023): ``` git clone https://github.com/pyenv/pyenv-virtualenv ```
dh-virtualenv (πŸ₯‰17 Β· ⭐ 1.6K) - Python virtualenvs in Debian packages. ❗️GPL-2.0 - [GitHub](https://github.com/spotify/dh-virtualenv) (πŸ‘¨β€πŸ’» 60 Β· πŸ”€ 180 Β· πŸ“‹ 200 - 15% open Β· ⏱️ 03.01.2023): ``` git clone https://github.com/spotify/dh-virtualenv ```
pyenv-installer (πŸ₯‰16 Β· ⭐ 3.6K) - This tool is used to install `pyenv` and friends. MIT - [GitHub](https://github.com/pyenv/pyenv-installer) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 400 Β· πŸ“‹ 77 - 7% open Β· ⏱️ 10.06.2023): ``` git clone https://github.com/pyenv/pyenv-installer ```
freshenv (πŸ₯‰13 Β· ⭐ 170 Β· πŸ’€) - Provision, share, manage local and cloud developer environments. MPL-2.0 - [GitHub](https://github.com/raiyanyahya/freshenv) (πŸ‘¨β€πŸ’» 3 Β· πŸ”€ 3 Β· ⏱️ 06.11.2022): ``` git clone https://github.com/raiyanyahya/freshenv ``` - [PyPi](https://pypi.org/project/freshenv) (πŸ“₯ 340 / month): ``` pip install freshenv ``` - [Conda](https://anaconda.org/raiyanyahya/freshenv): ``` conda install -c raiyanyahya freshenv ```
Show 2 hidden projects... - vex (πŸ₯‰16 Β· ⭐ 370 Β· πŸ’€) - Run a command in the named virtualenv. MIT - pipenv-pipes (πŸ₯‰12 Β· ⭐ 130 Β· πŸ’€) - A PipEnv Environment Switcher. MIT

## Dependency & Package Managers Back to top
pip (πŸ₯‡44 Β· ⭐ 8.8K) - The Python package installer. MIT - [GitHub](https://github.com/pypa/pip) (πŸ‘¨β€πŸ’» 730 Β· πŸ”€ 2.8K Β· πŸ“¦ 140K Β· πŸ“‹ 6.8K - 13% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/pypa/pip ``` - [PyPi](https://pypi.org/project/pip) (πŸ“₯ 140M / month): ``` pip install pip ``` - [Conda](https://anaconda.org/conda-forge/pip) (πŸ“₯ 82M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pip ```
pip-tools (πŸ₯ˆ39 Β· ⭐ 6.9K) - A set of tools to keep your pinned Python dependencies fresh. BSD-3 - [GitHub](https://github.com/jazzband/pip-tools) (πŸ‘¨β€πŸ’» 190 Β· πŸ”€ 510 Β· πŸ“¦ 21K Β· πŸ“‹ 950 - 13% open Β· ⏱️ 28.06.2023): ``` git clone https://github.com/jazzband/pip-tools ``` - [PyPi](https://pypi.org/project/pip-tools) (πŸ“₯ 8.4M / month): ``` pip install pip-tools ``` - [Conda](https://anaconda.org/conda-forge/pip-tools) (πŸ“₯ 96K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pip-tools ```
poetry (πŸ₯ˆ36 Β· ⭐ 26K) - Python packaging and dependency management made easy. MIT - [GitHub](https://github.com/python-poetry/poetry) (πŸ‘¨β€πŸ’» 460 Β· πŸ”€ 1.9K Β· πŸ“₯ 15M Β· πŸ“‹ 5K - 10% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/python-poetry/poetry ``` - [PyPi](https://pypi.org/project/poetry) (πŸ“₯ 13M / month): ``` pip install poetry ``` - [Conda](https://anaconda.org/conda-forge/poetry) (πŸ“₯ 910K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge poetry ```
pipreqs (πŸ₯ˆ34 Β· ⭐ 5.2K) - pipreqs - Generate pip requirements.txt file based on imports of any.. Apache-2 - [GitHub](https://github.com/bndr/pipreqs) (πŸ‘¨β€πŸ’» 59 Β· πŸ”€ 340 Β· πŸ“¦ 20K Β· πŸ“‹ 230 - 57% open Β· ⏱️ 14.04.2023): ``` git clone https://github.com/bndr/pipreqs ``` - [PyPi](https://pypi.org/project/pipreqs) (πŸ“₯ 1.5M / month): ``` pip install pipreqs ``` - [Conda](https://anaconda.org/conda-forge/pipreqs) (πŸ“₯ 37K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pipreqs ```
pipx (πŸ₯‰33 Β· ⭐ 6.6K) - Install and Run Python Applications in Isolated Environments. MIT - [GitHub](https://github.com/pypa/pipx) (πŸ‘¨β€πŸ’» 95 Β· πŸ”€ 300 Β· πŸ“₯ 2.3K Β· πŸ“¦ 1.3K Β· πŸ“‹ 580 - 23% open Β· ⏱️ 29.06.2023): ``` git clone https://github.com/pypa/pipx ``` - [PyPi](https://pypi.org/project/pipx) (πŸ“₯ 1.2M / month Β· πŸ“¦ 14 Β· ⏱️ 17.10.2020): ``` pip install pipx ``` - [Conda](https://anaconda.org/conda-forge/pipx) (πŸ“₯ 28K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pipx ```
PDM (πŸ₯‰33 Β· ⭐ 4.8K) - A modern Python package and dependency manager supporting the latest PEP.. MIT - [GitHub](https://github.com/pdm-project/pdm) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 230 Β· πŸ“₯ 4 Β· πŸ“¦ 150 Β· πŸ“‹ 1.1K - 2% open Β· ⏱️ 29.06.2023): ``` git clone https://github.com/pdm-project/pdm ``` - [PyPi](https://pypi.org/project/pdm) (πŸ“₯ 250K / month): ``` pip install pdm ``` - [Conda](https://anaconda.org/conda-forge/pdm) (πŸ“₯ 150K Β· ⏱️ 13.06.2023): ``` conda install -c conda-forge pdm ```
mamba (πŸ₯‰28 Β· ⭐ 4.8K) - The Fast Cross-Platform Package Manager. BSD-3 - [GitHub](https://github.com/mamba-org/mamba) (πŸ‘¨β€πŸ’» 130 Β· πŸ”€ 280 Β· πŸ“‹ 1.4K - 35% open Β· ⏱️ 29.06.2023): ``` git clone https://github.com/mamba-org/mamba ``` - [Conda](https://anaconda.org/conda-forge/mamba) (πŸ“₯ 7.9M Β· ⏱️ 27.06.2023): ``` conda install -c conda-forge mamba ```
pip-run (πŸ₯‰20 Β· ⭐ 85) - pip-run - dynamic dependency loader for Python. MIT - [GitHub](https://github.com/jaraco/pip-run) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 15 Β· πŸ“‹ 59 - 1% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/jaraco/pip-run ``` - [PyPi](https://pypi.org/project/pip-run) (πŸ“₯ 4.5K / month Β· πŸ“¦ 3 Β· ⏱️ 06.07.2022): ``` pip install pip-run ```
Show 3 hidden projects... - conda (πŸ₯‡41 Β· ⭐ 5.5K) - A system-level, binary package and environment manager running on.. ❗Unlicensed - dephell (πŸ₯‰25 Β· ⭐ 1.8K Β· πŸ’€) - Python project management. Manage packages: convert between formats,.. MIT - pyflow (πŸ₯‰22 Β· ⭐ 1.3K Β· πŸ’€) - An installation and dependency system for Python. MIT

## Code Metrics & Complexity Back to top
prospector (πŸ₯‡34 Β· ⭐ 1.8K) - Inspects Python source files and provides information about.. ❗️GPL-2.0 - [GitHub](https://github.com/landscapeio/prospector) (πŸ‘¨β€πŸ’» 89 Β· πŸ”€ 170 Β· πŸ“¦ 4.3K Β· πŸ“‹ 360 - 14% open Β· ⏱️ 20.06.2023): ``` git clone https://github.com/PyCQA/prospector ``` - [PyPi](https://pypi.org/project/prospector) (πŸ“₯ 740K / month Β· πŸ“¦ 680 Β· ⏱️ 18.03.2022): ``` pip install prospector ``` - [Conda](https://anaconda.org/conda-forge/prospector) (πŸ“₯ 77K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge prospector ```
mccabe (πŸ₯ˆ30 Β· ⭐ 580) - McCabe complexity checker for Python. ❗️Saxpath - [GitHub](https://github.com/PyCQA/mccabe) (πŸ‘¨β€πŸ’» 23 Β· πŸ”€ 54 Β· πŸ“¦ 380K Β· πŸ“‹ 52 - 25% open Β· ⏱️ 19.06.2023): ``` git clone https://github.com/PyCQA/mccabe ``` - [PyPi](https://pypi.org/project/mccabe) (πŸ“₯ 28M / month Β· πŸ“¦ 16K Β· ⏱️ 24.01.2022): ``` pip install mccabe ``` - [Conda](https://anaconda.org/conda-forge/mccabe) (πŸ“₯ 6.9M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge mccabe ```
radon (πŸ₯ˆ29 Β· ⭐ 1.5K) - Various code metrics for Python code. MIT - [GitHub](https://github.com/rubik/radon) (πŸ‘¨β€πŸ’» 56 Β· πŸ”€ 110 Β· πŸ“¦ 4.1K Β· πŸ“‹ 170 - 12% open Β· ⏱️ 18.06.2023): ``` git clone https://github.com/rubik/radon ``` - [PyPi](https://pypi.org/project/radon) (πŸ“₯ 420K / month Β· πŸ“¦ 620 Β· ⏱️ 28.01.2020): ``` pip install radon ``` - [Conda](https://anaconda.org/conda-forge/radon) (πŸ“₯ 60K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge radon ```
wily (πŸ₯‰25 Β· ⭐ 1.1K) - A Python application for tracking, reporting on timing and complexity in.. Apache-2 - [GitHub](https://github.com/tonybaloney/wily) (πŸ‘¨β€πŸ’» 23 Β· πŸ”€ 55 Β· πŸ“¦ 180 Β· πŸ“‹ 92 - 34% open Β· ⏱️ 13.03.2023): ``` git clone https://github.com/tonybaloney/wily ``` - [PyPi](https://pypi.org/project/wily) (πŸ“₯ 11K / month Β· πŸ“¦ 9 Β· ⏱️ 14.10.2018): ``` pip install wily ```
xenon (πŸ₯‰22 Β· ⭐ 220) - Monitoring tool based on radon. MIT - [GitHub](https://github.com/rubik/xenon) (πŸ‘¨β€πŸ’» 9 Β· πŸ”€ 20 Β· πŸ“¦ 1.1K Β· πŸ“‹ 36 - 25% open Β· ⏱️ 18.06.2023): ``` git clone https://github.com/rubik/xenon ``` - [PyPi](https://pypi.org/project/xenon) (πŸ“₯ 130K / month Β· πŸ“¦ 75 Β· ⏱️ 24.02.2022): ``` pip install xenon ``` - [Conda](https://anaconda.org/conda-forge/xenon) (πŸ“₯ 20K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge xenon ```
cohesion (πŸ₯‰17 Β· ⭐ 200) - A tool for measuring Python class cohesion. ❗️GPL-3.0 - [GitHub](https://github.com/mschwager/cohesion) (πŸ‘¨β€πŸ’» 3 Β· πŸ”€ 4 Β· πŸ“‹ 17 - 29% open Β· ⏱️ 08.03.2023): ``` git clone https://github.com/mschwager/cohesion ``` - [PyPi](https://pypi.org/project/cohesion) (πŸ“₯ 6K / month Β· πŸ“¦ 11 Β· ⏱️ 10.07.2019): ``` pip install cohesion ``` - [Conda](https://anaconda.org/conda-forge/cohesion) (πŸ“₯ 1.6K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge cohesion ```

## Logging Back to top
rich (πŸ₯‡43 Β· ⭐ 44K) - Rich is a Python library for rich text and beautiful formatting in the terminal. MIT - [GitHub](https://github.com/Textualize/rich) (πŸ‘¨β€πŸ’» 220 Β· πŸ”€ 1.5K Β· πŸ“¦ 100K Β· πŸ“‹ 1.1K - 10% open Β· ⏱️ 21.06.2023): ``` git clone https://github.com/Textualize/rich ``` - [PyPi](https://pypi.org/project/rich) (πŸ“₯ 25M / month): ``` pip install rich ``` - [Conda](https://anaconda.org/conda-forge/rich) (πŸ“₯ 4.2M Β· ⏱️ 12.06.2023): ``` conda install -c conda-forge rich ```
tqdm (πŸ₯‡42 Β· ⭐ 25K) - A Fast, Extensible Progress Bar for Python and CLI. MPL-2.0 - [GitHub](https://github.com/tqdm/tqdm) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 1.3K Β· πŸ“₯ 12K Β· πŸ“¦ 500K Β· πŸ“‹ 1K - 43% open Β· ⏱️ 03.03.2023): ``` git clone https://github.com/tqdm/tqdm ``` - [PyPi](https://pypi.org/project/tqdm) (πŸ“₯ 57M / month Β· πŸ“¦ 26K Β· ⏱️ 11.01.2019): ``` pip install tqdm ``` - [Conda](https://anaconda.org/conda-forge/tqdm) (πŸ“₯ 21M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge tqdm ``` - [Docker Hub](https://hub.docker.com/r/tqdm/tqdm) (πŸ“₯ 4.1K Β· ⭐ 2 Β· ⏱️ 10.06.2023): ``` docker pull tqdm/tqdm ```
sentry-sdk (πŸ₯‡39 Β· ⭐ 1.6K) - The official Python SDK for Sentry.io. MIT - [GitHub](https://github.com/getsentry/sentry-python) (πŸ‘¨β€πŸ’» 180 Β· πŸ”€ 380 Β· πŸ“₯ 3.6K Β· πŸ“¦ 46K Β· πŸ“‹ 940 - 19% open Β· ⏱️ 29.06.2023): ``` git clone https://github.com/getsentry/sentry-python ``` - [PyPi](https://pypi.org/project/sentry-sdk) (πŸ“₯ 16M / month): ``` pip install sentry-sdk ``` - [Conda](https://anaconda.org/conda-forge/sentry-sdk) (πŸ“₯ 500K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge sentry-sdk ```
loguru (πŸ₯ˆ37 Β· ⭐ 15K) - Python logging made (stupidly) simple. MIT - [GitHub](https://github.com/Delgan/loguru) (πŸ‘¨β€πŸ’» 43 Β· πŸ”€ 610 Β· πŸ“¦ 56K Β· πŸ“‹ 790 - 13% open Β· ⏱️ 02.06.2023): ``` git clone https://github.com/Delgan/loguru ``` - [PyPi](https://pypi.org/project/loguru) (πŸ“₯ 8.8M / month): ``` pip install loguru ``` - [Conda](https://anaconda.org/conda-forge/loguru) (πŸ“₯ 1.3M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge loguru ```
python-json-logger (πŸ₯ˆ34 Β· ⭐ 1.5K) - Json Formatter for the standard python logger. BSD-2 - [GitHub](https://github.com/madzak/python-json-logger) (πŸ‘¨β€πŸ’» 63 Β· πŸ”€ 210 Β· πŸ“¦ 55K Β· πŸ“‹ 94 - 5% open Β· ⏱️ 28.02.2023): ``` git clone https://github.com/madzak/python-json-logger ``` - [PyPi](https://pypi.org/project/python-json-logger) (πŸ“₯ 16M / month): ``` pip install python-json-logger ``` - [Conda](https://anaconda.org/conda-forge/python-json-logger) (πŸ“₯ 4.4M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge python-json-logger ```
tabulate (πŸ₯ˆ32 Β· ⭐ 1.7K) - Pretty-print tabular data in Python, a library and a command-line.. MIT - [GitHub](https://github.com/astanin/python-tabulate) (πŸ‘¨β€πŸ’» 84 Β· πŸ”€ 130 Β· πŸ“¦ 130K Β· πŸ“‹ 190 - 30% open Β· ⏱️ 30.04.2023): ``` git clone https://github.com/astanin/python-tabulate ``` - [PyPi](https://pypi.org/project/tabulate) (πŸ“₯ 48M / month): ``` pip install tabulate ``` - [Conda](https://anaconda.org/conda-forge/tabulate) (πŸ“₯ 5.1M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge tabulate ```
progressbar2 (πŸ₯ˆ32 Β· ⭐ 820) - Progressbar 2 - A progress bar for Python 2 and Python 3 - pip.. BSD-3 - [GitHub](https://github.com/wolph/python-progressbar) (πŸ‘¨β€πŸ’» 42 Β· πŸ”€ 97 Β· πŸ“₯ 2K Β· πŸ“¦ 29K Β· πŸ“‹ 210 - 5% open Β· ⏱️ 18.03.2023): ``` git clone https://github.com/WoLpH/python-progressbar ``` - [PyPi](https://pypi.org/project/progressbar2) (πŸ“₯ 19M / month Β· πŸ“¦ 1.5K Β· ⏱️ 05.01.2022): ``` pip install progressbar2 ``` - [Conda](https://anaconda.org/conda-forge/progressbar2) (πŸ“₯ 960K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge progressbar2 ```
alive-progress (πŸ₯‰31 Β· ⭐ 4.5K) - A new kind of Progress Bar, with real-time throughput, ETA, and.. MIT - [GitHub](https://github.com/rsalmei/alive-progress) (πŸ‘¨β€πŸ’» 7 Β· πŸ”€ 180 Β· πŸ“¦ 2K Β· πŸ“‹ 200 - 8% open Β· ⏱️ 01.06.2023): ``` git clone https://github.com/rsalmei/alive-progress ``` - [PyPi](https://pypi.org/project/alive-progress) (πŸ“₯ 290K / month Β· πŸ“¦ 190 Β· ⏱️ 02.01.2023): ``` pip install alive-progress ``` - [Conda](https://anaconda.org/conda-forge/alive-progress) (πŸ“₯ 36K Β· ⏱️ 01.06.2023): ``` conda install -c conda-forge alive-progress ```
colorlog (πŸ₯‰30 Β· ⭐ 810 Β· πŸ’€) - A colored formatter for the python logging module. MIT - [GitHub](https://github.com/borntyping/python-colorlog) (πŸ‘¨β€πŸ’» 30 Β· πŸ”€ 81 Β· πŸ“¦ 26K Β· πŸ“‹ 74 - 1% open Β· ⏱️ 29.08.2022): ``` git clone https://github.com/borntyping/python-colorlog ``` - [PyPi](https://pypi.org/project/colorlog) (πŸ“₯ 7.1M / month): ``` pip install colorlog ``` - [Conda](https://anaconda.org/conda-forge/colorlog) (πŸ“₯ 1.5M Β· ⏱️ 22.06.2023): ``` conda install -c conda-forge colorlog ```
wasabi (πŸ₯‰29 Β· ⭐ 420) - A lightweight console printing and formatting toolkit. MIT - [GitHub](https://github.com/explosion/wasabi) (πŸ‘¨β€πŸ’» 13 Β· πŸ”€ 25 Β· πŸ“¦ 30K Β· πŸ“‹ 9 - 44% open Β· ⏱️ 07.06.2023): ``` git clone https://github.com/ines/wasabi ``` - [PyPi](https://pypi.org/project/wasabi) (πŸ“₯ 4M / month): ``` pip install wasabi ``` - [Conda](https://anaconda.org/conda-forge/wasabi) (πŸ“₯ 1.1M Β· ⏱️ 07.06.2023): ``` conda install -c conda-forge wasabi ```
notifiers (πŸ₯‰27 Β· ⭐ 2.5K Β· πŸ’€) - The easy way to send notifications. MIT - [GitHub](https://github.com/liiight/notifiers) (πŸ‘¨β€πŸ’» 19 Β· πŸ”€ 97 Β· πŸ“¦ 1K Β· πŸ“‹ 110 - 37% open Β· ⏱️ 14.07.2022): ``` git clone https://github.com/liiight/notifiers ``` - [PyPi](https://pypi.org/project/notifiers) (πŸ“₯ 330K / month Β· πŸ“¦ 24 Β· ⏱️ 10.02.2022): ``` pip install notifiers ``` - [Conda](https://anaconda.org/conda-forge/notifiers) (πŸ“₯ 33K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge notifiers ```
stackprinter (πŸ₯‰25 Β· ⭐ 1.2K) - Debugging-friendly exceptions for Python. MIT - [GitHub](https://github.com/cknd/stackprinter) (πŸ‘¨β€πŸ’» 7 Β· πŸ”€ 34 Β· πŸ“¦ 270 Β· πŸ“‹ 27 - 22% open Β· ⏱️ 20.02.2023): ``` git clone https://github.com/cknd/stackprinter ``` - [PyPi](https://pypi.org/project/stackprinter) (πŸ“₯ 410K / month): ``` pip install stackprinter ``` - [Conda](https://anaconda.org/conda-forge/stackprinter) (πŸ“₯ 5.6K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge stackprinter ```
python-devtools (πŸ₯‰23 Β· ⭐ 760) - Dev tools for python. MIT - [GitHub](https://github.com/samuelcolvin/python-devtools) (πŸ‘¨β€πŸ’» 12 Β· πŸ”€ 36 Β· πŸ“¦ 1.5K Β· πŸ“‹ 51 - 23% open Β· ⏱️ 23.05.2023): ``` git clone https://github.com/samuelcolvin/python-devtools ``` - [PyPi](https://pypi.org/project/python-devtools) (πŸ“₯ 740 / month Β· πŸ“¦ 1 Β· ⏱️ 21.08.2017): ``` pip install python-devtools ``` - [Conda](https://anaconda.org/conda-forge/python-devtools) (πŸ“₯ 15K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge python-devtools ```
better-exceptions (πŸ₯‰21 Β· ⭐ 4.4K) - Pretty and useful exceptions in Python, automatically. MIT - [GitHub](https://github.com/Qix-/better-exceptions) (πŸ‘¨β€πŸ’» 17 Β· πŸ”€ 200 Β· πŸ“‹ 71 - 35% open Β· ⏱️ 05.01.2023): ``` git clone https://github.com/Qix-/better-exceptions ``` - [PyPi](https://pypi.org/project/better-exceptions) (πŸ“₯ 96K / month): ``` pip install better-exceptions ```
Show 7 hidden projects... - structlog (πŸ₯ˆ35 Β· ⭐ 2.6K) - Simple, powerful, and fast logging for Python. ❗Unlicensed - logbook (πŸ₯ˆ32 Β· ⭐ 1.4K) - A cool logging replacement for Python. ❗Unlicensed - prettytable (πŸ₯‰30 Β· ⭐ 1.1K) - Display tabular data in a visually appealing ASCII table.. ❗Unlicensed - python-coloredlogs (πŸ₯‰28 Β· ⭐ 510 Β· πŸ’€) - Colored terminal output for Pythons logging module. MIT - rebound (πŸ₯‰26 Β· ⭐ 4K Β· πŸ’€) - Command-line tool that instantly fetches Stack Overflow results when an.. MIT - PrettyErrors (πŸ₯‰23 Β· ⭐ 2.6K Β· πŸ’€) - Prettify Python exception output to make it legible. MIT - tbvaccine (πŸ₯‰16 Β· ⭐ 370 Β· πŸ’€) - A small utility to pretty-print Python tracebacks. MIT

## Shell Back to top
xxh (πŸ₯‰24 Β· ⭐ 4.5K) - Bring your favorite shell wherever you go through the ssh. Xonsh shell,.. BSD-2 - [GitHub](https://github.com/xxh/xxh) (πŸ‘¨β€πŸ’» 24 Β· πŸ”€ 89 Β· πŸ“₯ 1.6K Β· πŸ“¦ 75 Β· πŸ“‹ 78 - 24% open Β· ⏱️ 21.06.2023): ``` git clone https://github.com/xxh/xxh ``` - [PyPi](https://pypi.org/project/xxh-xxh) (πŸ“₯ 340 / month Β· ⏱️ 29.09.2022): ``` pip install xxh-xxh ```
Show 1 hidden projects... - xonsh (πŸ₯‡31 Β· ⭐ 7.1K) - Python-powered, cross-platform, Unix-gazing shell. ❗️BSD-1-Clause

## Documentation Back to top πŸ”— best-of-mkdocs ( ⭐ 300) - Collection of MkDocs projects and plugins.
sphinx (πŸ₯‡44 Β· ⭐ 5.5K) - The Sphinx documentation generator. BSD-3 - [GitHub](https://github.com/sphinx-doc/sphinx) (πŸ‘¨β€πŸ’» 780 Β· πŸ”€ 1.9K Β· πŸ“¦ 310K Β· πŸ“‹ 6.6K - 19% open Β· ⏱️ 15.05.2023): ``` git clone https://github.com/sphinx-doc/sphinx ``` - [PyPi](https://pypi.org/project/sphinx) (πŸ“₯ 9.4M / month Β· πŸ“¦ 61K Β· ⏱️ 02.06.2022): ``` pip install sphinx ``` - [Conda](https://anaconda.org/conda-forge/sphinx) (πŸ“₯ 7.8M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge sphinx ```
mkdocs (πŸ₯‡42 Β· ⭐ 17K) - Project documentation with Markdown. BSD-2 - [GitHub](https://github.com/mkdocs/mkdocs) (πŸ‘¨β€πŸ’» 240 Β· πŸ”€ 2.3K Β· πŸ“¦ 46K Β· πŸ“‹ 1.8K - 6% open Β· ⏱️ 23.06.2023): ``` git clone https://github.com/mkdocs/mkdocs ``` - [PyPi](https://pypi.org/project/mkdocs) (πŸ“₯ 1.8M / month Β· πŸ“¦ 4.3K Β· ⏱️ 26.03.2022): ``` pip install mkdocs ``` - [Conda](https://anaconda.org/conda-forge/mkdocs) (πŸ“₯ 270K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge mkdocs ```
mkdocs-material (πŸ₯‡41 Β· ⭐ 14K) - Documentation that simply works. MIT - [GitHub](https://github.com/squidfunk/mkdocs-material) (πŸ‘¨β€πŸ’» 220 Β· πŸ”€ 3K Β· πŸ“¦ 34K Β· πŸ“‹ 1.9K - 1% open Β· ⏱️ 29.06.2023): ``` git clone https://github.com/squidfunk/mkdocs-material ``` - [PyPi](https://pypi.org/project/mkdocs-material) (πŸ“₯ 2.7M / month): ``` pip install mkdocs-material ``` - [Conda](https://anaconda.org/conda-forge/mkdocs-material) (πŸ“₯ 270K Β· ⏱️ 25.06.2023): ``` conda install -c conda-forge mkdocs-material ```
sphinx_rtd_theme (πŸ₯ˆ37 Β· ⭐ 4.4K) - Sphinx theme for readthedocs.org. MIT - [GitHub](https://github.com/readthedocs/sphinx_rtd_theme) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 1.8K Β· πŸ“¦ 16 Β· πŸ“‹ 850 - 28% open Β· ⏱️ 07.06.2023): ``` git clone https://github.com/readthedocs/sphinx_rtd_theme ``` - [PyPi](https://pypi.org/project/sphinx_rtd_theme) (πŸ“₯ 3.8M / month Β· πŸ“¦ 6.6K Β· ⏱️ 13.09.2021): ``` pip install sphinx_rtd_theme ``` - [Conda](https://anaconda.org/conda-forge/sphinx_rtd_theme) (πŸ“₯ 3.4M Β· ⏱️ 09.06.2023): ``` conda install -c conda-forge sphinx_rtd_theme ```
alabaster (πŸ₯ˆ34 Β· ⭐ 700) - Lightweight, configurable Sphinx theme. BSD-3 - [GitHub](https://github.com/sphinx-doc/alabaster) (πŸ‘¨β€πŸ’» 29 Β· πŸ”€ 180 Β· πŸ“¦ 100K Β· πŸ“‹ 120 - 52% open Β· ⏱️ 21.04.2023): ``` git clone https://github.com/bitprophet/alabaster ``` - [PyPi](https://pypi.org/project/alabaster) (πŸ“₯ 6.4M / month Β· πŸ“¦ 7.7K Β· ⏱️ 13.01.2023): ``` pip install alabaster ``` - [Conda](https://anaconda.org/conda-forge/alabaster) (πŸ“₯ 6.2M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge alabaster ```
pdoc (πŸ₯ˆ33 Β· ⭐ 1.6K) - API Documentation for Python Projects. Unlicense - [GitHub](https://github.com/mitmproxy/pdoc) (πŸ‘¨β€πŸ’» 53 Β· πŸ”€ 180 Β· πŸ“¦ 1.9K Β· πŸ“‹ 330 - 5% open Β· ⏱️ 23.06.2023): ``` git clone https://github.com/mitmproxy/pdoc ``` - [PyPi](https://pypi.org/project/pdoc) (πŸ“₯ 100K / month Β· πŸ“¦ 270 Β· ⏱️ 08.06.2022): ``` pip install pdoc ```
mkdocstrings (πŸ₯ˆ31 Β· ⭐ 1.3K) - Automatic documentation from sources, for MkDocs. ISC - [GitHub](https://github.com/mkdocstrings/mkdocstrings) (πŸ‘¨β€πŸ’» 36 Β· πŸ”€ 94 Β· πŸ“¦ 8.2K Β· πŸ“‹ 340 - 13% open Β· ⏱️ 08.06.2023): ``` git clone https://github.com/mkdocstrings/mkdocstrings ``` - [PyPi](https://pypi.org/project/mkdocstrings) (πŸ“₯ 440K / month Β· πŸ“¦ 380 Β· ⏱️ 27.12.2021): ``` pip install mkdocstrings ``` - [Conda](https://anaconda.org/conda-forge/mkdocstrings) (πŸ“₯ 72K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge mkdocstrings ```
breathe (πŸ₯ˆ31 Β· ⭐ 690) - ReStructuredText and Sphinx bridge to Doxygen. BSD-3 - [GitHub](https://github.com/breathe-doc/breathe) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 180 Β· πŸ“₯ 530 Β· πŸ“¦ 10K Β· πŸ“‹ 560 - 29% open Β· ⏱️ 28.02.2023): ``` git clone https://github.com/michaeljones/breathe ``` - [PyPi](https://pypi.org/project/breathe) (πŸ“₯ 330K / month Β· πŸ“¦ 1K Β· ⏱️ 20.06.2022): ``` pip install breathe ``` - [Conda](https://anaconda.org/conda-forge/breathe) (πŸ“₯ 490K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge breathe ```
sphinx-autodoc-typehints (πŸ₯ˆ31 Β· ⭐ 490) - Type hints support for the Sphinx autodoc extension. MIT - [GitHub](https://github.com/tox-dev/sphinx-autodoc-typehints) (πŸ‘¨β€πŸ’» 53 Β· πŸ”€ 95 Β· πŸ“¦ 39K Β· πŸ“‹ 170 - 16% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/tox-dev/sphinx-autodoc-typehints ``` - [PyPi](https://pypi.org/project/sphinx-autodoc-typehints) (πŸ“₯ 1.2M / month): ``` pip install sphinx-autodoc-typehints ``` - [Conda](https://anaconda.org/conda-forge/sphinx-autodoc-typehints) (πŸ“₯ 530K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge sphinx-autodoc-typehints ```
sphinx-autobuild (πŸ₯ˆ28 Β· ⭐ 470) - Watch a Sphinx directory and rebuild the documentation.. MIT - [GitHub](https://github.com/executablebooks/sphinx-autobuild) (πŸ‘¨β€πŸ’» 24 Β· πŸ”€ 59 Β· πŸ“¦ 18K Β· πŸ“‹ 71 - 25% open Β· ⏱️ 09.02.2023): ``` git clone https://github.com/executablebooks/sphinx-autobuild ``` - [PyPi](https://pypi.org/project/sphinx-autobuild) (πŸ“₯ 440K / month): ``` pip install sphinx-autobuild ``` - [Conda](https://anaconda.org/conda-forge/sphinx-autobuild) (πŸ“₯ 190K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge sphinx-autobuild ```
Griffe (πŸ₯ˆ27 Β· ⭐ 170) - Signatures for entire Python programs. Extract the structure, the frame,.. ISC - [GitHub](https://github.com/mkdocstrings/griffe) (πŸ‘¨β€πŸ’» 19 Β· πŸ”€ 26 Β· πŸ“¦ 2.4K Β· πŸ“‹ 140 - 21% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/mkdocstrings/griffe ``` - [PyPi](https://pypi.org/project/griffe) (πŸ“₯ 500K / month): ``` pip install griffe ``` - [Conda](https://anaconda.org/conda-forge/griffe) (πŸ“₯ 140K Β· ⏱️ 19.06.2023): ``` conda install -c conda-forge griffe ```
pdoc3 (πŸ₯‰26 Β· ⭐ 980) - Auto-generate API documentation for Python projects. ❗️AGPL-3.0 - [GitHub](https://github.com/pdoc3/pdoc) (πŸ‘¨β€πŸ’» 58 Β· πŸ”€ 140 Β· πŸ“¦ 3.3K Β· πŸ“‹ 320 - 36% open Β· ⏱️ 21.12.2022): ``` git clone https://github.com/pdoc3/pdoc ``` - [PyPi](https://pypi.org/project/pdoc3) (πŸ“₯ 250K / month Β· πŸ“¦ 230 Β· ⏱️ 03.08.2021): ``` pip install pdoc3 ``` - [Conda](https://anaconda.org/anaconda/pdoc3) (πŸ“₯ 1.2K Β· ⏱️ 16.06.2023): ``` conda install -c anaconda pdoc3 ```
mkdocs-awesome-pages-plugin (πŸ₯‰25 Β· ⭐ 330) - An MkDocs plugin that simplifies configuring page.. MIT - [GitHub](https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin) (πŸ‘¨β€πŸ’» 6 Β· πŸ”€ 28 Β· πŸ“¦ 2.8K Β· πŸ“‹ 59 - 20% open Β· ⏱️ 08.05.2023): ``` git clone https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin ``` - [PyPi](https://pypi.org/project/mkdocs-awesome-pages-plugin) (πŸ“₯ 110K / month): ``` pip install mkdocs-awesome-pages-plugin ```
blacken-docs (πŸ₯‰24 Β· ⭐ 530) - Run `black` on python code blocks in documentation files. MIT - [GitHub](https://github.com/adamchainz/blacken-docs) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 39 Β· πŸ“‹ 68 - 19% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/asottile/blacken-docs ``` - [PyPi](https://pypi.org/project/blacken-docs) (πŸ“₯ 150K / month Β· πŸ“¦ 27 Β· ⏱️ 16.01.2023): ``` pip install blacken-docs ``` - [Conda](https://anaconda.org/conda-forge/blacken-docs) (πŸ“₯ 29K Β· ⏱️ 13.06.2023): ``` conda install -c conda-forge blacken-docs ```
interrogate (πŸ₯‰23 Β· ⭐ 490 Β· πŸ’€) - Explain yourself! Interrogate a codebase for docstring coverage. MIT - [GitHub](https://github.com/econchick/interrogate) (πŸ‘¨β€πŸ’» 12 Β· πŸ”€ 36 Β· πŸ“¦ 4.6K Β· πŸ“‹ 51 - 47% open Β· ⏱️ 29.07.2022): ``` git clone https://github.com/econchick/interrogate ``` - [PyPi](https://pypi.org/project/interrogate) (πŸ“₯ 77K / month): ``` pip install interrogate ```
releases (πŸ₯‰22 Β· ⭐ 170) - A powerful Sphinx changelog-generating extension. BSD-2 - [GitHub](https://github.com/bitprophet/releases) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 35 Β· πŸ“¦ 570 Β· πŸ“‹ 72 - 36% open Β· ⏱️ 28.04.2023): ``` git clone https://github.com/bitprophet/releases ``` - [PyPi](https://pypi.org/project/releases) (πŸ“₯ 11K / month): ``` pip install releases ``` - [Conda](https://anaconda.org/conda-forge/sphinx-releases) (πŸ“₯ 49K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge sphinx-releases ```
sphinx-markdown-builder (πŸ₯‰22 Β· ⭐ 160) - DISCONTINUED: sphinx builder that outputs markdown.. MIT - [GitHub](https://github.com/clayrisser/sphinx-markdown-builder) (πŸ‘¨β€πŸ’» 20 Β· πŸ”€ 41 Β· πŸ“¦ 700 Β· ⏱️ 24.06.2023): ``` git clone https://github.com/clayrisser/sphinx-markdown-builder ``` - [PyPi](https://pypi.org/project/sphinx-markdown-builder) (πŸ“₯ 42K / month): ``` pip install sphinx-markdown-builder ```
mkdocs-print-site-plugin (πŸ₯‰22 Β· ⭐ 78) - MkDocs Plugin that adds an additional page that.. MIT - [GitHub](https://github.com/timvink/mkdocs-print-site-plugin) (πŸ‘¨β€πŸ’» 4 Β· πŸ”€ 12 Β· πŸ“¦ 220 Β· πŸ“‹ 77 - 11% open Β· ⏱️ 15.06.2023): ``` git clone https://github.com/timvink/mkdocs-print-site-plugin ``` - [PyPi](https://pypi.org/project/mkdocs-print-site-plugin) (πŸ“₯ 11K / month): ``` pip install mkdocs-print-site-plugin ```
portray (πŸ₯‰20 Β· ⭐ 840) - Your Project with Great Documentation. MIT - [GitHub](https://github.com/timothycrosley/portray) (πŸ‘¨β€πŸ’» 20 Β· πŸ”€ 73 Β· πŸ“¦ 790 Β· πŸ“‹ 62 - 48% open Β· ⏱️ 03.01.2023): ``` git clone https://github.com/timothycrosley/portray ``` - [PyPi](https://pypi.org/project/portray) (πŸ“₯ 15K / month): ``` pip install portray ```
lazydocs (πŸ₯‰19 Β· ⭐ 150) - Generate markdown API documentation from Google-style Python docstring... MIT - [GitHub](https://github.com/ml-tooling/lazydocs) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 29 Β· πŸ“¦ 160 Β· πŸ“‹ 28 - 17% open Β· ⏱️ 11.06.2023): ``` git clone https://github.com/ml-tooling/lazydocs ``` - [PyPi](https://pypi.org/project/lazydocs) (πŸ“₯ 5.7K / month): ``` pip install lazydocs ```
Show 8 hidden projects... - numpydoc (πŸ₯ˆ27 Β· ⭐ 240 Β· πŸ“‰) - Numpys Sphinx extensions. ❗Unlicensed - sphinx-bootstrap-theme (πŸ₯‰26 Β· ⭐ 590 Β· πŸ’€) - Sphinx Bootstrap Theme. MIT - pytkdocs (πŸ₯‰25 Β· ⭐ 48 Β· πŸ’€) - Load Python objects documentation. ISC - pycco (πŸ₯‰24 Β· ⭐ 830 Β· πŸ’€) - Literate-style documentation generator. MIT - mkdocs-with-pdf (πŸ₯‰23 Β· ⭐ 240 Β· πŸ’€) - Generate a single PDF file from MkDocs repository. MIT - mkdocs-pdf-export-plugin (πŸ₯‰21 Β· ⭐ 280 Β· πŸ’€) - An MkDocs plugin to export content pages as PDF files. MIT - mkdocs-git-revision-date-plugin (πŸ₯‰19 Β· ⭐ 52 Β· πŸ’€) - MkDocs plugin for setting revision date from git per.. MIT - mkdocs-versioning (πŸ₯‰17 Β· ⭐ 40 Β· πŸ’€) - A tool that allows for versioning sites built with.. MIT

## Debugging Tools Back to top
ipdb (πŸ₯‡29 Β· ⭐ 1.7K) - Integration of IPython pdb. BSD-3 - [GitHub](https://github.com/gotcha/ipdb) (πŸ‘¨β€πŸ’» 57 Β· πŸ”€ 140 Β· πŸ“¦ 46K Β· πŸ“‹ 190 - 31% open Β· ⏱️ 11.04.2023): ``` git clone https://github.com/gotcha/ipdb ``` - [PyPi](https://pypi.org/project/ipdb) (πŸ“₯ 2.4M / month): ``` pip install ipdb ``` - [Conda](https://anaconda.org/conda-forge/ipdb) (πŸ“₯ 370K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge ipdb ```
gdbgui (πŸ₯ˆ28 Β· ⭐ 9.3K Β· πŸ’€) - Browser-based frontend to gdb (gnu debugger). Add breakpoints,.. ❗️GPL-3.0 - [GitHub](https://github.com/cs01/gdbgui) (πŸ‘¨β€πŸ’» 40 Β· πŸ”€ 470 Β· πŸ“₯ 14K Β· πŸ“¦ 300 Β· πŸ“‹ 310 - 44% open Β· ⏱️ 22.06.2022): ``` git clone https://github.com/cs01/gdbgui ``` - [PyPi](https://pypi.org/project/gdbgui) (πŸ“₯ 51K / month): ``` pip install gdbgui ```
pdbpp (πŸ₯ˆ28 Β· ⭐ 1.1K Β· πŸ’€) - pdb++, a drop-in replacement for pdb (the Python debugger). BSD-3 - [GitHub](https://github.com/pdbpp/pdbpp) (πŸ‘¨β€πŸ’» 41 Β· πŸ”€ 60 Β· πŸ“¦ 4.9K Β· πŸ“‹ 200 - 38% open Β· ⏱️ 14.07.2022): ``` git clone https://github.com/pdbpp/pdbpp ``` - [PyPi](https://pypi.org/project/pdbpp) (πŸ“₯ 260K / month): ``` pip install pdbpp ``` - [Conda](https://anaconda.org/conda-forge/pdbpp) (πŸ“₯ 99K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pdbpp ```
PySnooper (πŸ₯‰24 Β· ⭐ 16K) - Never use print for debugging again. MIT - [GitHub](https://github.com/cool-RR/PySnooper) (πŸ‘¨β€πŸ’» 27 Β· πŸ”€ 930 Β· πŸ“‹ 120 - 19% open Β· ⏱️ 12.04.2023): ``` git clone https://github.com/cool-RR/PySnooper ``` - [PyPi](https://pypi.org/project/pysnooper) (πŸ“₯ 360K / month): ``` pip install pysnooper ``` - [Conda](https://anaconda.org/conda-forge/pysnooper) (πŸ“₯ 66K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pysnooper ```
icecream (πŸ₯‰23 Β· ⭐ 6.8K) - Never use print() to debug again. MIT - [GitHub](https://github.com/gruns/icecream) (πŸ‘¨β€πŸ’» 21 Β· πŸ”€ 140 Β· πŸ“‹ 100 - 33% open Β· ⏱️ 04.12.2022): ``` git clone https://github.com/gruns/icecream ``` - [PyPi](https://pypi.org/project/icecream) (πŸ“₯ 260K / month): ``` pip install icecream ``` - [Conda](https://anaconda.org/conda-forge/icecream) (πŸ“₯ 17K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge icecream ```
python-hunter (πŸ₯‰23 Β· ⭐ 740) - Hunter is a flexible code tracing toolkit. BSD-2 - [GitHub](https://github.com/ionelmc/python-hunter) (πŸ‘¨β€πŸ’» 9 Β· πŸ”€ 42 Β· πŸ“¦ 140 Β· πŸ“‹ 94 - 42% open Β· ⏱️ 26.04.2023): ``` git clone https://github.com/ionelmc/python-hunter ``` - [PyPi](https://pypi.org/project/hunter) (πŸ“₯ 8K / month): ``` pip install hunter ``` - [Conda](https://anaconda.org/conda-forge/hunter) (πŸ“₯ 43K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge hunter ```
python-manhole (πŸ₯‰22 Β· ⭐ 340) - Debugging manhole for python applications. BSD-2 - [GitHub](https://github.com/ionelmc/python-manhole) (πŸ‘¨β€πŸ’» 11 Β· πŸ”€ 21 Β· πŸ“¦ 250 Β· πŸ“‹ 22 - 31% open Β· ⏱️ 17.12.2022): ``` git clone https://github.com/ionelmc/python-manhole ``` - [PyPi](https://pypi.org/project/manhole) (πŸ“₯ 13K / month): ``` pip install manhole ``` - [Conda](https://anaconda.org/conda-forge/manhole) (πŸ“₯ 16K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge manhole ```
pyrasite (πŸ₯‰21 Β· ⭐ 2.7K) - Inject code into running Python processes. ❗️GPL-3.0 - [GitHub](https://github.com/lmacken/pyrasite) (πŸ‘¨β€πŸ’» 23 Β· πŸ”€ 200 Β· πŸ“¦ 49 Β· πŸ“‹ 56 - 71% open Β· ⏱️ 03.03.2023): ``` git clone https://github.com/lmacken/pyrasite ``` - [PyPi](https://pypi.org/project/pyrasite) (πŸ“₯ 21K / month): ``` pip install pyrasite ```
snoop (πŸ₯‰19 Β· ⭐ 940) - A powerful set of Python debugging tools, based on PySnooper. MIT - [GitHub](https://github.com/alexmojaki/snoop) (πŸ‘¨β€πŸ’» 22 Β· πŸ”€ 32 Β· πŸ“‹ 50 - 44% open Β· ⏱️ 22.12.2022): ``` git clone https://github.com/alexmojaki/snoop ``` - [PyPi](https://pypi.org/project/snoop) (πŸ“₯ 42K / month): ``` pip install snoop ``` - [Conda](https://anaconda.org/conda-forge/snoop) (πŸ“₯ 3.8K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge snoop ```
reloadium (πŸ₯‰15 Β· ⭐ 2.4K) - ChatGPT, Hot Reloading and Profiling for Python. Apache-2 - [GitHub](https://github.com/reloadware/reloadium) (πŸ‘¨β€πŸ’» 2 Β· πŸ”€ 44 Β· πŸ“‹ 100 - 11% open Β· ⏱️ 16.05.2023): ``` git clone https://github.com/reloadware/reloadium ``` - [PyPi](https://pypi.org/project/reloadium) (πŸ“₯ 2.4K / month): ``` pip install reloadium ```
Show 3 hidden projects... - pudb (πŸ₯‡30 Β· ⭐ 2.7K) - Full-screen console debugger for Python. ❗Unlicensed - pyelftools (πŸ₯‡29 Β· ⭐ 1.7K) - Parsing ELF and DWARF in Python. ❗Unlicensed - Birdseye (πŸ₯‰17 Β· ⭐ 1.6K Β· πŸ’€) - Graphical Python debugger which lets you easily view the values of.. MIT

## Testing Tools Back to top πŸ”— best-of-web-python - Testing ( ⭐ 1.9K) - Testing libraries & tools for python web frameworks. πŸ”— unittest - Unittest is a test framework included in the Python standard library.
pytest (πŸ₯‡47 Β· ⭐ 10K) - The pytest framework makes it easy to write small tests, yet scales to.. MIT - [GitHub](https://github.com/pytest-dev/pytest) (πŸ‘¨β€πŸ’» 880 Β· πŸ”€ 2.4K Β· πŸ“¦ 950K Β· πŸ“‹ 5.4K - 15% open Β· ⏱️ 28.06.2023): ``` git clone https://github.com/pytest-dev/pytest ``` - [PyPi](https://pypi.org/project/pytest) (πŸ“₯ 61M / month Β· πŸ“¦ 11K Β· ⏱️ 06.12.2017): ``` pip install pytest ``` - [Conda](https://anaconda.org/conda-forge/pytest) (πŸ“₯ 21M Β· ⏱️ 25.06.2023): ``` conda install -c conda-forge pytest ```
robotframework (πŸ₯‡41 Β· ⭐ 8.2K) - Generic automation framework for acceptance testing and RPA. Apache-2 - [GitHub](https://github.com/robotframework/robotframework) (πŸ‘¨β€πŸ’» 180 Β· πŸ”€ 2.1K Β· πŸ“₯ 550 Β· πŸ“¦ 7.9K Β· πŸ“‹ 4.2K - 6% open Β· ⏱️ 13.06.2023): ``` git clone https://github.com/robotframework/robotframework ``` - [PyPi](https://pypi.org/project/robotframework) (πŸ“₯ 1.8M / month): ``` pip install robotframework ``` - [Conda](https://anaconda.org/conda-forge/robotframework) (πŸ“₯ 130K Β· ⏱️ 12.06.2023): ``` conda install -c conda-forge robotframework ```
tox (πŸ₯‡39 Β· ⭐ 3.3K) - Command line driven CI frontend and development task automation tool. MIT - [GitHub](https://github.com/tox-dev/tox) (πŸ‘¨β€πŸ’» 280 Β· πŸ”€ 480 Β· πŸ“¦ 100K Β· πŸ“‹ 1.6K - 5% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/tox-dev/tox ``` - [PyPi](https://pypi.org/project/tox) (πŸ“₯ 12M / month Β· πŸ“¦ 22K Β· ⏱️ 01.09.2020): ``` pip install tox ``` - [Conda](https://anaconda.org/conda-forge/tox) (πŸ“₯ 730K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge tox ```
pytest-xdist (πŸ₯‡36 Β· ⭐ 1.2K Β· πŸ“ˆ) - pytest plugin for distributed testing and loop-on-.. MIT - [GitHub](https://github.com/pytest-dev/pytest-xdist) (πŸ‘¨β€πŸ’» 90 Β· πŸ”€ 200 Β· πŸ“‹ 550 - 40% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/pytest-dev/pytest-xdist ``` - [PyPi](https://pypi.org/project/pytest-xdist) (πŸ“₯ 8.6M / month Β· πŸ“¦ 5K Β· ⏱️ 10.12.2021): ``` pip install pytest-xdist ``` - [Conda](https://anaconda.org/conda-forge/pytest-xdist) (πŸ“₯ 4.9M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pytest-xdist ```
pytest-cov (πŸ₯ˆ35 Β· ⭐ 1.5K) - Coverage plugin for pytest. MIT - [GitHub](https://github.com/pytest-dev/pytest-cov) (πŸ‘¨β€πŸ’» 86 Β· πŸ”€ 200 Β· πŸ“¦ 260K Β· πŸ“‹ 360 - 34% open Β· ⏱️ 24.05.2023): ``` git clone https://github.com/pytest-dev/pytest-cov ``` - [PyPi](https://pypi.org/project/pytest-cov) (πŸ“₯ 24M / month Β· πŸ“¦ 32K Β· ⏱️ 04.10.2021): ``` pip install pytest-cov ``` - [Conda](https://anaconda.org/conda-forge/pytest-cov) (πŸ“₯ 8.8M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pytest-cov ```
pyautogui (πŸ₯ˆ34 Β· ⭐ 8.3K) - A cross-platform GUI automation Python module for human beings. Used.. BSD-3 - [GitHub](https://github.com/asweigart/pyautogui) (πŸ‘¨β€πŸ’» 52 Β· πŸ”€ 1.1K Β· πŸ“¦ 25K Β· πŸ“‹ 640 - 64% open Β· ⏱️ 07.06.2023): ``` git clone https://github.com/asweigart/pyautogui ``` - [PyPi](https://pypi.org/project/pyautogui) (πŸ“₯ 620K / month): ``` pip install pyautogui ``` - [Conda](https://anaconda.org/conda-forge/pyautogui) (πŸ“₯ 200K Β· ⏱️ 12.06.2023): ``` conda install -c conda-forge pyautogui ```
mimesis (πŸ₯ˆ34 Β· ⭐ 4K) - Mimesis is a powerful Python library that empowers developers to generate.. MIT - [GitHub](https://github.com/lk-geimfari/mimesis) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 310 Β· πŸ“₯ 440 Β· πŸ“¦ 1.4K Β· πŸ“‹ 320 - 1% open Β· ⏱️ 16.06.2023): ``` git clone https://github.com/lk-geimfari/mimesis ``` - [PyPi](https://pypi.org/project/mimesis) (πŸ“₯ 120K / month): ``` pip install mimesis ``` - [Conda](https://anaconda.org/conda-forge/mimesis) (πŸ“₯ 130K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge mimesis ```
pytest-mock (πŸ₯ˆ34 Β· ⭐ 1.6K) - Thin-wrapper around the mock package for easier use with pytest. MIT - [GitHub](https://github.com/pytest-dev/pytest-mock) (πŸ‘¨β€πŸ’» 66 Β· πŸ”€ 130 Β· πŸ“¦ 65K Β· πŸ“‹ 140 - 7% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/pytest-dev/pytest-mock ``` - [PyPi](https://pypi.org/project/pytest-mock) (πŸ“₯ 10M / month Β· πŸ“¦ 4.8K Β· ⏱️ 05.07.2022): ``` pip install pytest-mock ``` - [Conda](https://anaconda.org/conda-forge/pytest-mock) (πŸ“₯ 2.1M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pytest-mock ```
pytest-asyncio (πŸ₯ˆ33 Β· ⭐ 1.2K) - Asyncio support for pytest. Apache-2 - [GitHub](https://github.com/pytest-dev/pytest-asyncio) (πŸ‘¨β€πŸ’» 42 Β· πŸ”€ 120 Β· πŸ“₯ 140 Β· πŸ“‹ 240 - 12% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/pytest-dev/pytest-asyncio ``` - [PyPi](https://pypi.org/project/pytest-asyncio) (πŸ“₯ 5.9M / month Β· πŸ“¦ 860 Β· ⏱️ 03.05.2020): ``` pip install pytest-asyncio ``` - [Conda](https://anaconda.org/conda-forge/pytest-asyncio) (πŸ“₯ 1.7M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pytest-asyncio ```
playwright-python (πŸ₯ˆ32 Β· ⭐ 8.9K) - Python version of the Playwright testing and automation.. Apache-2 - [GitHub](https://github.com/microsoft/playwright-python) (πŸ‘¨β€πŸ’» 32 Β· πŸ”€ 730 Β· πŸ“‹ 1.1K - 4% open Β· ⏱️ 16.06.2023): ``` git clone https://github.com/microsoft/playwright-python ``` - [PyPi](https://pypi.org/project/playwright) (πŸ“₯ 880K / month Β· πŸ“¦ 180 Β· ⏱️ 13.05.2022): ``` pip install playwright ```
nox (πŸ₯ˆ32 Β· ⭐ 1.1K) - Flexible test automation for Python. Apache-2 - [GitHub](https://github.com/wntrblm/nox) (πŸ‘¨β€πŸ’» 86 Β· πŸ”€ 140 Β· πŸ“¦ 4.2K Β· πŸ“‹ 320 - 16% open Β· ⏱️ 23.06.2023): ``` git clone https://github.com/theacodes/nox ``` - [PyPi](https://pypi.org/project/nox) (πŸ“₯ 990K / month Β· πŸ“¦ 260 Β· ⏱️ 07.01.2022): ``` pip install nox ``` - [Conda](https://anaconda.org/conda-forge/nox) (πŸ“₯ 190K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge nox ```
pytest-sugar (πŸ₯ˆ31 Β· ⭐ 1.1K) - a plugin for py.test that changes the default look and feel.. BSD-3 - [GitHub](https://github.com/Teemu/pytest-sugar) (πŸ‘¨β€πŸ’» 49 Β· πŸ”€ 69 Β· πŸ“₯ 5 Β· πŸ“¦ 22K Β· πŸ“‹ 110 - 20% open Β· ⏱️ 10.06.2023): ``` git clone https://github.com/Teemu/pytest-sugar ``` - [PyPi](https://pypi.org/project/pytest-sugar) (πŸ“₯ 980K / month Β· πŸ“¦ 2.7K Β· ⏱️ 05.11.2022): ``` pip install pytest-sugar ``` - [Conda](https://anaconda.org/conda-forge/pytest-sugar) (πŸ“₯ 200K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pytest-sugar ```
asv (πŸ₯ˆ31 Β· ⭐ 780) - Airspeed Velocity: A simple Python benchmarking tool with web-based reporting. BSD-3 - [GitHub](https://github.com/airspeed-velocity/asv) (πŸ‘¨β€πŸ’» 75 Β· πŸ”€ 170 Β· πŸ“¦ 950 Β· πŸ“‹ 550 - 28% open Β· ⏱️ 10.06.2023): ``` git clone https://github.com/airspeed-velocity/asv ``` - [PyPi](https://pypi.org/project/asv) (πŸ“₯ 33K / month Β· πŸ“¦ 67 Β· ⏱️ 06.02.2022): ``` pip install asv ``` - [Conda](https://anaconda.org/conda-forge/asv) (πŸ“₯ 720K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge asv ```
pytest-bdd (πŸ₯ˆ30 Β· ⭐ 1.2K) - BDD library for the py.test runner. MIT - [GitHub](https://github.com/pytest-dev/pytest-bdd) (πŸ‘¨β€πŸ’» 54 Β· πŸ”€ 190 Β· πŸ“¦ 2.9K Β· πŸ“‹ 320 - 39% open Β· ⏱️ 04.04.2023): ``` git clone https://github.com/pytest-dev/pytest-bdd ``` - [PyPi](https://pypi.org/project/pytest-bdd) (πŸ“₯ 700K / month Β· πŸ“¦ 180 Β· ⏱️ 08.11.2022): ``` pip install pytest-bdd ``` - [Conda](https://anaconda.org/conda-forge/pytest-bdd) (πŸ“₯ 54K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pytest-bdd ```
coveralls-python (πŸ₯‰29 Β· ⭐ 520) - Show coverage stats online via coveralls.io. MIT - [GitHub](https://github.com/TheKevJames/coveralls-python) (πŸ‘¨β€πŸ’» 64 Β· πŸ”€ 180 Β· πŸ“¦ 32K Β· πŸ“‹ 160 - 8% open Β· ⏱️ 03.05.2023): ``` git clone https://github.com/TheKevJames/coveralls-python ``` - [PyPi](https://pypi.org/project/coveralls) (πŸ“₯ 440K / month): ``` pip install coveralls ``` - [Conda](https://anaconda.org/conda-forge/coveralls) (πŸ“₯ 950K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge coveralls ```
ddt (πŸ₯‰29 Β· ⭐ 430 Β· πŸ’€) - Data-Driven Tests for Python Unittest. MIT - [GitHub](https://github.com/datadriventests/ddt) (πŸ‘¨β€πŸ’» 37 Β· πŸ”€ 110 Β· πŸ“¦ 5.1K Β· πŸ“‹ 53 - 22% open Β· ⏱️ 10.08.2022): ``` git clone https://github.com/datadriventests/ddt ``` - [PyPi](https://pypi.org/project/ddt) (πŸ“₯ 360K / month Β· πŸ“¦ 1.3K Β· ⏱️ 24.05.2022): ``` pip install ddt ``` - [Conda](https://anaconda.org/conda-forge/ddt) (πŸ“₯ 85K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge ddt ```
pytest-testinfra (πŸ₯‰28 Β· ⭐ 2.2K) - Testinfra test your infrastructures. Apache-2 - [GitHub](https://github.com/pytest-dev/pytest-testinfra) (πŸ‘¨β€πŸ’» 130 Β· πŸ”€ 320 Β· πŸ“‹ 330 - 36% open Β· ⏱️ 26.05.2023): ``` git clone https://github.com/pytest-dev/pytest-testinfra ``` - [PyPi](https://pypi.org/project/pytest-testinfra) (πŸ“₯ 220K / month Β· πŸ“¦ 8 Β· ⏱️ 19.06.2022): ``` pip install pytest-testinfra ``` - [Conda](https://anaconda.org/conda-forge/pytest-testinfra) (πŸ“₯ 12K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pytest-testinfra ```
pytest-benchmark (πŸ₯‰28 Β· ⭐ 1.1K) - py.test fixture for benchmarking code. BSD-2 - [GitHub](https://github.com/ionelmc/pytest-benchmark) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 110 Β· πŸ“¦ 7.1K Β· πŸ“‹ 180 - 51% open Β· ⏱️ 27.04.2023): ``` git clone https://github.com/ionelmc/pytest-benchmark ``` - [PyPi](https://pypi.org/project/pytest-benchmark) (πŸ“₯ 720K / month Β· πŸ“¦ 650 Β· ⏱️ 17.04.2021): ``` pip install pytest-benchmark ``` - [Conda](https://anaconda.org/conda-forge/pytest-benchmark) (πŸ“₯ 1.8M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pytest-benchmark ```
pytest-testmon (πŸ₯‰27 Β· ⭐ 680) - Selects tests affected by changed files. Executes the.. ❗️AGPL-3.0 - [GitHub](https://github.com/tarpas/pytest-testmon) (πŸ‘¨β€πŸ’» 23 Β· πŸ”€ 45 Β· πŸ“¦ 1.1K Β· πŸ“‹ 140 - 18% open Β· ⏱️ 17.06.2023): ``` git clone https://github.com/tarpas/pytest-testmon ``` - [PyPi](https://pypi.org/project/pytest-testmon) (πŸ“₯ 120K / month): ``` pip install pytest-testmon ``` - [Conda](https://anaconda.org/conda-forge/pytest-testmon) (πŸ“₯ 40K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pytest-testmon ```
freezegun (πŸ₯‰26 Β· ⭐ 3.7K) - Let your Python tests travel through time. Apache-2 - [GitHub](https://github.com/spulec/freezegun) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 240 Β· πŸ“‹ 290 - 38% open Β· ⏱️ 22.02.2023): ``` git clone https://github.com/spulec/freezegun ``` - [PyPi](https://pypi.org/project/freezegun) (πŸ“₯ 6.3M / month): ``` pip install freezegun ``` - [Conda](https://anaconda.org/conda-forge/freezegun) (πŸ“₯ 1.2M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge freezegun ```
pytest-mypy (πŸ₯‰26 Β· ⭐ 230) - Mypy static type checker plugin for Pytest. MIT - [GitHub](https://github.com/realpython/pytest-mypy) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 33 Β· πŸ“¦ 3.6K Β· πŸ“‹ 62 - 16% open Β· ⏱️ 08.05.2023): ``` git clone https://github.com/dbader/pytest-mypy ``` - [PyPi](https://pypi.org/project/pytest-mypy) (πŸ“₯ 260K / month): ``` pip install pytest-mypy ``` - [Conda](https://anaconda.org/conda-forge/pytest-mypy) (πŸ“₯ 71K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pytest-mypy ```
factory_boy (πŸ₯‰25 Β· ⭐ 3.1K) - A test fixtures replacement for Python. MIT - [GitHub](https://github.com/FactoryBoy/factory_boy) (πŸ‘¨β€πŸ’» 130 Β· πŸ”€ 360 Β· πŸ“‹ 550 - 30% open Β· ⏱️ 22.06.2023): ``` git clone https://github.com/FactoryBoy/factory_boy ``` - [PyPi](https://pypi.org/project/factory_boy) (πŸ“₯ 3M / month): ``` pip install factory_boy ``` - [Conda](https://anaconda.org/conda-forge/factory_boy) (πŸ“₯ 130K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge factory_boy ```
green (πŸ₯‰22 Β· ⭐ 770) - Green is a clean, colorful, fast python test runner. MIT - [GitHub](https://github.com/CleanCut/green) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 74 Β· πŸ“‹ 180 - 2% open Β· ⏱️ 18.05.2023): ``` git clone https://github.com/CleanCut/green ``` - [PyPi](https://pypi.org/project/green) (πŸ“₯ 11K / month): ``` pip install green ``` - [Conda](https://anaconda.org/conda-forge/green) (πŸ“₯ 130K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge green ```
pytest-randomly (πŸ₯‰21 Β· ⭐ 520 Β· πŸ“‰) - Pytest plugin to randomly order tests and control random.seed. MIT - [GitHub](https://github.com/pytest-dev/pytest-randomly) (πŸ‘¨β€πŸ’» 19 Β· πŸ”€ 25 Β· πŸ“‹ 57 - 8% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/pytest-dev/pytest-randomly ``` - [PyPi](https://pypi.org/project/pytest-randomly) (πŸ“₯ 790K / month): ``` pip install pytest-randomly ``` - [Conda](https://anaconda.org/conda-forge/pytest-randomly) (πŸ“₯ 130K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pytest-randomly ```
pytest-plugins (πŸ₯‰20 Β· ⭐ 510 Β· πŸ’€) - A grab-bag of nifty pytest plugins. MIT - [GitHub](https://github.com/man-group/pytest-plugins) (πŸ‘¨β€πŸ’» 62 Β· πŸ”€ 72 Β· πŸ“‹ 110 - 45% open Β· ⏱️ 03.11.2022): ``` git clone https://github.com/man-group/pytest-plugins ``` - [PyPi](https://pypi.org/project/pytest-virtualenv) (πŸ“₯ 38K / month): ``` pip install pytest-virtualenv ``` - [Conda](https://anaconda.org/conda-forge/pytest-shutil) (πŸ“₯ 44K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pytest-shutil ```
xdoctest (πŸ₯‰19 Β· ⭐ 190) - A rewrite of Pythons builtin doctest module (with pytest plugin.. Apache-2 - [GitHub](https://github.com/Erotemic/xdoctest) (πŸ‘¨β€πŸ’» 9 Β· πŸ”€ 9 Β· πŸ“‹ 43 - 41% open Β· ⏱️ 19.04.2023): ``` git clone https://github.com/Erotemic/xdoctest ``` - [PyPi](https://pypi.org/project/xdoctest) (πŸ“₯ 76K / month): ``` pip install xdoctest ``` - [Conda](https://anaconda.org/conda-forge/xdoctest) (πŸ“₯ 150K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge xdoctest ```
pytest-docker (πŸ₯‰18 Β· ⭐ 340 Β· πŸ’€) - Docker-based integration tests. MIT - [GitHub](https://github.com/avast/pytest-docker) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 55 Β· πŸ“₯ 110 Β· πŸ“‹ 41 - 19% open Β· ⏱️ 14.09.2022): ``` git clone https://github.com/avast/pytest-docker ``` - [PyPi](https://pypi.org/project/pytest-docker) (πŸ“₯ 130K / month): ``` pip install pytest-docker ```
Show 14 hidden projects... - hypothesis (πŸ₯‡39 Β· ⭐ 6.8K) - Hypothesis is a powerful, flexible, and easy to use library.. ❗Unlicensed - nose (πŸ₯ˆ34 Β· ⭐ 1.4K Β· πŸ’€) - nose is nicer testing for python. ❗️LGPL-2.1+ - pytest-html (πŸ₯ˆ31 Β· ⭐ 600) - Plugin for generating HTML reports for pytest results. ❗Unlicensed - nose2 (πŸ₯ˆ30 Β· ⭐ 760) - The successor to nose, based on unittest2. ❗Unlicensed - PyHamcrest (πŸ₯‰29 Β· ⭐ 710) - Hamcrest matchers for Python. ❗Unlicensed - pytest-watch (πŸ₯‰26 Β· ⭐ 700 Β· πŸ’€) - Local continuous test runner with pytest and watchdog. MIT - uiautomator (πŸ₯‰25 Β· ⭐ 1.9K Β· πŸ’€) - Python wrapper of Android uiautomator test tool. MIT - Mamba Test Runner (πŸ₯‰23 Β· ⭐ 510 Β· πŸ’€) - The definitive testing tool for Python. Born under the.. MIT - pytest-lazy-fixture (πŸ₯‰23 Β· ⭐ 330 Β· πŸ’€) - It helps to use fixtures in pytest.mark.parametrize. MIT - sixpack (πŸ₯‰22 Β· ⭐ 1.7K Β· πŸ’€) - Sixpack is a language-agnostic a/b-testing framework. BSD-2 - pytest-datadir (πŸ₯‰19 Β· ⭐ 210) - pytest plugin for manipulating test data directories.. ❗Unlicensed - fake2db (πŸ₯‰18 Β· ⭐ 2.2K Β· πŸ’€) - create custom test databases that are populated with fake data. ❗️GPL-2.0 - assertpy (πŸ₯‰13 Β· ⭐ 18 Β· πŸ’€) - Simple assertion library for unit testing in python with a fluent API. BSD-3 - pytest-play (πŸ₯‰12 Β· ⭐ 68 Β· πŸ’€) - pytest plugin that let you automate actions and.. Apache-2

## Code Packaging Back to top πŸ”— Python.org Packaging - An Overview of Packaging for Python.
pyinstaller (πŸ₯‡42 Β· ⭐ 10K) - Freeze (package) Python programs into stand-alone executables. ❗️GPL-2.0 - [GitHub](https://github.com/pyinstaller/pyinstaller) (πŸ‘¨β€πŸ’» 450 Β· πŸ”€ 1.8K Β· πŸ“₯ 740K Β· πŸ“¦ 45K Β· πŸ“‹ 4.9K - 5% open Β· ⏱️ 25.06.2023): ``` git clone https://github.com/pyinstaller/pyinstaller ``` - [PyPi](https://pypi.org/project/pyinstaller) (πŸ“₯ 1.2M / month): ``` pip install pyinstaller ``` - [Conda](https://anaconda.org/conda-forge/pyinstaller) (πŸ“₯ 460K Β· ⏱️ 26.06.2023): ``` conda install -c conda-forge pyinstaller ```
Nuitka (πŸ₯‡36 Β· ⭐ 9.2K) - Nuitka is a Python compiler written in Python. Its fully compatible.. Apache-2 - [GitHub](https://github.com/Nuitka/Nuitka) (πŸ‘¨β€πŸ’» 140 Β· πŸ”€ 480 Β· πŸ“¦ 1.3K Β· πŸ“‹ 1.9K - 9% open Β· ⏱️ 25.06.2023): ``` git clone https://github.com/Nuitka/Nuitka ``` - [PyPi](https://pypi.org/project/nuitka) (πŸ“₯ 65K / month): ``` pip install nuitka ``` - [Conda](https://anaconda.org/conda-forge/nuitka) (πŸ“₯ 530K Β· ⏱️ 28.06.2023): ``` conda install -c conda-forge nuitka ```
pex (πŸ₯ˆ29 Β· ⭐ 2.3K) - A tool for generating .pex (Python EXecutable) files, lock files and venvs. Apache-2 - [GitHub](https://github.com/pantsbuild/pex) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 240 Β· πŸ“₯ 3.3M Β· πŸ“‹ 1K - 14% open Β· ⏱️ 10.06.2023): ``` git clone https://github.com/pantsbuild/pex ``` - [PyPi](https://pypi.org/project/pex) (πŸ“₯ 770K / month): ``` pip install pex ```
briefcase (πŸ₯ˆ28 Β· ⭐ 1.8K) - Tools to support converting a Python project into a standalone.. BSD-3 - [GitHub](https://github.com/beeware/briefcase) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 270 Β· πŸ“₯ 140 Β· πŸ“‹ 610 - 17% open Β· ⏱️ 26.06.2023): ``` git clone https://github.com/beeware/briefcase ``` - [PyPi](https://pypi.org/project/briefcase) (πŸ“₯ 4.3K / month): ``` pip install briefcase ```
PyOxidizer (πŸ₯ˆ26 Β· ⭐ 4.8K) - A modern Python application packaging and distribution tool. MPL-2.0 - [GitHub](https://github.com/indygreg/PyOxidizer) (πŸ‘¨β€πŸ’» 54 Β· πŸ”€ 200 Β· πŸ“₯ 9.7K Β· πŸ“¦ 150 Β· πŸ“‹ 530 - 56% open Β· ⏱️ 21.01.2023): ``` git clone https://github.com/indygreg/PyOxidizer ``` - [PyPi](https://pypi.org/project/pyoxidizer) (πŸ“₯ 6.8K / month): ``` pip install pyoxidizer ```
cx_Freeze (πŸ₯ˆ26 Β· ⭐ 1.1K) - Create standalone executables from Python scripts, with the.. ❗Unlicensed - [GitHub](https://github.com/marcelotduarte/cx_Freeze) (πŸ‘¨β€πŸ’» 100 Β· πŸ”€ 200 Β· πŸ“‹ 860 - 7% open Β· ⏱️ 28.06.2023): ``` git clone https://github.com/marcelotduarte/cx_Freeze ``` - [PyPi](https://pypi.org/project/cx_freeze) (πŸ“₯ 110K / month): ``` pip install cx_freeze ``` - [Conda](https://anaconda.org/conda-forge/cx_freeze) (πŸ“₯ 240K Β· ⏱️ 27.06.2023): ``` conda install -c conda-forge cx_freeze ```
shiv (πŸ₯‰21 Β· ⭐ 1.6K Β· πŸ’€) - shiv is a command line utility for building fully self contained Python.. BSD-2 - [GitHub](https://github.com/linkedin/shiv) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 80 Β· πŸ“₯ 530 Β· πŸ“‹ 110 - 32% open Β· ⏱️ 04.11.2022): ``` git clone https://github.com/linkedin/shiv ``` - [PyPi](https://pypi.org/project/shiv) (πŸ“₯ 19K / month): ``` pip install shiv ```
subpar (πŸ₯‰13 Β· ⭐ 560) - Subpar is a utility for creating self-contained python executables. It.. Apache-2 - [GitHub](https://github.com/google/subpar) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 66 Β· πŸ“‹ 64 - 53% open Β· ⏱️ 19.12.2022): ``` git clone https://github.com/google/subpar ```
Show 7 hidden projects... - packaging (πŸ₯ˆ34 Β· ⭐ 500) - Core utilities for Python packages. ❗Unlicensed - py2app (πŸ₯‰24 Β· ⭐ 260) - py2app is a Python setuptools command which will allow you to make.. ❗Unlicensed - constructor (πŸ₯‰23 Β· ⭐ 410) - tool for creating installers from conda packages. ❗Unlicensed - py2exe (πŸ₯‰21 Β· ⭐ 610) - Create standalone Windows programs from Python code. ❗Unlicensed - pynsist (πŸ₯‰19 Β· ⭐ 840 Β· πŸ’€) - Build Windows installers for Python applications. ❗Unlicensed - xar (πŸ₯‰18 Β· ⭐ 1.6K Β· πŸ’€) - executable archive format. ❗Unlicensed - pyship (πŸ₯‰10 Β· ⭐ 34) - pyship - ship Python desktop apps to end users. MIT

## Build Tools Back to top
setuptools (πŸ₯‡45 Β· ⭐ 2.1K) - Official project repository for the Setuptools build system. MIT - [GitHub](https://github.com/pypa/setuptools) (πŸ‘¨β€πŸ’» 570 Β· πŸ”€ 940 Β· πŸ“¦ 350K Β· πŸ“‹ 2.3K - 23% open Β· ⏱️ 26.06.2023): ``` git clone https://github.com/pypa/setuptools ``` - [PyPi](https://pypi.org/project/setuptools) (πŸ“₯ 250M / month): ``` pip install setuptools ``` - [Conda](https://anaconda.org/conda-forge/setuptools) (πŸ“₯ 84M Β· ⏱️ 23.06.2023): ``` conda install -c conda-forge setuptools ```
buildbot (πŸ₯‡36 Β· ⭐ 5.1K) - Python-based continuous integration testing framework; your pull.. ❗️GPL-2.0 - [GitHub](https://github.com/buildbot/buildbot) (πŸ‘¨β€πŸ’» 840 Β· πŸ”€ 1.5K Β· πŸ“₯ 31K Β· πŸ“¦ 330 Β· πŸ“‹ 1.5K - 45% open Β· ⏱️ 28.06.2023): ``` git clone https://github.com/buildbot/buildbot ``` - [PyPi](https://pypi.org/project/buildbot) (πŸ“₯ 32K / month): ``` pip install buildbot ``` - [Conda](https://anaconda.org/conda-forge/buildbot) (πŸ“₯ 83K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge buildbot ```
wheel (πŸ₯‡36 Β· ⭐ 420) - The official binary distribution format for Python. MIT - [GitHub](https://github.com/pypa/wheel) (πŸ‘¨β€πŸ’» 71 Β· πŸ”€ 130 Β· πŸ“¦ 220K Β· πŸ“‹ 370 - 9% open Β· ⏱️ 28.06.2023): ``` git clone https://github.com/pypa/wheel ``` - [PyPi](https://pypi.org/project/wheel) (πŸ“₯ 170M / month Β· πŸ“¦ 36K Β· ⏱️ 10.05.2019): ``` pip install wheel ``` - [Conda](https://anaconda.org/conda-forge/wheel) (πŸ“₯ 68M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge wheel ```
invoke (πŸ₯ˆ35 Β· ⭐ 4K) - Pythonic task management & command execution. BSD-2 - [GitHub](https://github.com/pyinvoke/invoke) (πŸ‘¨β€πŸ’» 59 Β· πŸ”€ 340 Β· πŸ“¦ 21K Β· πŸ“‹ 690 - 42% open Β· ⏱️ 14.06.2023): ``` git clone https://github.com/pyinvoke/invoke ``` - [PyPi](https://pypi.org/project/invoke) (πŸ“₯ 5.4M / month): ``` pip install invoke ``` - [Conda](https://anaconda.org/conda-forge/invoke) (πŸ“₯ 910K Β· ⏱️ 15.06.2023): ``` conda install -c conda-forge invoke ```
twine (πŸ₯ˆ35 Β· ⭐ 1.4K) - Utilities for interacting with PyPI. Apache-2 - [GitHub](https://github.com/pypa/twine) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 280 Β· πŸ“¦ 91K Β· πŸ“‹ 460 - 9% open Β· ⏱️ 06.05.2023): ``` git clone https://github.com/pypa/twine ``` - [PyPi](https://pypi.org/project/twine) (πŸ“₯ 3.9M / month): ``` pip install twine ``` - [Conda](https://anaconda.org/conda-forge/twine) (πŸ“₯ 790K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge twine ```
scons (πŸ₯ˆ32 Β· ⭐ 1.7K) - SCons - a software construction tool. MIT - [GitHub](https://github.com/SCons/scons) (πŸ‘¨β€πŸ’» 150 Β· πŸ”€ 270 Β· πŸ“₯ 1.3K Β· πŸ“‹ 3.4K - 18% open Β· ⏱️ 25.06.2023): ``` git clone https://github.com/SCons/scons ``` - [PyPi](https://pypi.org/project/scons) (πŸ“₯ 390K / month): ``` pip install scons ``` - [Conda](https://anaconda.org/conda-forge/scons) (πŸ“₯ 460K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge scons ```
flit (πŸ₯‰30 Β· ⭐ 2K) - Simplified packaging of Python modules. BSD-3 - [GitHub](https://github.com/pypa/flit) (πŸ‘¨β€πŸ’» 66 Β· πŸ”€ 120 Β· πŸ“¦ 1.5K Β· πŸ“‹ 380 - 28% open Β· ⏱️ 14.05.2023): ``` git clone https://github.com/pypa/flit ``` - [PyPi](https://pypi.org/project/flit) (πŸ“₯ 150K / month): ``` pip install flit ``` - [Conda](https://anaconda.org/conda-forge/flit) (πŸ“₯ 160K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge flit ```
doit (πŸ₯‰30 Β· ⭐ 1.6K) - task management & automation tool. MIT - [GitHub](https://github.com/pydoit/doit) (πŸ‘¨β€πŸ’» 65 Β· πŸ”€ 160 Β· πŸ“¦ 1.6K Β· πŸ“‹ 300 - 26% open Β· ⏱️ 16.01.2023): ``` git clone https://github.com/pydoit/doit ``` - [PyPi](https://pypi.org/project/doit) (πŸ“₯ 420K / month): ``` pip install doit ``` - [Conda](https://anaconda.org/conda-forge/doit) (πŸ“₯ 210K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge doit ```
setuptools_scm (πŸ₯‰28 Β· ⭐ 730) - the blessed package to manage your versions by scm tags. MIT - [GitHub](https://github.com/pypa/setuptools_scm) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 180 Β· πŸ“‹ 480 - 20% open Β· ⏱️ 23.06.2023): ``` git clone https://github.com/pypa/setuptools_scm ``` - [PyPi](https://pypi.org/project/setuptools_scm) (πŸ“₯ 16M / month): ``` pip install setuptools_scm ``` - [Conda](https://anaconda.org/conda-forge/setuptools_scm) (πŸ“₯ 1.8M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge setuptools_scm ```
pybuilder (πŸ₯‰25 Β· ⭐ 1.5K) - Software build automation tool for Python. Apache-2 - [GitHub](https://github.com/pybuilder/pybuilder) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 240 Β· πŸ“‹ 500 - 16% open Β· ⏱️ 25.02.2023): ``` git clone https://github.com/pybuilder/pybuilder ``` - [PyPi](https://pypi.org/project/pybuilder) (πŸ“₯ 21K / month): ``` pip install pybuilder ``` - [Conda](https://anaconda.org/conda-forge/pybuilder) (πŸ“₯ 48K Β· ⏱️ 15.06.2023): ``` conda install -c conda-forge pybuilder ```
paver (πŸ₯‰24 Β· ⭐ 460 Β· πŸ“ˆ) - Python-based project scripting. BSD-3 - [GitHub](https://github.com/paver/paver) (πŸ‘¨β€πŸ’» 46 Β· πŸ”€ 78 Β· πŸ“‹ 130 - 29% open Β· ⏱️ 16.04.2023): ``` git clone https://github.com/paver/paver ``` - [PyPi](https://pypi.org/project/paver) (πŸ“₯ 54K / month Β· πŸ“¦ 960 Β· ⏱️ 31.12.2017): ``` pip install paver ``` - [Conda](https://anaconda.org/conda-forge/paver) (πŸ“₯ 27K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge paver ```
universal-build (πŸ₯‰14 Β· ⭐ 19 Β· πŸ’€) - Universal build utilities for containerized build pipelines. MIT - [GitHub](https://github.com/ml-tooling/universal-build) (πŸ‘¨β€πŸ’» 5 Β· πŸ”€ 7 Β· πŸ“₯ 19 Β· πŸ“¦ 12 Β· ⏱️ 15.09.2022): ``` git clone https://github.com/ml-tooling/universal-build ``` - [PyPi](https://pypi.org/project/universal-build) (πŸ“₯ 370 / month): ``` pip install universal-build ```
Show 2 hidden projects... - buildout (πŸ₯‰22 Β· ⭐ 560 Β· πŸ’€) - Buildout is a deployment automation tool written in and.. ❗Unlicensed - pynt (πŸ₯‰18 Β· ⭐ 160 Β· πŸ’€) - A pynt of Python build. MIT

## System Monitoring & Profiling Back to top
psutil (πŸ₯‡43 Β· ⭐ 9.4K) - Cross-platform lib for process and system monitoring in Python. BSD-3 - [GitHub](https://github.com/giampaolo/psutil) (πŸ‘¨β€πŸ’» 200 Β· πŸ”€ 1.3K Β· πŸ“¦ 330K Β· πŸ“‹ 1.6K - 14% open Β· ⏱️ 09.06.2023): ``` git clone https://github.com/giampaolo/psutil ``` - [PyPi](https://pypi.org/project/psutil) (πŸ“₯ 65M / month): ``` pip install psutil ``` - [Conda](https://anaconda.org/conda-forge/psutil) (πŸ“₯ 23M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge psutil ```
py-spy (πŸ₯ˆ33 Β· ⭐ 10K) - Sampling profiler for Python programs. MIT - [GitHub](https://github.com/benfred/py-spy) (πŸ‘¨β€πŸ’» 32 Β· πŸ”€ 350 Β· πŸ“₯ 13K Β· πŸ“¦ 2.8K Β· πŸ“‹ 300 - 38% open Β· ⏱️ 12.06.2023): ``` git clone https://github.com/benfred/py-spy ``` - [PyPi](https://pypi.org/project/py-spy) (πŸ“₯ 1.9M / month Β· πŸ“¦ 44 Β· ⏱️ 07.09.2022): ``` pip install py-spy ``` - [Conda](https://anaconda.org/conda-forge/py-spy) (πŸ“₯ 450K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge py-spy ``` - [Cargo](https://crates.io/crates/py-spy) (πŸ“₯ 690 / month Β· πŸ“¦ 1 Β· ⏱️ 07.09.2022): ``` cargo install py-spy ```
pyinstrument (πŸ₯ˆ33 Β· ⭐ 5.4K) - Call stack profiler for Python. Shows you why your code is slow!. BSD-3 - [GitHub](https://github.com/joerick/pyinstrument) (πŸ‘¨β€πŸ’» 51 Β· πŸ”€ 230 Β· πŸ“¦ 1.5K Β· πŸ“‹ 120 - 16% open Β· ⏱️ 05.06.2023): ``` git clone https://github.com/joerick/pyinstrument ``` - [PyPi](https://pypi.org/project/pyinstrument) (πŸ“₯ 470K / month Β· πŸ“¦ 110 Β· ⏱️ 03.07.2022): ``` pip install pyinstrument ``` - [Conda](https://anaconda.org/conda-forge/pyinstrument) (πŸ“₯ 220K Β· ⏱️ 06.06.2023): ``` conda install -c conda-forge pyinstrument ```
memray (πŸ₯ˆ31 Β· ⭐ 11K) - Memray is a memory profiler for Python. Apache-2 - [GitHub](https://github.com/bloomberg/memray) (πŸ‘¨β€πŸ’» 34 Β· πŸ”€ 320 Β· πŸ“¦ 170 Β· πŸ“‹ 120 - 18% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/bloomberg/memray ``` - [PyPi](https://pypi.org/project/memray) (πŸ“₯ 140K / month Β· πŸ“¦ 7 Β· ⏱️ 16.05.2022): ``` pip install memray ``` - [Conda](https://anaconda.org/conda-forge/memray) (πŸ“₯ 48K Β· ⏱️ 25.06.2023): ``` conda install -c conda-forge memray ```
Scalene (πŸ₯ˆ30 Β· ⭐ 7.9K) - Scalene: a high-performance, high-precision CPU, GPU, and memory.. Apache-2 - [GitHub](https://github.com/plasma-umass/scalene) (πŸ‘¨β€πŸ’» 40 Β· πŸ”€ 260 Β· πŸ“¦ 460 Β· πŸ“‹ 370 - 38% open Β· ⏱️ 23.06.2023): ``` git clone https://github.com/plasma-umass/scalene ``` - [PyPi](https://pypi.org/project/scalene) (πŸ“₯ 19K / month Β· πŸ“¦ 4 Β· ⏱️ 06.01.2023): ``` pip install scalene ```
Yappi (πŸ₯ˆ28 Β· ⭐ 1.2K) - Yet Another Python Profiler, but this time multithreading, asyncio and.. MIT - [GitHub](https://github.com/sumerc/yappi) (πŸ‘¨β€πŸ’» 28 Β· πŸ”€ 64 Β· πŸ“¦ 980 Β· πŸ“‹ 72 - 29% open Β· ⏱️ 29.05.2023): ``` git clone https://github.com/sumerc/yappi ``` - [PyPi](https://pypi.org/project/yappi) (πŸ“₯ 1.5M / month Β· πŸ“¦ 340 Β· ⏱️ 20.05.2022): ``` pip install yappi ``` - [Conda](https://anaconda.org/conda-forge/yappi) (πŸ“₯ 160K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge yappi ```
line_profiler (πŸ₯‰26 Β· ⭐ 1.9K) - Line-by-line profiling for Python. BSD-3 - [GitHub](https://github.com/pyutils/line_profiler) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 100 Β· πŸ“‹ 87 - 44% open Β· ⏱️ 30.05.2023): ``` git clone https://github.com/pyutils/line_profiler ``` - [PyPi](https://pypi.org/project/line_profiler) (πŸ“₯ 370K / month Β· πŸ“¦ 68 Β· ⏱️ 01.04.2022): ``` pip install line_profiler ``` - [Conda](https://anaconda.org/conda-forge/line_profiler) (πŸ“₯ 410K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge line_profiler ```
Diamond (πŸ₯‰26 Β· ⭐ 1.7K) - Diamond is a python daemon that collects system metrics and publishes.. MIT - [GitHub](https://github.com/python-diamond/Diamond) (πŸ‘¨β€πŸ’» 380 Β· πŸ”€ 560 Β· πŸ“¦ 140 Β· πŸ“‹ 240 - 27% open Β· ⏱️ 29.01.2023): ``` git clone https://github.com/python-diamond/Diamond ``` - [PyPi](https://pypi.org/project/diamond) (πŸ“₯ 8.8K / month): ``` pip install diamond ```
vprof (πŸ₯‰22 Β· ⭐ 3.9K Β· πŸ’€) - Visual profiler for Python. BSD-2 - [GitHub](https://github.com/nvdv/vprof) (πŸ‘¨β€πŸ’» 17 Β· πŸ”€ 150 Β· πŸ“¦ 110 Β· πŸ“‹ 83 - 31% open Β· ⏱️ 15.07.2022): ``` git clone https://github.com/nvdv/vprof ``` - [PyPi](https://pypi.org/project/vprof) (πŸ“₯ 3.5K / month): ``` pip install vprof ```
pympler (πŸ₯‰21 Β· ⭐ 1.1K Β· πŸ’€) - Development tool to measure, monitor and analyze the memory.. Apache-2 - [GitHub](https://github.com/pympler/pympler) (πŸ‘¨β€πŸ’» 29 Β· πŸ”€ 80 Β· πŸ“‹ 98 - 45% open Β· ⏱️ 24.07.2022): ``` git clone https://github.com/pympler/pympler ``` - [PyPi](https://pypi.org/project/pympler) (πŸ“₯ 1.9M / month): ``` pip install pympler ``` - [Conda](https://anaconda.org/conda-forge/pympler) (πŸ“₯ 340K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge pympler ```
Show 8 hidden projects... - Glances (πŸ₯‡36 Β· ⭐ 23K) - Glances an Eye on your system. A top/htop alternative for.. ❗Unlicensed - Bpytop (πŸ₯‰27 Β· ⭐ 9.4K Β· πŸ’€) - Linux/OSX/FreeBSD resource monitor. Apache-2 - memory-profiler (πŸ₯‰22 Β· ⭐ 3.9K Β· πŸ“‰) - Monitor Memory usage of Python code. ❗Unlicensed - Profiling (πŸ₯‰21 Β· ⭐ 3K Β· πŸ’€) - Was an interactive continuous Python profiler. BSD-3 - heartrate (πŸ₯‰20 Β· ⭐ 1.6K Β· πŸ’€) - Simple real time visualisation of the execution of a Python program. MIT - pyheat (πŸ₯‰16 Β· ⭐ 770 Β· πŸ’€) - pprofile + matplotlib = Python program profiled as an awesome heatmap!. MIT - memory_profiler (πŸ₯‰16 Β· ⭐ 81 Β· πŸ’€) - Monitor Memory usage of Python code. ❗Unlicensed - livepython (πŸ₯‰12 Β· ⭐ 2.5K Β· πŸ’€) - Visually trace Python code in real-time. MIT

## AST Tools Back to top
astor (πŸ₯‡29 Β· ⭐ 730) - Python AST read/write. BSD-3 - [GitHub](https://github.com/berkerpeksag/astor) (πŸ‘¨β€πŸ’» 33 Β· πŸ”€ 94 Β· πŸ“‹ 120 - 33% open Β· ⏱️ 31.12.2022): ``` git clone https://github.com/berkerpeksag/astor ``` - [PyPi](https://pypi.org/project/astor) (πŸ“₯ 6.5M / month Β· πŸ“¦ 2.2K Β· ⏱️ 10.12.2019): ``` pip install astor ``` - [Conda](https://anaconda.org/conda-forge/astor) (πŸ“₯ 2.1M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge astor ```
executing (πŸ₯‡29 Β· ⭐ 250) - Get information about what a Python frame is currently doing,.. MIT - [GitHub](https://github.com/alexmojaki/executing) (πŸ‘¨β€πŸ’» 9 Β· πŸ”€ 27 Β· πŸ“¦ 85K Β· πŸ“‹ 37 - 51% open Β· ⏱️ 27.12.2022): ``` git clone https://github.com/alexmojaki/executing ``` - [PyPi](https://pypi.org/project/executing) (πŸ“₯ 10M / month Β· πŸ“¦ 140 Β· ⏱️ 28.08.2022): ``` pip install executing ``` - [Conda](https://anaconda.org/conda-forge/executing) (πŸ“₯ 7.7M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge executing ```
typed_ast (πŸ₯‡29 Β· ⭐ 220 Β· πŸ’€) - Modified fork of CPythons ast module that parses `# type:`.. Apache-2 - [GitHub](https://github.com/python/typed_ast) (πŸ‘¨β€πŸ’» 26 Β· πŸ”€ 55 Β· πŸ“‹ 87 - 1% open Β· ⏱️ 08.10.2022): ``` git clone https://github.com/python/typed_ast ``` - [PyPi](https://pypi.org/project/typed_ast) (πŸ“₯ 8.1M / month Β· πŸ“¦ 5.5K Β· ⏱️ 21.05.2022): ``` pip install typed_ast ``` - [Conda](https://anaconda.org/conda-forge/typed-ast) (πŸ“₯ 6M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge typed-ast ```
gast (πŸ₯‰28 Β· ⭐ 130) - Python AST that abstracts the underlying Python version. BSD-3 - [GitHub](https://github.com/serge-sans-paille/gast) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 30 Β· πŸ“¦ 120K Β· πŸ“‹ 32 - 6% open Β· ⏱️ 29.04.2023): ``` git clone https://github.com/serge-sans-paille/gast ``` - [PyPi](https://pypi.org/project/gast) (πŸ“₯ 13M / month Β· πŸ“¦ 1.9K Β· ⏱️ 13.11.2021): ``` pip install gast ``` - [Conda](https://anaconda.org/conda-forge/gast) (πŸ“₯ 2.3M Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge gast ```
asteval (πŸ₯‰26 Β· ⭐ 150) - minimalistic evaluator of python expression using ast module. MIT - [GitHub](https://github.com/newville/asteval) (πŸ‘¨β€πŸ’» 24 Β· πŸ”€ 38 Β· πŸ“‹ 65 - 6% open Β· ⏱️ 19.06.2023): ``` git clone https://github.com/newville/asteval ``` - [PyPi](https://pypi.org/project/asteval) (πŸ“₯ 190K / month Β· πŸ“¦ 170 Β· ⏱️ 24.05.2022): ``` pip install asteval ``` - [Conda](https://anaconda.org/conda-forge/asteval) (πŸ“₯ 290K Β· ⏱️ 18.06.2023): ``` conda install -c conda-forge asteval ```
Show 1 hidden projects... - astunparse (πŸ₯‡29 Β· ⭐ 200 Β· πŸ’€) - An AST unparser for Python. BSD-3

## Others Back to top
pre-commit (πŸ₯‡42 Β· ⭐ 11K) - A framework for managing and maintaining multi-language pre-commit.. MIT - [GitHub](https://github.com/pre-commit/pre-commit) (πŸ‘¨β€πŸ’» 150 Β· πŸ”€ 730 Β· πŸ“₯ 490K Β· πŸ“¦ 140K Β· πŸ“‹ 1.8K - 1% open Β· ⏱️ 27.06.2023): ``` git clone https://github.com/pre-commit/pre-commit ``` - [PyPi](https://pypi.org/project/pre-commit) (πŸ“₯ 10M / month Β· πŸ“¦ 4.5K Β· ⏱️ 29.01.2023): ``` pip install pre-commit ``` - [Conda](https://anaconda.org/conda-forge/pre-commit) (πŸ“₯ 3.3M Β· ⏱️ 14.06.2023): ``` conda install -c conda-forge pre-commit ```
--- ## Related Resources - [**Best-of lists**](https://best-of.org): Discover other best-of lists with awesome open-source projects on all kinds of topics. ## Contribution Contributions are encouraged and always welcome! If you like to add or update projects, choose one of the following ways: - Open an issue by selecting one of the provided categories from the [issue page](https://github.com/ml-tooling/best-of-python-dev/issues/new/choose) and fill in the requested information. - Modify the [projects.yaml](https://github.com/ml-tooling/best-of-python-dev/blob/main/projects.yaml) with your additions or changes, and submit a pull request. This can also be done directly via the [Github UI](https://github.com/ml-tooling/best-of-python-dev/edit/main/projects.yaml). If you like to contribute to or share suggestions regarding the project metadata collection or markdown generation, please refer to the [best-of-generator](https://github.com/best-of-lists/best-of-generator) repository. If you like to create your own best-of list, we recommend to follow [this guide](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). For more information on how to add or update projects, please read the [contribution guidelines](https://github.com/ml-tooling/best-of-python-dev/blob/main/CONTRIBUTING.md). By participating in this project, you agree to abide by its [Code of Conduct](https://github.com/ml-tooling/best-of-python-dev/blob/main/.github/CODE_OF_CONDUCT.md). ## License [![CC0](https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/by-sa.svg)](https://creativecommons.org/licenses/by-sa/4.0/)