diff --git a/README.md b/README.md index cf17ae5..aa4c9fd 100644 --- a/README.md +++ b/README.md @@ -79,39 +79,39 @@ This curated list contains 270 awesome open-source projects with a total of 900K
ruff (πŸ₯‡43 Β· ⭐ 21K) - An extremely fast Python linter and code formatter, written in Rust. MIT -- [GitHub](https://github.com/astral-sh/ruff) (πŸ‘¨β€πŸ’» 330 Β· πŸ”€ 690 Β· πŸ“₯ 100K Β· πŸ“¦ 25K Β· πŸ“‹ 3.5K - 17% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/astral-sh/ruff) (πŸ‘¨β€πŸ’» 330 Β· πŸ”€ 700 Β· πŸ“₯ 110K Β· πŸ“¦ 26K Β· πŸ“‹ 3.5K - 17% open Β· ⏱️ 14.12.2023): ``` git clone https://github.com/charliermarsh/ruff ``` -- [PyPi](https://pypi.org/project/ruff) (πŸ“₯ 8M / month Β· πŸ“¦ 1.7K Β· ⏱️ 04.12.2023): +- [PyPi](https://pypi.org/project/ruff) (πŸ“₯ 8.2M / month Β· πŸ“¦ 1.8K Β· ⏱️ 13.12.2023): ``` pip install ruff ``` -- [Conda](https://anaconda.org/conda-forge/ruff) (πŸ“₯ 440K Β· ⏱️ 05.12.2023): +- [Conda](https://anaconda.org/conda-forge/ruff) (πŸ“₯ 440K Β· ⏱️ 14.12.2023): ``` conda install -c conda-forge ruff ```
pylint (πŸ₯‡42 Β· ⭐ 5K) - Its not just a linter that annoys you!. ❗️GPL-2.0 -- [GitHub](https://github.com/pylint-dev/pylint) (πŸ‘¨β€πŸ’» 550 Β· πŸ”€ 1K Β· πŸ“¦ 400K Β· πŸ“‹ 5.3K - 15% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/pylint-dev/pylint) (πŸ‘¨β€πŸ’» 550 Β· πŸ”€ 1.1K Β· πŸ“¦ 400K Β· πŸ“‹ 5.3K - 15% open Β· ⏱️ 13.12.2023): ``` git clone https://github.com/PyCQA/pylint ``` -- [PyPi](https://pypi.org/project/pylint) (πŸ“₯ 19M / month Β· πŸ“¦ 23K Β· ⏱️ 22.10.2023): +- [PyPi](https://pypi.org/project/pylint) (πŸ“₯ 19M / month Β· πŸ“¦ 23K Β· ⏱️ 11.12.2023): ``` pip install pylint ``` -- [Conda](https://anaconda.org/conda-forge/pylint) (πŸ“₯ 4.7M Β· ⏱️ 22.10.2023): +- [Conda](https://anaconda.org/conda-forge/pylint) (πŸ“₯ 4.7M Β· ⏱️ 11.12.2023): ``` conda install -c conda-forge pylint ```
flake8 (πŸ₯‡42 Β· ⭐ 3.1K) - Flake8 is a wrapper around these tools: PyFlakes; pycodestyle; Ned.. MIT -- [GitHub](https://github.com/PyCQA/flake8) (πŸ‘¨β€πŸ’» 170 Β· πŸ”€ 290 Β· πŸ“¦ 510K Β· πŸ“‹ 1.5K - 1% open Β· ⏱️ 27.11.2023): +- [GitHub](https://github.com/PyCQA/flake8) (πŸ‘¨β€πŸ’» 170 Β· πŸ”€ 300 Β· πŸ“¦ 510K Β· πŸ“‹ 1.5K - 1% open Β· ⏱️ 27.11.2023): ``` git clone https://github.com/PyCQA/flake8 @@ -127,39 +127,23 @@ This curated list contains 270 awesome open-source projects with a total of 900K
pycodestyle (πŸ₯‡37 Β· ⭐ 4.9K) - Simple Python style checker in one Python file. MIT -- [GitHub](https://github.com/PyCQA/pycodestyle) (πŸ‘¨β€πŸ’» 130 Β· πŸ”€ 780 Β· πŸ“¦ 20 Β· πŸ“‹ 740 - 14% open Β· ⏱️ 21.11.2023): +- [GitHub](https://github.com/PyCQA/pycodestyle) (πŸ‘¨β€πŸ’» 130 Β· πŸ”€ 800 Β· πŸ“¦ 20 Β· πŸ“‹ 740 - 14% open Β· ⏱️ 21.11.2023): ``` git clone https://github.com/PyCQA/pycodestyle ``` -- [PyPi](https://pypi.org/project/pycodestyle) (πŸ“₯ 34M / month Β· πŸ“¦ 12K Β· ⏱️ 12.10.2023): +- [PyPi](https://pypi.org/project/pycodestyle) (πŸ“₯ 35M / month Β· πŸ“¦ 12K Β· ⏱️ 12.10.2023): ``` pip install pycodestyle ``` -- [Conda](https://anaconda.org/conda-forge/pycodestyle) (πŸ“₯ 7.2M Β· ⏱️ 13.10.2023): +- [Conda](https://anaconda.org/conda-forge/pycodestyle) (πŸ“₯ 7.3M Β· ⏱️ 13.10.2023): ``` conda install -c conda-forge pycodestyle ```
-
pyflakes (πŸ₯ˆ36 Β· ⭐ 1.3K Β· πŸ“‰) - A simple program which checks Python source files for errors. MIT +
wemake-python-styleguide (πŸ₯ˆ34 Β· ⭐ 2.3K) - The strictest and most opinionated python linter ever!. MIT -- [GitHub](https://github.com/PyCQA/pyflakes) (πŸ‘¨β€πŸ’» 84 Β· πŸ”€ 170 Β· πŸ“¦ 260K Β· πŸ“‹ 520 - 10% open Β· ⏱️ 31.07.2023): - - ``` - git clone https://github.com/PyCQA/pyflakes - ``` -- [PyPi](https://pypi.org/project/pyflakes) (πŸ“₯ 27M / month Β· πŸ“¦ 14K Β· ⏱️ 29.07.2023): - ``` - pip install pyflakes - ``` -- [Conda](https://anaconda.org/conda-forge/pyflakes) (πŸ“₯ 7M Β· ⏱️ 29.07.2023): - ``` - conda install -c conda-forge pyflakes - ``` -
-
wemake-python-styleguide (πŸ₯ˆ35 Β· ⭐ 2.3K) - The strictest and most opinionated python linter ever!. MIT - -- [GitHub](https://github.com/wemake-services/wemake-python-styleguide) (πŸ‘¨β€πŸ’» 180 Β· πŸ”€ 380 Β· πŸ“¦ 16K Β· πŸ“‹ 1.1K - 10% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/wemake-services/wemake-python-styleguide) (πŸ‘¨β€πŸ’» 180 Β· πŸ”€ 380 Β· πŸ“¦ 16K Β· πŸ“‹ 1.1K - 10% open Β· ⏱️ 12.12.2023): ``` git clone https://github.com/wemake-services/wemake-python-styleguide @@ -169,14 +153,30 @@ This curated list contains 270 awesome open-source projects with a total of 900K 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 Β· πŸ”€ 180 Β· πŸ“¦ 260K Β· πŸ“‹ 520 - 10% open Β· ⏱️ 31.07.2023): + + ``` + git clone https://github.com/PyCQA/pyflakes + ``` +- [PyPi](https://pypi.org/project/pyflakes) (πŸ“₯ 27M / month): + ``` + pip install pyflakes + ``` +- [Conda](https://anaconda.org/conda-forge/pyflakes) (πŸ“₯ 7M Β· ⏱️ 29.07.2023): + ``` + conda install -c conda-forge pyflakes + ``` +
pydocstyle (πŸ₯ˆ33 Β· ⭐ 1.1K) - docstring style checker. MIT -- [GitHub](https://github.com/PyCQA/pydocstyle) (πŸ‘¨β€πŸ’» 92 Β· πŸ”€ 190 Β· πŸ“₯ 69 Β· πŸ“¦ 61K Β· πŸ“‹ 350 - 34% open Β· ⏱️ 03.11.2023): +- [GitHub](https://github.com/PyCQA/pydocstyle) (πŸ‘¨β€πŸ’» 92 Β· πŸ”€ 180 Β· πŸ“₯ 69 Β· πŸ“¦ 61K Β· πŸ“‹ 340 - 33% open Β· ⏱️ 03.11.2023): ``` git clone https://github.com/PyCQA/pydocstyle ``` -- [PyPi](https://pypi.org/project/pydocstyle) (πŸ“₯ 3.9M / month Β· πŸ“¦ 2.8K Β· ⏱️ 17.01.2023): +- [PyPi](https://pypi.org/project/pydocstyle) (πŸ“₯ 3.9M / month): ``` pip install pydocstyle ``` @@ -185,7 +185,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pydocstyle ```
-
parso (πŸ₯ˆ33 Β· ⭐ 560) - A Python Parser. MIT +
parso (πŸ₯ˆ33 Β· ⭐ 570) - A Python Parser. MIT - [GitHub](https://github.com/davidhalter/parso) (πŸ‘¨β€πŸ’» 46 Β· πŸ”€ 96 Β· πŸ“¦ 370K Β· πŸ“‹ 110 - 8% open Β· ⏱️ 18.06.2023): @@ -203,12 +203,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
flake8-bugbear (πŸ₯ˆ32 Β· ⭐ 1K) - A plugin for Flake8 finding likely bugs and design problems.. MIT -- [GitHub](https://github.com/PyCQA/flake8-bugbear) (πŸ‘¨β€πŸ’» 81 Β· πŸ”€ 100 Β· πŸ“¦ 35K Β· πŸ“‹ 210 - 25% open Β· ⏱️ 02.12.2023): +- [GitHub](https://github.com/PyCQA/flake8-bugbear) (πŸ‘¨β€πŸ’» 81 Β· πŸ”€ 99 Β· πŸ“¦ 35K Β· πŸ“‹ 210 - 25% open Β· ⏱️ 11.12.2023): ``` git clone https://github.com/PyCQA/flake8-bugbear ``` -- [PyPi](https://pypi.org/project/flake8-bugbear) (πŸ“₯ 2.4M / month Β· πŸ“¦ 500 Β· ⏱️ 02.12.2023): +- [PyPi](https://pypi.org/project/flake8-bugbear) (πŸ“₯ 2.5M / month): ``` pip install flake8-bugbear ``` @@ -219,12 +219,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
pylint-django (πŸ₯ˆ31 Β· ⭐ 570) - Pylint plugin for improving code analysis for when.. ❗️GPL-2.0 -- [GitHub](https://github.com/pylint-dev/pylint-django) (πŸ‘¨β€πŸ’» 70 Β· πŸ”€ 120 Β· πŸ“₯ 280 Β· πŸ“¦ 28K Β· πŸ“‹ 220 - 24% open Β· ⏱️ 04.11.2023): +- [GitHub](https://github.com/pylint-dev/pylint-django) (πŸ‘¨β€πŸ’» 70 Β· πŸ”€ 120 Β· πŸ“₯ 280 Β· πŸ“¦ 28K Β· πŸ“‹ 230 - 25% open Β· ⏱️ 04.11.2023): ``` git clone https://github.com/PyCQA/pylint-django ``` -- [PyPi](https://pypi.org/project/pylint-django) (πŸ“₯ 1.6M / month Β· πŸ“¦ 1.2K Β· ⏱️ 23.10.2023): +- [PyPi](https://pypi.org/project/pylint-django) (πŸ“₯ 1.4M / month Β· πŸ“¦ 1.2K Β· ⏱️ 23.10.2023): ``` pip install pylint-django ``` @@ -235,7 +235,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K
flake8-comprehensions (πŸ₯ˆ30 Β· ⭐ 450) - A flake8 plugin to help you write better.. MIT -- [GitHub](https://github.com/adamchainz/flake8-comprehensions) (πŸ‘¨β€πŸ’» 15 Β· πŸ”€ 21 Β· πŸ“¦ 26K Β· πŸ“‹ 55 - 7% open Β· ⏱️ 27.11.2023): +- [GitHub](https://github.com/adamchainz/flake8-comprehensions) (πŸ‘¨β€πŸ’» 15 Β· πŸ”€ 21 Β· πŸ“¦ 26K Β· πŸ“‹ 55 - 7% open Β· ⏱️ 12.12.2023): ``` git clone https://github.com/adamchainz/flake8-comprehensions @@ -249,25 +249,9 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge flake8-comprehensions ```
-
flake8-isort (πŸ₯ˆ30 Β· ⭐ 160) - flake8 plugin that integrates isort. ❗️GPL-2.0 - -- [GitHub](https://github.com/gforcada/flake8-isort) (πŸ‘¨β€πŸ’» 38 Β· πŸ”€ 97 Β· πŸ“¦ 25K Β· πŸ“‹ 57 - 1% open Β· ⏱️ 03.11.2023): - - ``` - git clone https://github.com/gforcada/flake8-isort - ``` -- [PyPi](https://pypi.org/project/flake8-isort) (πŸ“₯ 1.2M / month Β· πŸ“¦ 750 Β· ⏱️ 03.11.2023): - ``` - pip install flake8-isort - ``` -- [Conda](https://anaconda.org/conda-forge/flake8-isort) (πŸ“₯ 56K Β· ⏱️ 03.11.2023): - ``` - conda install -c conda-forge flake8-isort - ``` -
beartype (πŸ₯ˆ29 Β· ⭐ 2.2K) - Unbearably fast near-real-time hybrid runtime-static type-checking in.. MIT -- [GitHub](https://github.com/beartype/beartype) (πŸ‘¨β€πŸ’» 18 Β· πŸ”€ 40 Β· πŸ“‹ 240 - 22% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/beartype/beartype) (πŸ‘¨β€πŸ’» 18 Β· πŸ”€ 40 Β· πŸ“‹ 240 - 22% open Β· ⏱️ 14.12.2023): ``` git clone https://github.com/beartype/beartype @@ -281,18 +265,6 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge beartype ```
-
hacking (πŸ₯ˆ28 Β· ⭐ 230) - OpenStack Hacking Style Checks. Mirror of code maintained at.. Apache-2 - -- [GitHub](https://github.com/openstack/hacking) (πŸ‘¨β€πŸ’» 190 Β· πŸ”€ 66 Β· ⏱️ 06.12.2023): - - ``` - git clone https://github.com/openstack/hacking - ``` -- [PyPi](https://pypi.org/project/hacking) (πŸ“₯ 76K / month Β· πŸ“¦ 4.4K Β· ⏱️ 27.04.2023): - ``` - pip install hacking - ``` -
flake8-quotes (πŸ₯ˆ28 Β· ⭐ 170 Β· πŸ’€) - Flake8 extension for checking quotes in python. MIT - [GitHub](https://github.com/zheller/flake8-quotes) (πŸ‘¨β€πŸ’» 32 Β· πŸ”€ 39 Β· πŸ“¦ 20K Β· πŸ“‹ 52 - 15% open Β· ⏱️ 19.12.2022): @@ -300,7 +272,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/zheller/flake8-quotes ``` -- [PyPi](https://pypi.org/project/flake8-quotes) (πŸ“₯ 710K / month Β· πŸ“¦ 930 Β· ⏱️ 19.12.2022): +- [PyPi](https://pypi.org/project/flake8-quotes) (πŸ“₯ 700K / month Β· πŸ“¦ 930 Β· ⏱️ 19.12.2022): ``` pip install flake8-quotes ``` @@ -309,50 +281,34 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge flake8-quotes ```
-
nitpick (πŸ₯‰27 Β· ⭐ 370) - Enforce the same settings on multiple projects. MIT +
flake8-isort (πŸ₯ˆ28 Β· ⭐ 160) - flake8 plugin that integrates isort. ❗️GPL-2.0 + +- [GitHub](https://github.com/gforcada/flake8-isort) (πŸ‘¨β€πŸ’» 38 Β· πŸ”€ 97 Β· πŸ“¦ 25K Β· πŸ“‹ 57 - 1% open Β· ⏱️ 03.11.2023): + + ``` + git clone https://github.com/gforcada/flake8-isort + ``` +- [PyPi](https://pypi.org/project/flake8-isort) (πŸ“₯ 1.2M / month): + ``` + pip install flake8-isort + ``` +- [Conda](https://anaconda.org/conda-forge/flake8-isort) (πŸ“₯ 57K Β· ⏱️ 03.11.2023): + ``` + conda install -c conda-forge flake8-isort + ``` +
+
nitpick (πŸ₯ˆ27 Β· ⭐ 370) - Enforce the same settings on multiple projects. MIT - [GitHub](https://github.com/andreoliwa/nitpick) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 21 Β· πŸ“₯ 5 Β· πŸ“¦ 1.3K Β· πŸ“‹ 130 - 36% open Β· ⏱️ 20.11.2023): ``` git clone https://github.com/andreoliwa/nitpick ``` -- [PyPi](https://pypi.org/project/nitpick) (πŸ“₯ 33K / month Β· πŸ“¦ 13 Β· ⏱️ 19.08.2023): +- [PyPi](https://pypi.org/project/nitpick) (πŸ“₯ 32K / month Β· πŸ“¦ 13 Β· ⏱️ 19.08.2023): ``` pip install nitpick ```
-
flake8-builtins (πŸ₯‰27 Β· ⭐ 110) - Check for python builtins being used as variables or.. ❗️GPL-2.0 - -- [GitHub](https://github.com/gforcada/flake8-builtins) (πŸ‘¨β€πŸ’» 18 Β· πŸ”€ 22 Β· πŸ“¦ 9.9K Β· πŸ“‹ 46 - 2% open Β· ⏱️ 03.11.2023): - - ``` - git clone https://github.com/gforcada/flake8-builtins - ``` -- [PyPi](https://pypi.org/project/flake8-builtins) (πŸ“₯ 710K / month Β· πŸ“¦ 510 Β· ⏱️ 03.11.2023): - ``` - pip install flake8-builtins - ``` -- [Conda](https://anaconda.org/conda-forge/flake8-builtins) (πŸ“₯ 230K Β· ⏱️ 03.11.2023): - ``` - conda install -c conda-forge flake8-builtins - ``` -
-
mypy-protobuf (πŸ₯‰26 Β· ⭐ 600) - open source tools to generate mypy stubs from protobufs. Apache-2 - -- [GitHub](https://github.com/nipunn1313/mypy-protobuf) (πŸ‘¨β€πŸ’» 37 Β· πŸ”€ 78 Β· πŸ“‹ 120 - 9% open Β· ⏱️ 03.08.2023): - - ``` - git clone https://github.com/dropbox/mypy-protobuf - ``` -- [PyPi](https://pypi.org/project/mypy-protobuf) (πŸ“₯ 2.2M / month Β· πŸ“¦ 110 Β· ⏱️ 29.07.2023): - ``` - pip install mypy-protobuf - ``` -- [Conda](https://anaconda.org/conda-forge/mypy-protobuf) (πŸ“₯ 120K Β· ⏱️ 20.08.2023): - ``` - conda install -c conda-forge mypy-protobuf - ``` -
flake8-eradicate (πŸ₯‰26 Β· ⭐ 300 Β· πŸ’€) - Flake8 plugin to find commented out or dead code. MIT - [GitHub](https://github.com/wemake-services/flake8-eradicate) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 14 Β· πŸ“¦ 18K Β· πŸ“‹ 50 - 38% open Β· ⏱️ 31.05.2023): @@ -360,7 +316,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/wemake-services/flake8-eradicate ``` -- [PyPi](https://pypi.org/project/flake8-eradicate) (πŸ“₯ 600K / month Β· πŸ“¦ 120 Β· ⏱️ 31.05.2023): +- [PyPi](https://pypi.org/project/flake8-eradicate) (πŸ“₯ 580K / month Β· πŸ“¦ 120 Β· ⏱️ 31.05.2023): ``` pip install flake8-eradicate ``` @@ -385,20 +341,20 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge check-manifest ```
-
flake8-black (πŸ₯‰25 Β· ⭐ 160) - flake8 plugin to run black for checking Python coding style. MIT +
flake8-builtins (πŸ₯‰25 Β· ⭐ 110) - Check for python builtins being used as variables or.. ❗️GPL-2.0 -- [GitHub](https://github.com/peterjc/flake8-black) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 11 Β· πŸ“¦ 7.4K Β· πŸ“‹ 29 - 20% open Β· ⏱️ 07.11.2023): +- [GitHub](https://github.com/gforcada/flake8-builtins) (πŸ‘¨β€πŸ’» 18 Β· πŸ”€ 22 Β· πŸ“¦ 9.9K Β· πŸ“‹ 46 - 2% open Β· ⏱️ 09.12.2023): ``` - git clone https://github.com/peterjc/flake8-black + git clone https://github.com/gforcada/flake8-builtins ``` -- [PyPi](https://pypi.org/project/flake8-black) (πŸ“₯ 810K / month Β· πŸ“¦ 280 Β· ⏱️ 20.12.2022): +- [PyPi](https://pypi.org/project/flake8-builtins) (πŸ“₯ 710K / month): ``` - pip install flake8-black + pip install flake8-builtins ``` -- [Conda](https://anaconda.org/conda-forge/flake8-black) (πŸ“₯ 460K Β· ⏱️ 16.06.2023): +- [Conda](https://anaconda.org/conda-forge/flake8-builtins) (πŸ“₯ 230K Β· ⏱️ 03.11.2023): ``` - conda install -c conda-forge flake8-black + conda install -c conda-forge flake8-builtins ```
flake8-import-order (πŸ₯‰24 Β· ⭐ 280) - Flake8 plugin that checks import order against.. ❗️LGPL-3.0 @@ -408,7 +364,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/PyCQA/flake8-import-order ``` -- [PyPi](https://pypi.org/project/flake8-import-order) (πŸ“₯ 440K / month Β· πŸ“¦ 1.3K Β· ⏱️ 26.11.2022): +- [PyPi](https://pypi.org/project/flake8-import-order) (πŸ“₯ 430K / month Β· πŸ“¦ 1.3K Β· ⏱️ 26.11.2022): ``` pip install flake8-import-order ``` @@ -417,30 +373,30 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge flake8-import-order ```
-
flake8-simplify (πŸ₯‰22 Β· ⭐ 170) - A flake8 plugin that helps you to simplify code. MIT +
flake8-black (πŸ₯‰24 Β· ⭐ 160) - flake8 plugin to run black for checking Python coding style. MIT -- [GitHub](https://github.com/MartinThoma/flake8-simplify) (πŸ‘¨β€πŸ’» 14 Β· πŸ”€ 19 Β· πŸ“‹ 120 - 39% open Β· ⏱️ 24.09.2023): +- [GitHub](https://github.com/peterjc/flake8-black) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 10 Β· πŸ“¦ 7.4K Β· πŸ“‹ 29 - 20% open Β· ⏱️ 07.11.2023): ``` - git clone https://github.com/MartinThoma/flake8-simplify + git clone https://github.com/peterjc/flake8-black ``` -- [PyPi](https://pypi.org/project/flake8-simplify) (πŸ“₯ 280K / month Β· πŸ“¦ 39 Β· ⏱️ 23.09.2023): +- [PyPi](https://pypi.org/project/flake8-black) (πŸ“₯ 800K / month): ``` - pip install flake8-simplify + pip install flake8-black ``` -- [Conda](https://anaconda.org/conda-forge/flake8-simplify) (πŸ“₯ 36K Β· ⏱️ 26.09.2023): +- [Conda](https://anaconda.org/conda-forge/flake8-black) (πŸ“₯ 460K Β· ⏱️ 16.06.2023): ``` - conda install -c conda-forge flake8-simplify + conda install -c conda-forge flake8-black ```
pandas-vet (πŸ₯‰22 Β· ⭐ 160) - A plugin for Flake8 that checks pandas code. MIT -- [GitHub](https://github.com/deppen8/pandas-vet) (πŸ‘¨β€πŸ’» 14 Β· πŸ”€ 18 Β· πŸ“₯ 71 Β· πŸ“¦ 410 Β· πŸ“‹ 52 - 21% open Β· ⏱️ 11.08.2023): +- [GitHub](https://github.com/deppen8/pandas-vet) (πŸ‘¨β€πŸ’» 14 Β· πŸ”€ 17 Β· πŸ“₯ 71 Β· πŸ“¦ 410 Β· πŸ“‹ 51 - 19% open Β· ⏱️ 11.08.2023): ``` git clone https://github.com/deppen8/pandas-vet ``` -- [PyPi](https://pypi.org/project/pandas-vet) (πŸ“₯ 32K / month Β· πŸ“¦ 18 Β· ⏱️ 11.08.2023): +- [PyPi](https://pypi.org/project/pandas-vet) (πŸ“₯ 32K / month): ``` pip install pandas-vet ``` @@ -449,6 +405,50 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pandas-vet ```
+
mypy-protobuf (πŸ₯‰21 Β· ⭐ 600) - open source tools to generate mypy stubs from protobufs. Apache-2 + +- [GitHub](https://github.com/nipunn1313/mypy-protobuf) (πŸ‘¨β€πŸ’» 37 Β· πŸ”€ 72 Β· πŸ“‹ 120 - 9% open Β· ⏱️ 03.08.2023): + + ``` + git clone https://github.com/dropbox/mypy-protobuf + ``` +- [PyPi](https://pypi.org/project/mypy-protobuf) (πŸ“₯ 2.4M / month): + ``` + pip install mypy-protobuf + ``` +- [Conda](https://anaconda.org/conda-forge/mypy-protobuf) (πŸ“₯ 120K Β· ⏱️ 20.08.2023): + ``` + conda install -c conda-forge mypy-protobuf + ``` +
+
hacking (πŸ₯‰20 Β· ⭐ 230 Β· πŸ“‰) - OpenStack Hacking Style Checks. Mirror of code maintained at.. Apache-2 + +- [GitHub](https://github.com/openstack/hacking) (πŸ‘¨β€πŸ’» 190 Β· πŸ”€ 47 Β· ⏱️ 06.12.2023): + + ``` + git clone https://github.com/openstack/hacking + ``` +- [PyPi](https://pypi.org/project/hacking) (πŸ“₯ 76K / month): + ``` + pip install hacking + ``` +
+
flake8-simplify (πŸ₯‰19 Β· ⭐ 170) - A flake8 plugin that helps you to simplify code. MIT + +- [GitHub](https://github.com/MartinThoma/flake8-simplify) (πŸ‘¨β€πŸ’» 14 Β· πŸ”€ 18 Β· πŸ“‹ 120 - 39% open Β· ⏱️ 24.09.2023): + + ``` + git clone https://github.com/MartinThoma/flake8-simplify + ``` +- [PyPi](https://pypi.org/project/flake8-simplify) (πŸ“₯ 290K / month): + ``` + pip install flake8-simplify + ``` +- [Conda](https://anaconda.org/conda-forge/flake8-simplify) (πŸ“₯ 36K Β· ⏱️ 26.09.2023): + ``` + conda install -c conda-forge flake8-simplify + ``` +
bellybutton (πŸ₯‰18 Β· ⭐ 260) - Custom Python linting through AST expressions. MIT - [GitHub](https://github.com/hchasestevens/bellybutton) (πŸ‘¨β€πŸ’» 6 Β· πŸ”€ 15 Β· πŸ“¦ 41 Β· πŸ“‹ 17 - 64% open Β· ⏱️ 27.07.2023): @@ -456,7 +456,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/hchasestevens/bellybutton ``` -- [PyPi](https://pypi.org/project/bellybutton) (πŸ“₯ 12K / month Β· πŸ“¦ 1 Β· ⏱️ 27.07.2023): +- [PyPi](https://pypi.org/project/bellybutton) (πŸ“₯ 14K / month Β· πŸ“¦ 1 Β· ⏱️ 27.07.2023): ``` pip install bellybutton ``` @@ -468,7 +468,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/justinabrahms/imhotep ``` -- [PyPi](https://pypi.org/project/imhotep) (πŸ“₯ 77 / month Β· πŸ“¦ 6 Β· ⏱️ 20.02.2022): +- [PyPi](https://pypi.org/project/imhotep) (πŸ“₯ 70 / month Β· πŸ“¦ 6 Β· ⏱️ 20.02.2022): ``` pip install imhotep ``` @@ -487,18 +487,18 @@ This curated list contains 270 awesome open-source projects with a total of 900K
Show 13 hidden projects... -- coala (πŸ₯ˆ28 Β· ⭐ 3.5K Β· πŸ’€) - coala provides a unified command-line interface for linting and.. ❗️AGPL-3.0 - pep8-naming (πŸ₯ˆ28 Β· ⭐ 470) - Naming Convention checker for Python. ❗️Saxpath -- pylama (πŸ₯‰27 Β· ⭐ 1K Β· πŸ’€) - Code audit tool for python. MIT -- darglint (πŸ₯‰27 Β· ⭐ 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 +- darglint (πŸ₯‰26 Β· ⭐ 480 Β· πŸ’€) - A python documentation linter which checks that the docstring.. MIT +- pylama (πŸ₯‰25 Β· ⭐ 1K Β· πŸ’€) - Code audit tool for python. MIT - data-science-types (πŸ₯‰25 Β· ⭐ 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 (πŸ₯‰24 Β· ⭐ 620) - Advanced Python linting framework with auto-fixes and hierarchical.. ❗Unlicensed -- flake8-bandit (πŸ₯‰21 Β· ⭐ 110 Β· πŸ’€) - Automated security testing using bandit and flake8. MIT -- pylint-flask (πŸ₯‰20 Β· ⭐ 64 Β· πŸ’€) - A Pylint plugin to analyze Flask applications. ❗️GPL-2.0 - flakehell (πŸ₯‰19 Β· ⭐ 230 Β· πŸ’€) - Flake8 wrapper to make it nice, legacy-friendly, configurable. MIT - flake8-mypy (πŸ₯‰19 Β· ⭐ 100 Β· πŸ’€) - A plugin for flake8 integrating Mypy. MIT +- pylint-flask (πŸ₯‰19 Β· ⭐ 64 Β· πŸ’€) - A Pylint plugin to analyze Flask applications. ❗️GPL-2.0 - pycycle (πŸ₯‰15 Β· ⭐ 320 Β· πŸ’€) - Tool for pinpointing circular imports in Python. Find cyclic imports.. MIT +- flake8-bandit (πŸ₯‰15 Β· ⭐ 110 Β· πŸ’€) - Automated security testing using bandit and flake8. MIT - yala (πŸ₯‰15 Β· ⭐ 14 Β· πŸ’€) - Yet Another Linter Aggregator. MIT

@@ -509,75 +509,48 @@ This curated list contains 270 awesome open-source projects with a total of 900K
mypy (πŸ₯‡45 Β· ⭐ 17K) - Optional static typing for Python. MIT -- [GitHub](https://github.com/python/mypy) (πŸ‘¨β€πŸ’» 680 Β· πŸ”€ 2.7K Β· πŸ“¦ 220K Β· πŸ“‹ 10K - 25% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/python/mypy) (πŸ‘¨β€πŸ’» 680 Β· πŸ”€ 2.7K Β· πŸ“¦ 220K Β· πŸ“‹ 10K - 25% open Β· ⏱️ 13.12.2023): ``` git clone https://github.com/python/mypy ``` -- [PyPi](https://pypi.org/project/mypy) (πŸ“₯ 20M / month Β· πŸ“¦ 9.7K Β· ⏱️ 23.11.2023): +- [PyPi](https://pypi.org/project/mypy) (πŸ“₯ 20M / month Β· πŸ“¦ 9.8K Β· ⏱️ 23.11.2023): ``` pip install mypy ``` -- [Conda](https://anaconda.org/conda-forge/mypy) (πŸ“₯ 3.6M Β· ⏱️ 23.11.2023): +- [Conda](https://anaconda.org/conda-forge/mypy) (πŸ“₯ 3.6M Β· ⏱️ 11.12.2023): ``` conda install -c conda-forge mypy ```
pyright (πŸ₯ˆ38 Β· ⭐ 11K) - Static Type Checker for Python. MIT -- [GitHub](https://github.com/microsoft/pyright) (πŸ‘¨β€πŸ’» 100 Β· πŸ”€ 1.2K Β· πŸ“₯ 1.3K Β· πŸ“¦ 680 Β· πŸ“‹ 4.9K - 0% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/microsoft/pyright) (πŸ‘¨β€πŸ’» 100 Β· πŸ”€ 1.2K Β· πŸ“₯ 1.3K Β· πŸ“¦ 680 Β· πŸ“‹ 4.9K - 0% open Β· ⏱️ 14.12.2023): ``` git clone https://github.com/Microsoft/pyright ``` -- [npm](https://www.npmjs.com/package/pyright) (πŸ“₯ 810K / month Β· πŸ“¦ 12 Β· ⏱️ 06.12.2023): +- [npm](https://www.npmjs.com/package/pyright) (πŸ“₯ 820K / month Β· πŸ“¦ 12 Β· ⏱️ 13.12.2023): ``` npm install pyright ```
-
pyre-check (πŸ₯‰35 Β· ⭐ 6.6K) - Performant type-checking for python. MIT +
pyre-check (πŸ₯‰33 Β· ⭐ 6.6K) - Performant type-checking for python. MIT -- [GitHub](https://github.com/facebook/pyre-check) (πŸ‘¨β€πŸ’» 250 Β· πŸ”€ 460 Β· πŸ“¦ 21 Β· πŸ“‹ 400 - 35% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/facebook/pyre-check) (πŸ‘¨β€πŸ’» 250 Β· πŸ”€ 410 Β· πŸ“¦ 21 Β· πŸ“‹ 380 - 31% open Β· ⏱️ 13.12.2023): ``` git clone https://github.com/facebook/pyre-check ``` -- [PyPi](https://pypi.org/project/pyre-check) (πŸ“₯ 74K / month Β· πŸ“¦ 54 Β· ⏱️ 19.10.2023): +- [PyPi](https://pypi.org/project/pyre-check) (πŸ“₯ 73K / month): ``` pip install pyre-check ```
-
typeguard (πŸ₯‰35 Β· ⭐ 1.4K) - Run-time type checker for Python. MIT +
Show 2 hidden projects... -- [GitHub](https://github.com/agronholm/typeguard) (πŸ‘¨β€πŸ’» 33 Β· πŸ”€ 97 Β· πŸ“¦ 20K Β· πŸ“‹ 300 - 6% open Β· ⏱️ 29.11.2023): - - ``` - git clone https://github.com/agronholm/typeguard - ``` -- [PyPi](https://pypi.org/project/typeguard) (πŸ“₯ 11M / month Β· πŸ“¦ 1.6K Β· ⏱️ 11.09.2023): - ``` - pip install typeguard - ``` -- [Conda](https://anaconda.org/conda-forge/typeguard) (πŸ“₯ 460K Β· ⏱️ 24.10.2023): - ``` - conda install -c conda-forge typeguard - ``` -
-
pytype (πŸ₯‰33 Β· ⭐ 4.4K) - A static type analyzer for Python code. Apache-2 - -- [GitHub](https://github.com/google/pytype) (πŸ‘¨β€πŸ’» 100 Β· πŸ”€ 280 Β· πŸ“‹ 660 - 21% open Β· ⏱️ 06.12.2023): - - ``` - git clone https://github.com/google/pytype - ``` -- [PyPi](https://pypi.org/project/pytype) (πŸ“₯ 390K / month Β· πŸ“¦ 150 Β· ⏱️ 30.11.2023): - ``` - pip install pytype - ``` -- [Conda](https://anaconda.org/conda-forge/pytype) (πŸ“₯ 180K Β· ⏱️ 06.12.2023): - ``` - conda install -c conda-forge pytype - ``` +- typeguard (πŸ₯‰33 Β· ⭐ 1.4K) - Run-time type checker for Python. ❗Unlicensed +- pytype (πŸ₯‰27 Β· ⭐ 4.4K Β· πŸ“‰) - A static type analyzer for Python code. ❗Unlicensed

@@ -587,23 +560,39 @@ This curated list contains 270 awesome open-source projects with a total of 900K
black (πŸ₯‡46 Β· ⭐ 36K) - The uncompromising Python code formatter. MIT -- [GitHub](https://github.com/psf/black) (πŸ‘¨β€πŸ’» 420 Β· πŸ”€ 2.3K Β· πŸ“₯ 52K Β· πŸ“¦ 440K Β· πŸ“‹ 2.5K - 15% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/psf/black) (πŸ‘¨β€πŸ’» 430 Β· πŸ”€ 2.1K Β· πŸ“₯ 52K Β· πŸ“¦ 450K Β· πŸ“‹ 2.4K - 14% open Β· ⏱️ 14.12.2023): ``` git clone https://github.com/psf/black ``` -- [PyPi](https://pypi.org/project/black) (πŸ“₯ 30M / month Β· πŸ“¦ 14K Β· ⏱️ 08.11.2023): +- [PyPi](https://pypi.org/project/black) (πŸ“₯ 31M / month): ``` pip install black ``` -- [Conda](https://anaconda.org/conda-forge/black) (πŸ“₯ 8.9M Β· ⏱️ 30.11.2023): +- [Conda](https://anaconda.org/conda-forge/black) (πŸ“₯ 9M Β· ⏱️ 30.11.2023): ``` conda install -c conda-forge black ```
+
isort (πŸ₯ˆ42 Β· ⭐ 6.2K Β· πŸ“ˆ) - A Python utility / library to sort imports. MIT + +- [GitHub](https://github.com/PyCQA/isort) (πŸ‘¨β€πŸ’» 290 Β· πŸ”€ 530 Β· πŸ“¦ 430K Β· πŸ“‹ 1.2K - 13% open Β· ⏱️ 13.12.2023): + + ``` + git clone https://github.com/PyCQA/isort + ``` +- [PyPi](https://pypi.org/project/isort) (πŸ“₯ 28M / month): + ``` + pip install isort + ``` +- [Conda](https://anaconda.org/conda-forge/isort) (πŸ“₯ 5.5M Β· ⏱️ 14.12.2023): + ``` + conda install -c conda-forge isort + ``` +
yapf (πŸ₯ˆ41 Β· ⭐ 14K) - A formatter for Python files. Apache-2 -- [GitHub](https://github.com/google/yapf) (πŸ‘¨β€πŸ’» 150 Β· πŸ”€ 930 Β· πŸ“¦ 87K Β· πŸ“‹ 830 - 44% open Β· ⏱️ 08.11.2023): +- [GitHub](https://github.com/google/yapf) (πŸ‘¨β€πŸ’» 150 Β· πŸ”€ 930 Β· πŸ“¦ 88K Β· πŸ“‹ 830 - 44% open Β· ⏱️ 08.11.2023): ``` git clone https://github.com/google/yapf @@ -617,22 +606,6 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge yapf ```
-
isort (πŸ₯ˆ40 Β· ⭐ 6.2K) - A Python utility / library to sort imports. MIT - -- [GitHub](https://github.com/PyCQA/isort) (πŸ‘¨β€πŸ’» 290 Β· πŸ”€ 540 Β· πŸ“¦ 430K Β· πŸ“‹ 1.2K - 14% open Β· ⏱️ 04.12.2023): - - ``` - git clone https://github.com/PyCQA/isort - ``` -- [PyPi](https://pypi.org/project/isort) (πŸ“₯ 27M / month Β· πŸ“¦ 18K Β· ⏱️ 31.01.2023): - ``` - pip install isort - ``` -- [Conda](https://anaconda.org/conda-forge/isort) (πŸ“₯ 5.5M Β· ⏱️ 16.06.2023): - ``` - conda install -c conda-forge isort - ``` -
autopep8 (πŸ₯‰38 Β· ⭐ 4.5K) - A tool that automatically formats Python code to conform to the PEP 8.. MIT - [GitHub](https://github.com/hhatto/autopep8) (πŸ‘¨β€πŸ’» 60 Β· πŸ”€ 300 Β· πŸ“¦ 200K Β· πŸ“‹ 480 - 25% open Β· ⏱️ 27.10.2023): @@ -656,7 +629,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/myint/docformatter ``` -- [PyPi](https://pypi.org/project/docformatter) (πŸ“₯ 370K / month Β· πŸ“¦ 160 Β· ⏱️ 12.07.2023): +- [PyPi](https://pypi.org/project/docformatter) (πŸ“₯ 390K / month Β· πŸ“¦ 160 Β· ⏱️ 12.07.2023): ``` pip install docformatter ``` @@ -672,7 +645,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/lyz-code/autoimport ``` -- [PyPi](https://pypi.org/project/autoimport) (πŸ“₯ 4K / month Β· πŸ“¦ 8 Β· ⏱️ 23.11.2023): +- [PyPi](https://pypi.org/project/autoimport) (πŸ“₯ 4.2K / month Β· πŸ“¦ 8 Β· ⏱️ 23.11.2023): ``` pip install autoimport ``` @@ -689,7 +662,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K
jedi (πŸ₯‡43 Β· ⭐ 5.6K) - Awesome autocompletion, static analysis and refactoring library for python. MIT -- [GitHub](https://github.com/davidhalter/jedi) (πŸ‘¨β€πŸ’» 160 Β· πŸ”€ 500 Β· πŸ“¦ 370K Β· πŸ“‹ 1.4K - 3% open Β· ⏱️ 04.10.2023): +- [GitHub](https://github.com/davidhalter/jedi) (πŸ‘¨β€πŸ’» 160 Β· πŸ”€ 500 Β· πŸ“¦ 380K Β· πŸ“‹ 1.4K - 3% open Β· ⏱️ 04.10.2023): ``` git clone https://github.com/davidhalter/jedi @@ -703,14 +676,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge jedi ```
-
rope (πŸ₯‡36 Β· ⭐ 1.7K) - a python refactoring library. ❗️LGPL-3.0 +
rope (πŸ₯‡36 Β· ⭐ 1.8K) - a python refactoring library. ❗️LGPL-3.0 - [GitHub](https://github.com/python-rope/rope) (πŸ‘¨β€πŸ’» 79 Β· πŸ”€ 200 Β· πŸ“¦ 71K Β· πŸ“‹ 320 - 26% open Β· ⏱️ 05.11.2023): ``` git clone https://github.com/python-rope/rope ``` -- [PyPi](https://pypi.org/project/rope) (πŸ“₯ 850K / month Β· πŸ“¦ 1.6K Β· ⏱️ 05.11.2023): +- [PyPi](https://pypi.org/project/rope) (πŸ“₯ 820K / month Β· πŸ“¦ 1.6K Β· ⏱️ 05.11.2023): ``` pip install rope ``` @@ -726,7 +699,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/asottile/pyupgrade ``` -- [PyPi](https://pypi.org/project/pyupgrade) (πŸ“₯ 490K / month Β· πŸ“¦ 180 Β· ⏱️ 07.10.2023): +- [PyPi](https://pypi.org/project/pyupgrade) (πŸ“₯ 500K / month Β· πŸ“¦ 180 Β· ⏱️ 07.10.2023): ``` pip install pyupgrade ``` @@ -737,12 +710,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
vulture (πŸ₯ˆ31 Β· ⭐ 2.8K) - Find dead Python code. MIT -- [GitHub](https://github.com/jendrikseipp/vulture) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 140 Β· πŸ“¦ 4.2K Β· πŸ“‹ 200 - 11% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/jendrikseipp/vulture) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 140 Β· πŸ“¦ 4.2K Β· πŸ“‹ 200 - 10% open Β· ⏱️ 06.12.2023): ``` git clone https://github.com/jendrikseipp/vulture ``` -- [PyPi](https://pypi.org/project/vulture) (πŸ“₯ 520K / month Β· πŸ“¦ 270 Β· ⏱️ 06.10.2023): +- [PyPi](https://pypi.org/project/vulture) (πŸ“₯ 510K / month Β· πŸ“¦ 270 Β· ⏱️ 06.10.2023): ``` pip install vulture ``` @@ -767,14 +740,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge autoflake ```
-
MonkeyType (πŸ₯ˆ26 Β· ⭐ 4.4K) - A Python library that generates static type annotations by.. BSD-3 +
MonkeyType (πŸ₯ˆ25 Β· ⭐ 4.4K) - A Python library that generates static type annotations by.. BSD-3 - [GitHub](https://github.com/Instagram/MonkeyType) (πŸ‘¨β€πŸ’» 47 Β· πŸ”€ 160 Β· πŸ“‹ 180 - 23% open Β· ⏱️ 21.09.2023): ``` git clone https://github.com/Instagram/MonkeyType ``` -- [PyPi](https://pypi.org/project/monkeytype) (πŸ“₯ 80K / month Β· πŸ“¦ 28 Β· ⏱️ 20.03.2023): +- [PyPi](https://pypi.org/project/monkeytype) (πŸ“₯ 89K / month Β· πŸ“¦ 28 Β· ⏱️ 20.03.2023): ``` pip install monkeytype ``` @@ -790,7 +763,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/facebookincubator/Bowler ``` -- [PyPi](https://pypi.org/project/bowler) (πŸ“₯ 72K / month Β· πŸ“¦ 15 Β· ⏱️ 17.09.2020): +- [PyPi](https://pypi.org/project/bowler) (πŸ“₯ 73K / month Β· πŸ“¦ 15 Β· ⏱️ 17.09.2020): ``` pip install bowler ``` @@ -799,50 +772,50 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge bowler ```
-
add-trailing-comma (πŸ₯‰23 Β· ⭐ 320) - A tool (and pre-commit hook) to automatically add trailing.. MIT - -- [GitHub](https://github.com/asottile/add-trailing-comma) (πŸ‘¨β€πŸ’» 11 Β· πŸ”€ 22 Β· ⏱️ 27.11.2023): - - ``` - git clone https://github.com/asottile/add-trailing-comma - ``` -- [PyPi](https://pypi.org/project/add-trailing-comma) (πŸ“₯ 28K / month Β· πŸ“¦ 22 Β· ⏱️ 30.08.2023): - ``` - pip install add-trailing-comma - ``` -
-
unimport (πŸ₯‰22 Β· ⭐ 240) - The ultimate linter and formatter for removing unused import statements.. MIT +
unimport (πŸ₯‰21 Β· ⭐ 240) - The ultimate linter and formatter for removing unused import statements.. MIT - [GitHub](https://github.com/hakancelikdev/unimport) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 22 Β· πŸ“‹ 120 - 10% open Β· ⏱️ 03.12.2023): ``` git clone https://github.com/hakancelik96/unimport ``` -- [PyPi](https://pypi.org/project/unimport) (πŸ“₯ 24K / month Β· πŸ“¦ 8 Β· ⏱️ 17.11.2023): +- [PyPi](https://pypi.org/project/unimport) (πŸ“₯ 26K / month): ``` pip install unimport ```
-
massedit (πŸ₯‰19 Β· ⭐ 110) - Programmatically edit text files with Python. Useful for source to source.. MIT +
add-trailing-comma (πŸ₯‰18 Β· ⭐ 320) - A tool (and pre-commit hook) to automatically add trailing.. MIT -- [GitHub](https://github.com/elmotec/massedit) (πŸ‘¨β€πŸ’» 9 Β· πŸ”€ 16 Β· πŸ“₯ 23 Β· πŸ“¦ 41 Β· πŸ“‹ 11 - 36% open Β· ⏱️ 12.09.2023): +- [GitHub](https://github.com/asottile/add-trailing-comma) (πŸ‘¨β€πŸ’» 11 Β· πŸ”€ 21 Β· ⏱️ 27.11.2023): + + ``` + git clone https://github.com/asottile/add-trailing-comma + ``` +- [PyPi](https://pypi.org/project/add-trailing-comma) (πŸ“₯ 28K / month): + ``` + pip install add-trailing-comma + ``` +
+
massedit (πŸ₯‰17 Β· ⭐ 110) - Programmatically edit text files with Python. Useful for source to source.. MIT + +- [GitHub](https://github.com/elmotec/massedit) (πŸ‘¨β€πŸ’» 9 Β· πŸ”€ 16 Β· πŸ“₯ 23 Β· πŸ“¦ 41 Β· πŸ“‹ 8 - 12% open Β· ⏱️ 12.09.2023): ``` git clone https://github.com/elmotec/massedit ``` -- [PyPi](https://pypi.org/project/massedit) (πŸ“₯ 6.4K / month Β· πŸ“¦ 7 Β· ⏱️ 11.09.2023): +- [PyPi](https://pypi.org/project/massedit) (πŸ“₯ 6.3K / month): ``` pip install massedit ```
-
com2ann (πŸ₯‰18 Β· ⭐ 140) - Tool for translation type comments to type annotations in Python. MIT +
com2ann (πŸ₯‰16 Β· ⭐ 140) - Tool for translation type comments to type annotations in Python. MIT -- [GitHub](https://github.com/ilevkivskyi/com2ann) (πŸ‘¨β€πŸ’» 7 Β· πŸ”€ 11 Β· πŸ“¦ 55 Β· πŸ“‹ 28 - 25% open Β· ⏱️ 29.08.2023): +- [GitHub](https://github.com/ilevkivskyi/com2ann) (πŸ‘¨β€πŸ’» 7 Β· πŸ”€ 11 Β· πŸ“¦ 58 Β· πŸ“‹ 28 - 25% open Β· ⏱️ 29.08.2023): ``` git clone https://github.com/ilevkivskyi/com2ann ``` -- [PyPi](https://pypi.org/project/com2ann) (πŸ“₯ 16K / month Β· πŸ“¦ 2 Β· ⏱️ 21.08.2021): +- [PyPi](https://pypi.org/project/com2ann) (πŸ“₯ 17K / month): ``` pip install com2ann ``` @@ -851,11 +824,11 @@ This curated list contains 270 awesome open-source projects with a total of 900K - redbaron (πŸ₯ˆ25 Β· ⭐ 680 Β· πŸ’€) - Bottom-up approach to refactoring in python. ❗️LGPL-3.0 - baron (πŸ₯‰24 Β· ⭐ 280 Β· πŸ’€) - IDE allow you to refactor code, Baron allows you to write.. ❗️LGPL-3.0 -- eradicate (πŸ₯‰24 Β· ⭐ 190) - Removes commented-out code from Python files. ❗️Saxpath +- eradicate (πŸ₯‰23 Β· ⭐ 190) - Removes commented-out code from Python files. ❗Unlicensed - pyannotate (πŸ₯‰21 Β· ⭐ 1.4K Β· πŸ’€) - Auto-generate PEP-484 annotations. Apache-2 -- unify (πŸ₯‰20 Β· ⭐ 90 Β· πŸ’€) - Modifies strings to all use the same quote where possible. MIT -- pep8ify (πŸ₯‰16 Β· ⭐ 120 Β· πŸ’€) - A library that modifies python source code to conform to pep8. Apache-2 -- retype (πŸ₯‰14 Β· ⭐ 140 Β· πŸ’€) - Re-apply type annotations from .pyi stubs to your codebase. MIT +- unify (πŸ₯‰18 Β· ⭐ 90 Β· πŸ’€) - 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 +- retype (πŸ₯‰12 Β· ⭐ 140 Β· πŸ’€) - Re-apply type annotations from .pyi stubs to your codebase. MIT

@@ -863,14 +836,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K Back to top -
bandit (πŸ₯‡36 Β· ⭐ 5.6K) - Bandit is a tool designed to find common security issues in Python.. Apache-2 +
bandit (πŸ₯‡38 Β· ⭐ 5.7K Β· πŸ“ˆ) - Bandit is a tool designed to find common security issues in.. Apache-2 -- [GitHub](https://github.com/PyCQA/bandit) (πŸ‘¨β€πŸ’» 170 Β· πŸ”€ 550 Β· πŸ“₯ 760 Β· πŸ“¦ 46K Β· πŸ“‹ 650 - 29% open Β· ⏱️ 10.11.2023): +- [GitHub](https://github.com/PyCQA/bandit) (πŸ‘¨β€πŸ’» 170 Β· πŸ”€ 540 Β· πŸ“₯ 760 Β· πŸ“¦ 46K Β· πŸ“‹ 620 - 26% open Β· ⏱️ 13.12.2023): ``` git clone https://github.com/PyCQA/bandit ``` -- [PyPi](https://pypi.org/project/bandit) (πŸ“₯ 3.3M / month Β· πŸ“¦ 1.8K Β· ⏱️ 10.03.2023): +- [PyPi](https://pypi.org/project/bandit) (πŸ“₯ 3.4M / month): ``` pip install bandit ``` @@ -879,54 +852,42 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge bandit ```
-
sqlmap (πŸ₯ˆ33 Β· ⭐ 29K) - Automatic SQL injection and database takeover tool. ❗️GPL-3.0 +
detect-secrets (πŸ₯‰29 Β· ⭐ 3.3K) - An enterprise friendly way of detecting and preventing.. Apache-2 -- [GitHub](https://github.com/sqlmapproject/sqlmap) (πŸ‘¨β€πŸ’» 130 Β· πŸ”€ 5.4K Β· πŸ“¦ 21 Β· πŸ“‹ 5.1K - 1% open Β· ⏱️ 03.12.2023): - - ``` - git clone https://github.com/sqlmapproject/sqlmap - ``` -- [PyPi](https://pypi.org/project/sqlmap) (πŸ“₯ 11K / month Β· πŸ“¦ 9 Β· ⏱️ 01.12.2023): - ``` - pip install sqlmap - ``` -
-
detect-secrets (πŸ₯‰32 Β· ⭐ 3.3K) - An enterprise friendly way of detecting and preventing.. Apache-2 - -- [GitHub](https://github.com/Yelp/detect-secrets) (πŸ‘¨β€πŸ’» 73 Β· πŸ”€ 380 Β· πŸ“‹ 320 - 37% open Β· ⏱️ 05.12.2023): +- [GitHub](https://github.com/Yelp/detect-secrets) (πŸ‘¨β€πŸ’» 73 Β· πŸ”€ 340 Β· πŸ“‹ 300 - 32% open Β· ⏱️ 12.12.2023): ``` git clone https://github.com/Yelp/detect-secrets ``` -- [PyPi](https://pypi.org/project/detect-secrets) (πŸ“₯ 460K / month Β· πŸ“¦ 52 Β· ⏱️ 04.10.2022): +- [PyPi](https://pypi.org/project/detect-secrets) (πŸ“₯ 460K / month): ``` pip install detect-secrets ```
-
safety (πŸ₯‰27 Β· ⭐ 1.6K) - Safety checks Python dependencies for known security vulnerabilities and.. MIT +
safety (πŸ₯‰25 Β· ⭐ 1.6K) - Safety checks Python dependencies for known security vulnerabilities and.. MIT -- [GitHub](https://github.com/pyupio/safety) (πŸ‘¨β€πŸ’» 41 Β· πŸ”€ 130 Β· πŸ“₯ 430K Β· πŸ“¦ 29 Β· πŸ“‹ 180 - 34% open Β· ⏱️ 15.11.2023): +- [GitHub](https://github.com/pyupio/safety) (πŸ‘¨β€πŸ’» 41 Β· πŸ”€ 130 Β· πŸ“₯ 440K Β· πŸ“¦ 29 Β· πŸ“‹ 170 - 31% open Β· ⏱️ 15.11.2023): ``` git clone https://github.com/pyupio/safety ``` -- [PyPi](https://pypi.org/project/safety) (πŸ“₯ 1.1M / month Β· πŸ“¦ 420 Β· ⏱️ 15.11.2023): +- [PyPi](https://pypi.org/project/safety) (πŸ“₯ 1.1M / month): ``` pip install safety ``` -- [Conda](https://anaconda.org/conda-forge/safety) (πŸ“₯ 87K Β· ⏱️ 16.06.2023): +- [Conda](https://anaconda.org/conda-forge/safety) (πŸ“₯ 88K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge safety ```
-
dlint (πŸ₯‰20 Β· ⭐ 160 Β· πŸ’€) - Dlint is a tool for encouraging best coding practices and helping.. BSD-3 +
dlint (πŸ₯‰16 Β· ⭐ 160 Β· πŸ’€) - Dlint is a tool for encouraging best coding practices and helping.. BSD-3 -- [GitHub](https://github.com/dlint-py/dlint) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 16 Β· πŸ“‹ 45 - 53% open Β· ⏱️ 10.04.2023): +- [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) (πŸ“₯ 99K / month Β· πŸ“¦ 52 Β· ⏱️ 09.08.2022): +- [PyPi](https://pypi.org/project/dlint) (πŸ“₯ 100K / month): ``` pip install dlint ``` @@ -935,11 +896,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge dlint ```
-
Show 3 hidden projects... +
Show 4 hidden projects... - pyarmor (πŸ₯ˆ34 Β· ⭐ 2.6K) - A tool used to obfuscate python scripts, bind obfuscated scripts.. ❗️SGI-B-2.0 -- pyt (πŸ₯‰23 Β· ⭐ 2.2K Β· πŸ’€) - A Static Analysis Tool for Detecting Security Vulnerabilities in.. ❗️GPL-2.0 -- dodgy (πŸ₯‰20 Β· ⭐ 120 Β· πŸ’€) - Looks at Python code to search for things which look dodgy such as.. MIT +- sqlmap (πŸ₯ˆ30 Β· ⭐ 29K) - Automatic SQL injection and database takeover tool. ❗Unlicensed +- pyt (πŸ₯‰22 Β· ⭐ 2.2K Β· πŸ’€) - A Static Analysis Tool for Detecting Security Vulnerabilities in.. ❗️GPL-2.0 +- dodgy (πŸ₯‰19 Β· ⭐ 120 Β· πŸ’€) - Looks at Python code to search for things which look dodgy such as.. MIT

@@ -949,12 +911,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
pipenv (πŸ₯‡45 Β· ⭐ 24K) - Python Development Workflow for Humans. MIT -- [GitHub](https://github.com/pypa/pipenv) (πŸ‘¨β€πŸ’» 490 Β· πŸ”€ 1.9K Β· πŸ“¦ 120K Β· πŸ“‹ 4.1K - 4% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/pypa/pipenv) (πŸ‘¨β€πŸ’» 490 Β· πŸ”€ 1.8K Β· πŸ“¦ 130K Β· πŸ“‹ 4.1K - 4% open Β· ⏱️ 06.12.2023): ``` git clone https://github.com/pypa/pipenv ``` -- [PyPi](https://pypi.org/project/pipenv) (πŸ“₯ 12M / month Β· πŸ“¦ 1.3K Β· ⏱️ 15.11.2023): +- [PyPi](https://pypi.org/project/pipenv) (πŸ“₯ 12M / month): ``` pip install pipenv ``` @@ -963,30 +925,30 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pipenv ```
-
virtualenv (πŸ₯ˆ42 Β· ⭐ 4.6K) - Virtual Python Environment builder. MIT +
virtualenv (πŸ₯ˆ41 Β· ⭐ 4.6K) - Virtual Python Environment builder. MIT -- [GitHub](https://github.com/pypa/virtualenv) (πŸ‘¨β€πŸ’» 270 Β· πŸ”€ 1.1K Β· πŸ“¦ 340K Β· πŸ“‹ 1.3K - 1% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/pypa/virtualenv) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 950 Β· πŸ“¦ 340K Β· πŸ“‹ 1.3K - 1% open Β· ⏱️ 09.12.2023): ``` git clone https://github.com/pypa/virtualenv ``` -- [PyPi](https://pypi.org/project/virtualenv) (πŸ“₯ 110M / month Β· πŸ“¦ 18K Β· ⏱️ 01.12.2023): +- [PyPi](https://pypi.org/project/virtualenv) (πŸ“₯ 110M / month): ``` pip install virtualenv ``` -- [Conda](https://anaconda.org/conda-forge/virtualenv) (πŸ“₯ 5.7M Β· ⏱️ 01.12.2023): +- [Conda](https://anaconda.org/conda-forge/virtualenv) (πŸ“₯ 5.8M Β· ⏱️ 01.12.2023): ``` conda install -c conda-forge virtualenv ```
-
pyenv (πŸ₯ˆ35 Β· ⭐ 34K) - Simple Python version management. MIT +
pyenv (πŸ₯ˆ35 Β· ⭐ 35K) - Simple Python version management. MIT -- [GitHub](https://github.com/pyenv/pyenv) (πŸ‘¨β€πŸ’» 430 Β· πŸ”€ 2.8K Β· πŸ“¦ 21 Β· πŸ“‹ 1.7K - 2% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/pyenv/pyenv) (πŸ‘¨β€πŸ’» 440 Β· πŸ”€ 2.8K Β· πŸ“¦ 21 Β· πŸ“‹ 1.7K - 2% open Β· ⏱️ 12.12.2023): ``` git clone https://github.com/pyenv/pyenv ``` -- [PyPi](https://pypi.org/project/pyenv) (πŸ“₯ 13K / month Β· πŸ“¦ 1 Β· ⏱️ 12.01.2019): +- [PyPi](https://pypi.org/project/pyenv) (πŸ“₯ 13K / month): ``` pip install pyenv ``` @@ -998,7 +960,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/ekalinin/nodeenv ``` -- [PyPi](https://pypi.org/project/nodeenv) (πŸ“₯ 17M / month Β· πŸ“¦ 950 Β· ⏱️ 12.05.2023): +- [PyPi](https://pypi.org/project/nodeenv) (πŸ“₯ 17M / month Β· πŸ“¦ 960 Β· ⏱️ 12.05.2023): ``` pip install nodeenv ``` @@ -1009,7 +971,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K
pyenv-virtualenv (πŸ₯‰22 Β· ⭐ 5.8K) - a pyenv plugin to manage virtualenv (a.k.a. python-virtualenv). MIT -- [GitHub](https://github.com/pyenv/pyenv-virtualenv) (πŸ‘¨β€πŸ’» 60 Β· πŸ”€ 380 Β· πŸ“¦ 21 Β· πŸ“‹ 340 - 31% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/pyenv/pyenv-virtualenv) (πŸ‘¨β€πŸ’» 60 Β· πŸ”€ 380 Β· πŸ“¦ 21 Β· πŸ“‹ 330 - 31% open Β· ⏱️ 06.12.2023): ``` git clone https://github.com/pyenv/pyenv-virtualenv @@ -1031,14 +993,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K git clone https://github.com/spotify/dh-virtualenv ```
-
freshenv (πŸ₯‰13 Β· ⭐ 170) - Provision, share, manage local and cloud developer environments. MPL-2.0 +
freshenv (πŸ₯‰14 Β· ⭐ 170) - Provision, share, manage local and cloud developer environments. MPL-2.0 -- [GitHub](https://github.com/raiyanyahya/freshenv) (πŸ‘¨β€πŸ’» 3 Β· πŸ”€ 3 Β· πŸ“‹ 5 - 40% open Β· ⏱️ 13.10.2023): +- [GitHub](https://github.com/raiyanyahya/freshenv) (πŸ‘¨β€πŸ’» 3 Β· πŸ”€ 3 Β· ⏱️ 13.10.2023): ``` git clone https://github.com/raiyanyahya/freshenv ``` -- [PyPi](https://pypi.org/project/freshenv) (πŸ“₯ 120 / month Β· ⏱️ 06.11.2022): +- [PyPi](https://pypi.org/project/freshenv) (πŸ“₯ 170 / month): ``` pip install freshenv ``` @@ -1058,14 +1020,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K Back to top -
pip (πŸ₯‡47 Β· ⭐ 9K) - The Python package installer. MIT +
pip (πŸ₯‡45 Β· ⭐ 9.1K) - The Python package installer. MIT -- [GitHub](https://github.com/pypa/pip) (πŸ‘¨β€πŸ’» 760 Β· πŸ”€ 3.1K Β· πŸ“¦ 160K Β· πŸ“‹ 7.2K - 15% open Β· ⏱️ 28.11.2023): +- [GitHub](https://github.com/pypa/pip) (πŸ‘¨β€πŸ’» 760 Β· πŸ”€ 2.8K Β· πŸ“¦ 160K Β· πŸ“‹ 7K - 13% open Β· ⏱️ 28.11.2023): ``` git clone https://github.com/pypa/pip ``` -- [PyPi](https://pypi.org/project/pip) (πŸ“₯ 200M / month Β· πŸ“¦ 11K Β· ⏱️ 21.10.2023): +- [PyPi](https://pypi.org/project/pip) (πŸ“₯ 190M / month): ``` pip install pip ``` @@ -1076,12 +1038,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
conda (πŸ₯‡43 Β· ⭐ 5.9K) - A system-level, binary package and environment manager running on all.. BSD-3 -- [GitHub](https://github.com/conda/conda) (πŸ‘¨β€πŸ’» 450 Β· πŸ”€ 1.4K Β· πŸ“¦ 44K Β· πŸ“‹ 9.4K - 7% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/conda/conda) (πŸ‘¨β€πŸ’» 450 Β· πŸ”€ 1.4K Β· πŸ“¦ 45K Β· πŸ“‹ 9.4K - 7% open Β· ⏱️ 14.12.2023): ``` git clone https://github.com/conda/conda ``` -- [PyPi](https://pypi.org/project/conda) (πŸ“₯ 120K / month Β· πŸ“¦ 1.1K Β· ⏱️ 22.04.2017): +- [PyPi](https://pypi.org/project/conda) (πŸ“₯ 110K / month Β· πŸ“¦ 1.1K Β· ⏱️ 22.04.2017): ``` pip install conda ``` @@ -1090,30 +1052,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge conda ```
-
poetry (πŸ₯ˆ41 Β· ⭐ 28K) - Python packaging and dependency management made easy. MIT - -- [GitHub](https://github.com/python-poetry/poetry) (πŸ‘¨β€πŸ’» 500 Β· πŸ”€ 2.2K Β· πŸ“₯ 15M Β· πŸ“‹ 5.5K - 12% open Β· ⏱️ 06.12.2023): - - ``` - git clone https://github.com/python-poetry/poetry - ``` -- [PyPi](https://pypi.org/project/poetry) (πŸ“₯ 27M / month Β· πŸ“¦ 350 Β· ⏱️ 16.11.2023): - ``` - pip install poetry - ``` -- [Conda](https://anaconda.org/conda-forge/poetry) (πŸ“₯ 1.1M Β· ⏱️ 17.11.2023): - ``` - conda install -c conda-forge poetry - ``` -
pip-tools (πŸ₯ˆ38 Β· ⭐ 7.2K) - A set of tools to keep your pinned Python dependencies fresh. BSD-3 -- [GitHub](https://github.com/jazzband/pip-tools) (πŸ‘¨β€πŸ’» 200 Β· πŸ”€ 600 Β· πŸ“¦ 24K Β· πŸ“‹ 1K - 15% open Β· ⏱️ 29.11.2023): +- [GitHub](https://github.com/jazzband/pip-tools) (πŸ‘¨β€πŸ’» 200 Β· πŸ”€ 520 Β· πŸ“¦ 24K Β· πŸ“‹ 1K - 14% open Β· ⏱️ 29.11.2023): ``` git clone https://github.com/jazzband/pip-tools ``` -- [PyPi](https://pypi.org/project/pip-tools) (πŸ“₯ 10M / month Β· πŸ“¦ 2.6K Β· ⏱️ 08.08.2023): +- [PyPi](https://pypi.org/project/pip-tools) (πŸ“₯ 10M / month): ``` pip install pip-tools ``` @@ -1122,14 +1068,30 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pip-tools ```
+
poetry (πŸ₯ˆ37 Β· ⭐ 28K) - Python packaging and dependency management made easy. MIT + +- [GitHub](https://github.com/python-poetry/poetry) (πŸ‘¨β€πŸ’» 510 Β· πŸ”€ 2K Β· πŸ“₯ 15M Β· πŸ“‹ 5.4K - 11% open Β· ⏱️ 11.12.2023): + + ``` + git clone https://github.com/python-poetry/poetry + ``` +- [PyPi](https://pypi.org/project/poetry) (πŸ“₯ 27M / month): + ``` + pip install poetry + ``` +- [Conda](https://anaconda.org/conda-forge/poetry) (πŸ“₯ 1.1M Β· ⏱️ 17.11.2023): + ``` + conda install -c conda-forge poetry + ``` +
PDM (πŸ₯ˆ36 Β· ⭐ 5.7K) - A modern Python package and dependency manager supporting the latest PEP.. MIT -- [GitHub](https://github.com/pdm-project/pdm) (πŸ‘¨β€πŸ’» 150 Β· πŸ”€ 270 Β· πŸ“₯ 4 Β· πŸ“¦ 200 Β· πŸ“‹ 1.4K - 3% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/pdm-project/pdm) (πŸ‘¨β€πŸ’» 160 Β· πŸ”€ 270 Β· πŸ“₯ 4 Β· πŸ“¦ 200 Β· πŸ“‹ 1.4K - 3% open Β· ⏱️ 14.12.2023): ``` git clone https://github.com/pdm-project/pdm ``` -- [PyPi](https://pypi.org/project/pdm) (πŸ“₯ 600K / month Β· πŸ“¦ 53 Β· ⏱️ 24.11.2023): +- [PyPi](https://pypi.org/project/pdm) (πŸ“₯ 590K / month Β· πŸ“¦ 55 Β· ⏱️ 14.12.2023): ``` pip install pdm ``` @@ -1138,9 +1100,9 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pdm ```
-
pipx (πŸ₯‰34 Β· ⭐ 7.4K) - Install and Run Python Applications in Isolated Environments. MIT +
pipx (πŸ₯‰34 Β· ⭐ 7.5K) - Install and Run Python Applications in Isolated Environments. MIT -- [GitHub](https://github.com/pypa/pipx) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 340 Β· πŸ“₯ 21K Β· πŸ“¦ 1.6K Β· πŸ“‹ 620 - 9% open Β· ⏱️ 05.12.2023): +- [GitHub](https://github.com/pypa/pipx) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 340 Β· πŸ“₯ 22K Β· πŸ“¦ 1.7K Β· πŸ“‹ 630 - 9% open Β· ⏱️ 13.12.2023): ``` git clone https://github.com/pypa/pipx @@ -1156,12 +1118,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
pipreqs (πŸ₯‰31 Β· ⭐ 5.5K) - pipreqs - Generate pip requirements.txt file based on imports of any.. Apache-2 -- [GitHub](https://github.com/bndr/pipreqs) (πŸ‘¨β€πŸ’» 60 Β· πŸ”€ 360 Β· πŸ“¦ 24K Β· πŸ“‹ 290 - 62% open Β· ⏱️ 08.10.2023): +- [GitHub](https://github.com/bndr/pipreqs) (πŸ‘¨β€πŸ’» 60 Β· πŸ”€ 360 Β· πŸ“¦ 25K Β· πŸ“‹ 290 - 62% open Β· ⏱️ 08.10.2023): ``` git clone https://github.com/bndr/pipreqs ``` -- [PyPi](https://pypi.org/project/pipreqs) (πŸ“₯ 570K / month Β· πŸ“¦ 380 Β· ⏱️ 14.04.2023): +- [PyPi](https://pypi.org/project/pipreqs) (πŸ“₯ 1.2M / month Β· πŸ“¦ 390 Β· ⏱️ 14.04.2023): ``` pip install pipreqs ``` @@ -1170,26 +1132,26 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pipreqs ```
-
mamba (πŸ₯‰28 Β· ⭐ 5.5K) - The Fast Cross-Platform Package Manager. BSD-3 +
mamba (πŸ₯‰30 Β· ⭐ 5.6K Β· πŸ“ˆ) - The Fast Cross-Platform Package Manager. BSD-3 -- [GitHub](https://github.com/mamba-org/mamba) (πŸ‘¨β€πŸ’» 140 Β· πŸ”€ 310 Β· πŸ“‹ 1.6K - 30% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/mamba-org/mamba) (πŸ‘¨β€πŸ’» 140 Β· πŸ”€ 310 Β· πŸ“‹ 1.5K - 28% open Β· ⏱️ 14.12.2023): ``` git clone https://github.com/mamba-org/mamba ``` -- [Conda](https://anaconda.org/conda-forge/mamba) (πŸ“₯ 9.9M Β· ⏱️ 05.12.2023): +- [Conda](https://anaconda.org/conda-forge/mamba) (πŸ“₯ 10M Β· ⏱️ 11.12.2023): ``` conda install -c conda-forge mamba ```
-
pip-run (πŸ₯‰21 Β· ⭐ 120) - pip-run - dynamic dependency loader for Python. MIT +
pip-run (πŸ₯‰20 Β· ⭐ 120) - pip-run - dynamic dependency loader for Python. MIT - [GitHub](https://github.com/jaraco/pip-run) (πŸ‘¨β€πŸ’» 20 Β· πŸ”€ 18 Β· πŸ“‹ 68 - 5% open Β· ⏱️ 06.12.2023): ``` git clone https://github.com/jaraco/pip-run ``` -- [PyPi](https://pypi.org/project/pip-run) (πŸ“₯ 11K / month Β· πŸ“¦ 3 Β· ⏱️ 08.10.2023): +- [PyPi](https://pypi.org/project/pip-run) (πŸ“₯ 9.3K / month Β· πŸ“¦ 3 Β· ⏱️ 08.10.2023): ``` pip install pip-run ``` @@ -1197,7 +1159,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K
Show 2 hidden projects... - 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 +- pyflow (πŸ₯‰21 Β· ⭐ 1.3K Β· πŸ’€) - An installation and dependency system for Python. MIT

@@ -1205,14 +1167,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K Back to top -
prospector (πŸ₯‡33 Β· ⭐ 1.9K Β· πŸ“‰) - Inspects Python source files and provides information about.. ❗️GPL-2.0 +
prospector (πŸ₯‡33 Β· ⭐ 1.9K) - Inspects Python source files and provides information about.. ❗️GPL-2.0 - [GitHub](https://github.com/landscapeio/prospector) (πŸ‘¨β€πŸ’» 90 Β· πŸ”€ 170 Β· πŸ“¦ 4.7K Β· πŸ“‹ 370 - 15% open Β· ⏱️ 18.10.2023): ``` git clone https://github.com/PyCQA/prospector ``` -- [PyPi](https://pypi.org/project/prospector) (πŸ“₯ 740K / month Β· πŸ“¦ 700 Β· ⏱️ 18.10.2023): +- [PyPi](https://pypi.org/project/prospector) (πŸ“₯ 780K / month Β· πŸ“¦ 710 Β· ⏱️ 18.10.2023): ``` pip install prospector ``` @@ -1244,7 +1206,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/rubik/radon ``` -- [PyPi](https://pypi.org/project/radon) (πŸ“₯ 400K / month Β· πŸ“¦ 650 Β· ⏱️ 26.03.2023): +- [PyPi](https://pypi.org/project/radon) (πŸ“₯ 410K / month Β· πŸ“¦ 650 Β· ⏱️ 26.03.2023): ``` pip install radon ``` @@ -1260,7 +1222,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/tonybaloney/wily ``` -- [PyPi](https://pypi.org/project/wily) (πŸ“₯ 15K / month Β· πŸ“¦ 9 Β· ⏱️ 11.10.2023): +- [PyPi](https://pypi.org/project/wily) (πŸ“₯ 17K / month Β· πŸ“¦ 9 Β· ⏱️ 11.10.2023): ``` pip install wily ``` @@ -1272,7 +1234,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/rubik/xenon ``` -- [PyPi](https://pypi.org/project/xenon) (πŸ“₯ 160K / month Β· πŸ“¦ 86 Β· ⏱️ 12.08.2023): +- [PyPi](https://pypi.org/project/xenon) (πŸ“₯ 150K / month Β· πŸ“¦ 86 Β· ⏱️ 12.08.2023): ``` pip install xenon ``` @@ -1288,7 +1250,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/mschwager/cohesion ``` -- [PyPi](https://pypi.org/project/cohesion) (πŸ“₯ 5.8K / month Β· πŸ“¦ 11 Β· ⏱️ 10.07.2019): +- [PyPi](https://pypi.org/project/cohesion) (πŸ“₯ 5.6K / month Β· πŸ“¦ 11 Β· ⏱️ 10.07.2019): ``` pip install cohesion ``` @@ -1321,12 +1283,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
tqdm (πŸ₯‡42 Β· ⭐ 26K) - A Fast, Extensible Progress Bar for Python and CLI. MPL-2.0 -- [GitHub](https://github.com/tqdm/tqdm) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 1.3K Β· πŸ“₯ 11K Β· πŸ“¦ 600K Β· πŸ“‹ 1K - 44% open Β· ⏱️ 10.08.2023): +- [GitHub](https://github.com/tqdm/tqdm) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 1.3K Β· πŸ“₯ 12K Β· πŸ“¦ 610K Β· πŸ“‹ 1K - 44% open Β· ⏱️ 10.08.2023): ``` git clone https://github.com/tqdm/tqdm ``` -- [PyPi](https://pypi.org/project/tqdm) (πŸ“₯ 81M / month Β· πŸ“¦ 29K Β· ⏱️ 10.08.2023): +- [PyPi](https://pypi.org/project/tqdm) (πŸ“₯ 83M / month): ``` pip install tqdm ``` @@ -1341,12 +1303,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
loguru (πŸ₯‡37 Β· ⭐ 17K) - Python logging made (stupidly) simple. MIT -- [GitHub](https://github.com/Delgan/loguru) (πŸ‘¨β€πŸ’» 51 Β· πŸ”€ 650 Β· πŸ“¦ 69K Β· πŸ“‹ 890 - 15% open Β· ⏱️ 03.12.2023): +- [GitHub](https://github.com/Delgan/loguru) (πŸ‘¨β€πŸ’» 51 Β· πŸ”€ 650 Β· πŸ“¦ 70K Β· πŸ“‹ 890 - 15% open Β· ⏱️ 03.12.2023): ``` git clone https://github.com/Delgan/loguru ``` -- [PyPi](https://pypi.org/project/loguru) (πŸ“₯ 15M / month Β· πŸ“¦ 3.2K Β· ⏱️ 11.09.2023): +- [PyPi](https://pypi.org/project/loguru) (πŸ“₯ 16M / month Β· πŸ“¦ 3.2K Β· ⏱️ 11.09.2023): ``` pip install loguru ``` @@ -1355,62 +1317,30 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge loguru ```
-
structlog (πŸ₯‡37 Β· ⭐ 2.9K) - Simple, powerful, and fast logging for Python. Apache-2 +
sentry-sdk (πŸ₯ˆ36 Β· ⭐ 1.7K) - The official Python SDK for Sentry.io. MIT -- [GitHub](https://github.com/hynek/structlog) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 190 Β· πŸ“¦ 10K Β· πŸ“‹ 300 - 8% open Β· ⏱️ 06.12.2023): - - ``` - git clone https://github.com/hynek/structlog - ``` -- [PyPi](https://pypi.org/project/structlog) (πŸ“₯ 7.7M / month Β· πŸ“¦ 1.1K Β· ⏱️ 09.10.2023): - ``` - pip install structlog - ``` -- [Conda](https://anaconda.org/conda-forge/structlog) (πŸ“₯ 350K Β· ⏱️ 09.10.2023): - ``` - conda install -c conda-forge structlog - ``` -
-
sentry-sdk (πŸ₯ˆ36 Β· ⭐ 1.7K Β· πŸ“‰) - The official Python SDK for Sentry.io. MIT - -- [GitHub](https://github.com/getsentry/sentry-python) (πŸ‘¨β€πŸ’» 200 Β· πŸ”€ 460 Β· πŸ“₯ 3.5K Β· πŸ“‹ 1.1K - 14% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/getsentry/sentry-python) (πŸ‘¨β€πŸ’» 200 Β· πŸ”€ 470 Β· πŸ“₯ 3.5K Β· πŸ“‹ 1.1K - 14% open Β· ⏱️ 14.12.2023): ``` git clone https://github.com/getsentry/sentry-python ``` -- [PyPi](https://pypi.org/project/sentry-sdk) (πŸ“₯ 23M / month Β· πŸ“¦ 460 Β· ⏱️ 29.11.2023): +- [PyPi](https://pypi.org/project/sentry-sdk) (πŸ“₯ 24M / month Β· πŸ“¦ 470 Β· ⏱️ 14.12.2023): ``` pip install sentry-sdk ``` -- [Conda](https://anaconda.org/conda-forge/sentry-sdk) (πŸ“₯ 700K Β· ⏱️ 29.11.2023): +- [Conda](https://anaconda.org/conda-forge/sentry-sdk) (πŸ“₯ 700K Β· ⏱️ 14.12.2023): ``` conda install -c conda-forge sentry-sdk ```
-
logbook (πŸ₯ˆ34 Β· ⭐ 1.5K) - A cool logging replacement for Python. BSD-3 +
python-json-logger (πŸ₯ˆ34 Β· ⭐ 1.6K Β· πŸ’€) - Json Formatter for the standard python logger. BSD-2 -- [GitHub](https://github.com/getlogbook/logbook) (πŸ‘¨β€πŸ’» 79 Β· πŸ”€ 160 Β· πŸ“₯ 330 Β· πŸ“¦ 5.2K Β· πŸ“‹ 180 - 25% open Β· ⏱️ 06.12.2023): - - ``` - git clone https://github.com/getlogbook/logbook - ``` -- [PyPi](https://pypi.org/project/logbook) (πŸ“₯ 3.7M / month Β· πŸ“¦ 1.2K Β· ⏱️ 10.11.2023): - ``` - pip install logbook - ``` -- [Conda](https://anaconda.org/conda-forge/logbook) (πŸ“₯ 160K Β· ⏱️ 11.11.2023): - ``` - conda install -c conda-forge logbook - ``` -
-
python-json-logger (πŸ₯ˆ33 Β· ⭐ 1.6K Β· πŸ’€) - Json Formatter for the standard python logger. BSD-2 - -- [GitHub](https://github.com/madzak/python-json-logger) (πŸ‘¨β€πŸ’» 63 Β· πŸ”€ 220 Β· πŸ“¦ 76K Β· πŸ“‹ 100 - 11% open Β· ⏱️ 28.02.2023): +- [GitHub](https://github.com/madzak/python-json-logger) (πŸ‘¨β€πŸ’» 63 Β· πŸ”€ 220 Β· πŸ“¦ 77K Β· πŸ“‹ 100 - 11% open Β· ⏱️ 28.02.2023): ``` git clone https://github.com/madzak/python-json-logger ``` -- [PyPi](https://pypi.org/project/python-json-logger) (πŸ“₯ 21M / month Β· πŸ“¦ 850 Β· ⏱️ 21.02.2023): +- [PyPi](https://pypi.org/project/python-json-logger) (πŸ“₯ 21M / month Β· πŸ“¦ 860 Β· ⏱️ 21.02.2023): ``` pip install python-json-logger ``` @@ -1426,7 +1356,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/rsalmei/alive-progress ``` -- [PyPi](https://pypi.org/project/alive-progress) (πŸ“₯ 580K / month Β· πŸ“¦ 210 Β· ⏱️ 08.11.2023): +- [PyPi](https://pypi.org/project/alive-progress) (πŸ“₯ 620K / month Β· πŸ“¦ 210 Β· ⏱️ 08.11.2023): ``` pip install alive-progress ``` @@ -1435,14 +1365,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge alive-progress ```
-
tabulate (πŸ₯ˆ31 Β· ⭐ 1.8K Β· πŸ’€) - Pretty-print tabular data in Python, a library and a command-line.. MIT +
tabulate (πŸ₯ˆ31 Β· ⭐ 1.9K Β· πŸ’€) - Pretty-print tabular data in Python, a library and a command-line.. MIT - [GitHub](https://github.com/astanin/python-tabulate) (πŸ‘¨β€πŸ’» 84 Β· πŸ”€ 140 Β· πŸ“‹ 220 - 38% open Β· ⏱️ 30.04.2023): ``` git clone https://github.com/astanin/python-tabulate ``` -- [PyPi](https://pypi.org/project/tabulate) (πŸ“₯ 50M / month Β· πŸ“¦ 8.3K Β· ⏱️ 06.10.2022): +- [PyPi](https://pypi.org/project/tabulate) (πŸ“₯ 49M / month Β· πŸ“¦ 8.3K Β· ⏱️ 06.10.2022): ``` pip install tabulate ``` @@ -1451,30 +1381,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge tabulate ```
-
progressbar2 (πŸ₯ˆ31 Β· ⭐ 830) - Progressbar 2 - A progress bar for Python 2 and Python 3 - pip.. BSD-3 - -- [GitHub](https://github.com/wolph/python-progressbar) (πŸ‘¨β€πŸ’» 43 Β· πŸ”€ 140 Β· πŸ“₯ 2.1K Β· πŸ“‹ 210 - 4% open Β· ⏱️ 23.11.2023): - - ``` - git clone https://github.com/WoLpH/python-progressbar - ``` -- [PyPi](https://pypi.org/project/progressbar2) (πŸ“₯ 21M / month Β· πŸ“¦ 1.6K Β· ⏱️ 01.11.2022): - ``` - pip install progressbar2 - ``` -- [Conda](https://anaconda.org/conda-forge/progressbar2) (πŸ“₯ 1.1M Β· ⏱️ 16.06.2023): - ``` - conda install -c conda-forge progressbar2 - ``` -
colorlog (πŸ₯ˆ31 Β· ⭐ 830) - A colored formatter for the python logging module. MIT -- [GitHub](https://github.com/borntyping/python-colorlog) (πŸ‘¨β€πŸ’» 32 Β· πŸ”€ 120 Β· πŸ“¦ 31K Β· πŸ“‹ 76 - 1% open Β· ⏱️ 02.12.2023): +- [GitHub](https://github.com/borntyping/python-colorlog) (πŸ‘¨β€πŸ’» 32 Β· πŸ”€ 120 Β· πŸ“¦ 32K Β· πŸ“‹ 76 - 1% open Β· ⏱️ 02.12.2023): ``` git clone https://github.com/borntyping/python-colorlog ``` -- [PyPi](https://pypi.org/project/colorlog) (πŸ“₯ 8.4M / month Β· πŸ“¦ 2.8K Β· ⏱️ 02.12.2023): +- [PyPi](https://pypi.org/project/colorlog) (πŸ“₯ 9M / month Β· πŸ“¦ 2.8K Β· ⏱️ 02.12.2023): ``` pip install colorlog ``` @@ -1483,6 +1397,22 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge colorlog ```
+
progressbar2 (πŸ₯ˆ31 Β· ⭐ 830) - Progressbar 2 - A progress bar for Python 2 and Python 3 - pip.. BSD-3 + +- [GitHub](https://github.com/wolph/python-progressbar) (πŸ‘¨β€πŸ’» 43 Β· πŸ”€ 140 Β· πŸ“₯ 2.1K Β· πŸ“‹ 210 - 4% open Β· ⏱️ 11.12.2023): + + ``` + git clone https://github.com/WoLpH/python-progressbar + ``` +- [PyPi](https://pypi.org/project/progressbar2) (πŸ“₯ 23M / month Β· πŸ“¦ 1.6K Β· ⏱️ 01.11.2022): + ``` + pip install progressbar2 + ``` +- [Conda](https://anaconda.org/conda-forge/progressbar2) (πŸ“₯ 1.1M Β· ⏱️ 16.06.2023): + ``` + conda install -c conda-forge progressbar2 + ``` +
wasabi (πŸ₯‰27 Β· ⭐ 430) - A lightweight console printing and formatting toolkit. MIT - [GitHub](https://github.com/explosion/wasabi) (πŸ‘¨β€πŸ’» 14 Β· πŸ”€ 25 Β· πŸ“¦ 38K Β· πŸ“‹ 9 - 44% open Β· ⏱️ 03.11.2023): @@ -1490,7 +1420,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/ines/wasabi ``` -- [PyPi](https://pypi.org/project/wasabi) (πŸ“₯ 5.6M / month Β· πŸ“¦ 320 Β· ⏱️ 07.06.2023): +- [PyPi](https://pypi.org/project/wasabi) (πŸ“₯ 5.9M / month Β· πŸ“¦ 320 Β· ⏱️ 07.06.2023): ``` pip install wasabi ``` @@ -1501,16 +1431,16 @@ This curated list contains 270 awesome open-source projects with a total of 900K
stackprinter (πŸ₯‰26 Β· ⭐ 1.3K) - Debugging-friendly exceptions for Python. MIT -- [GitHub](https://github.com/cknd/stackprinter) (πŸ‘¨β€πŸ’» 7 Β· πŸ”€ 36 Β· πŸ“¦ 320 Β· πŸ“‹ 33 - 27% open Β· ⏱️ 24.11.2023): +- [GitHub](https://github.com/cknd/stackprinter) (πŸ‘¨β€πŸ’» 7 Β· πŸ”€ 36 Β· πŸ“¦ 320 Β· πŸ“‹ 30 - 20% open Β· ⏱️ 24.11.2023): ``` git clone https://github.com/cknd/stackprinter ``` -- [PyPi](https://pypi.org/project/stackprinter) (πŸ“₯ 280K / month Β· πŸ“¦ 30 Β· ⏱️ 24.11.2023): +- [PyPi](https://pypi.org/project/stackprinter) (πŸ“₯ 290K / month): ``` pip install stackprinter ``` -- [Conda](https://anaconda.org/conda-forge/stackprinter) (πŸ“₯ 8.8K Β· ⏱️ 16.06.2023): +- [Conda](https://anaconda.org/conda-forge/stackprinter) (πŸ“₯ 8.9K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge stackprinter ``` @@ -1529,12 +1459,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
python-devtools (πŸ₯‰23 Β· ⭐ 900) - Dev tools for python. MIT -- [GitHub](https://github.com/samuelcolvin/python-devtools) (πŸ‘¨β€πŸ’» 12 Β· πŸ”€ 48 Β· πŸ“¦ 2.4K Β· πŸ“‹ 59 - 33% open Β· ⏱️ 03.09.2023): +- [GitHub](https://github.com/samuelcolvin/python-devtools) (πŸ‘¨β€πŸ’» 12 Β· πŸ”€ 48 Β· πŸ“¦ 2.5K Β· πŸ“‹ 60 - 35% open Β· ⏱️ 03.09.2023): ``` git clone https://github.com/samuelcolvin/python-devtools ``` -- [PyPi](https://pypi.org/project/python-devtools) (πŸ“₯ 760 / month Β· πŸ“¦ 1 Β· ⏱️ 21.08.2017): +- [PyPi](https://pypi.org/project/python-devtools) (πŸ“₯ 830 / month Β· πŸ“¦ 1 Β· ⏱️ 21.08.2017): ``` pip install python-devtools ``` @@ -1543,14 +1473,16 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge python-devtools ```
-
Show 6 hidden projects... +
Show 8 hidden projects... -- prettytable (πŸ₯ˆ32 Β· ⭐ 1.2K) - Display tabular data in a visually appealing ASCII table.. ❗️BSD-1-Clause -- python-coloredlogs (πŸ₯‰29 Β· ⭐ 520 Β· πŸ’€) - Colored terminal output for Pythons logging module. MIT +- structlog (πŸ₯ˆ35 Β· ⭐ 2.9K) - Simple, powerful, and fast logging for Python. ❗Unlicensed +- logbook (πŸ₯ˆ32 Β· ⭐ 1.4K) - A cool logging replacement for Python. ❗Unlicensed +- prettytable (πŸ₯ˆ31 Β· ⭐ 1.2K) - Display tabular data in a visually appealing ASCII table.. ❗Unlicensed - notifiers (πŸ₯‰28 Β· ⭐ 2.5K Β· πŸ’€) - The easy way to send notifications. MIT -- rebound (πŸ₯‰26 Β· ⭐ 4K Β· πŸ’€) - Command-line tool that instantly fetches Stack Overflow results when an.. MIT -- PrettyErrors (πŸ₯‰22 Β· ⭐ 2.7K Β· πŸ’€) - Prettify Python exception output to make it legible. MIT -- tbvaccine (πŸ₯‰16 Β· ⭐ 360 Β· πŸ’€) - A small utility to pretty-print Python tracebacks. MIT +- python-coloredlogs (πŸ₯‰28 Β· ⭐ 520 Β· πŸ’€) - Colored terminal output for Pythons logging module. MIT +- rebound (πŸ₯‰22 Β· ⭐ 4K Β· πŸ’€) - Command-line tool that instantly fetches Stack Overflow.. ❗Unlicensed +- PrettyErrors (πŸ₯‰18 Β· ⭐ 2.7K Β· πŸ’€) - Prettify Python exception output to make it legible. MIT +- tbvaccine (πŸ₯‰16 Β· ⭐ 370 Β· πŸ’€) - A small utility to pretty-print Python tracebacks. MIT

@@ -1560,19 +1492,19 @@ This curated list contains 270 awesome open-source projects with a total of 900K
xxh (πŸ₯‰23 Β· ⭐ 4.7K) - Bring your favorite shell wherever you go through the ssh. Xonsh shell,.. BSD-2 -- [GitHub](https://github.com/xxh/xxh) (πŸ‘¨β€πŸ’» 26 Β· πŸ”€ 96 Β· πŸ“₯ 2K Β· πŸ“¦ 79 Β· πŸ“‹ 83 - 25% open Β· ⏱️ 05.11.2023): +- [GitHub](https://github.com/xxh/xxh) (πŸ‘¨β€πŸ’» 26 Β· πŸ”€ 97 Β· πŸ“₯ 2K Β· πŸ“¦ 79 Β· πŸ“‹ 84 - 26% open Β· ⏱️ 05.11.2023): ``` git clone https://github.com/xxh/xxh ``` -- [PyPi](https://pypi.org/project/xxh-xxh) (πŸ“₯ 220 / month Β· ⏱️ 29.09.2022): +- [PyPi](https://pypi.org/project/xxh-xxh) (πŸ“₯ 240 / month): ``` pip install xxh-xxh ```
Show 1 hidden projects... -- xonsh (πŸ₯‡32 Β· ⭐ 7.4K) - Python-powered, cross-platform, Unix-gazing shell. ❗️BSD-1-Clause +- xonsh (πŸ₯‡28 Β· ⭐ 7.4K) - Python-powered, cross-platform, Unix-gazing shell. ❗Unlicensed

@@ -1580,7 +1512,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K Back to top -πŸ”— best-of-mkdocs ( ⭐ 570) - Collection of MkDocs projects and plugins. +πŸ”— best-of-mkdocs ( ⭐ 580) - Collection of MkDocs projects and plugins.
sphinx (πŸ₯‡44 Β· ⭐ 5.8K) - The Sphinx documentation generator. BSD-3 @@ -1589,7 +1521,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/sphinx-doc/sphinx ``` -- [PyPi](https://pypi.org/project/sphinx) (πŸ“₯ 12M / month Β· πŸ“¦ 64K Β· ⏱️ 13.09.2023): +- [PyPi](https://pypi.org/project/sphinx) (πŸ“₯ 13M / month Β· πŸ“¦ 64K Β· ⏱️ 13.09.2023): ``` pip install sphinx ``` @@ -1598,25 +1530,25 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge sphinx ```
-
mkdocs-material (πŸ₯‡43 Β· ⭐ 16K) - Documentation that simply works. MIT +
mkdocs-material (πŸ₯‡43 Β· ⭐ 17K) - Documentation that simply works. MIT -- [GitHub](https://github.com/squidfunk/mkdocs-material) (πŸ‘¨β€πŸ’» 240 Β· πŸ”€ 3.2K Β· πŸ“¦ 40K Β· πŸ“‹ 2.1K - 1% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/squidfunk/mkdocs-material) (πŸ‘¨β€πŸ’» 240 Β· πŸ”€ 3.2K Β· πŸ“¦ 41K Β· πŸ“‹ 2.2K - 1% open Β· ⏱️ 14.12.2023): ``` git clone https://github.com/squidfunk/mkdocs-material ``` -- [PyPi](https://pypi.org/project/mkdocs-material) (πŸ“₯ 3.5M / month Β· πŸ“¦ 1.1K Β· ⏱️ 07.12.2023): +- [PyPi](https://pypi.org/project/mkdocs-material) (πŸ“₯ 3.5M / month Β· πŸ“¦ 1.1K Β· ⏱️ 11.12.2023): ``` pip install mkdocs-material ``` -- [Conda](https://anaconda.org/conda-forge/mkdocs-material) (πŸ“₯ 340K Β· ⏱️ 07.12.2023): +- [Conda](https://anaconda.org/conda-forge/mkdocs-material) (πŸ“₯ 340K Β· ⏱️ 11.12.2023): ``` conda install -c conda-forge mkdocs-material ```
mkdocs (πŸ₯‡42 Β· ⭐ 18K) - Project documentation with Markdown. BSD-2 -- [GitHub](https://github.com/mkdocs/mkdocs) (πŸ‘¨β€πŸ’» 240 Β· πŸ”€ 2.3K Β· πŸ“¦ 53K Β· πŸ“‹ 1.9K - 6% open Β· ⏱️ 05.12.2023): +- [GitHub](https://github.com/mkdocs/mkdocs) (πŸ‘¨β€πŸ’» 250 Β· πŸ”€ 2.3K Β· πŸ“¦ 54K Β· πŸ“‹ 1.9K - 6% open Β· ⏱️ 11.12.2023): ``` git clone https://github.com/mkdocs/mkdocs @@ -1637,7 +1569,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/readthedocs/sphinx_rtd_theme ``` -- [PyPi](https://pypi.org/project/sphinx_rtd_theme) (πŸ“₯ 4M / month Β· πŸ“¦ 8K Β· ⏱️ 28.11.2023): +- [PyPi](https://pypi.org/project/sphinx_rtd_theme) (πŸ“₯ 4.1M / month Β· πŸ“¦ 8K Β· ⏱️ 28.11.2023): ``` pip install sphinx_rtd_theme ``` @@ -1648,40 +1580,40 @@ This curated list contains 270 awesome open-source projects with a total of 900K
pdoc (πŸ₯ˆ32 Β· ⭐ 1.7K) - API Documentation for Python Projects. Unlicense -- [GitHub](https://github.com/mitmproxy/pdoc) (πŸ‘¨β€πŸ’» 55 Β· πŸ”€ 200 Β· πŸ“¦ 2.4K Β· πŸ“‹ 340 - 5% open Β· ⏱️ 02.12.2023): +- [GitHub](https://github.com/mitmproxy/pdoc) (πŸ‘¨β€πŸ’» 58 Β· πŸ”€ 230 Β· πŸ“¦ 2.4K Β· πŸ“‹ 350 - 5% open Β· ⏱️ 13.12.2023): ``` git clone https://github.com/mitmproxy/pdoc ``` -- [PyPi](https://pypi.org/project/pdoc) (πŸ“₯ 160K / month Β· πŸ“¦ 330 Β· ⏱️ 10.09.2023): +- [PyPi](https://pypi.org/project/pdoc) (πŸ“₯ 160K / month Β· πŸ“¦ 330 Β· ⏱️ 13.12.2023): ``` pip install pdoc ```
mkdocstrings (πŸ₯ˆ32 Β· ⭐ 1.4K) - Automatic documentation from sources, for MkDocs. ISC -- [GitHub](https://github.com/mkdocstrings/mkdocstrings) (πŸ‘¨β€πŸ’» 40 Β· πŸ”€ 99 Β· πŸ“¦ 10K Β· πŸ“‹ 370 - 11% open Β· ⏱️ 14.11.2023): +- [GitHub](https://github.com/mkdocstrings/mkdocstrings) (πŸ‘¨β€πŸ’» 40 Β· πŸ”€ 97 Β· πŸ“¦ 10K Β· πŸ“‹ 370 - 11% open Β· ⏱️ 14.11.2023): ``` git clone https://github.com/mkdocstrings/mkdocstrings ``` -- [PyPi](https://pypi.org/project/mkdocstrings) (πŸ“₯ 680K / month Β· πŸ“¦ 480 Β· ⏱️ 14.11.2023): +- [PyPi](https://pypi.org/project/mkdocstrings) (πŸ“₯ 680K / month): ``` pip install mkdocstrings ``` -- [Conda](https://anaconda.org/conda-forge/mkdocstrings) (πŸ“₯ 99K Β· ⏱️ 15.11.2023): +- [Conda](https://anaconda.org/conda-forge/mkdocstrings) (πŸ“₯ 100K Β· ⏱️ 15.11.2023): ``` conda install -c conda-forge mkdocstrings ```
-
alabaster (πŸ₯ˆ32 Β· ⭐ 700) - Lightweight, configurable Sphinx theme. BSD-3 +
alabaster (πŸ₯ˆ32 Β· ⭐ 710) - Lightweight, configurable Sphinx theme. BSD-3 - [GitHub](https://github.com/sphinx-doc/alabaster) (πŸ‘¨β€πŸ’» 30 Β· πŸ”€ 190 Β· πŸ“¦ 120K Β· πŸ“‹ 120 - 54% open Β· ⏱️ 04.10.2023): ``` git clone https://github.com/bitprophet/alabaster ``` -- [PyPi](https://pypi.org/project/alabaster) (πŸ“₯ 6.9M / month Β· πŸ“¦ 7.7K Β· ⏱️ 13.01.2023): +- [PyPi](https://pypi.org/project/alabaster) (πŸ“₯ 7M / month Β· πŸ“¦ 7.7K Β· ⏱️ 13.01.2023): ``` pip install alabaster ``` @@ -1692,28 +1624,28 @@ This curated list contains 270 awesome open-source projects with a total of 900K
sphinx-autodoc-typehints (πŸ₯ˆ32 Β· ⭐ 510) - Type hints support for the Sphinx autodoc extension. MIT -- [GitHub](https://github.com/tox-dev/sphinx-autodoc-typehints) (πŸ‘¨β€πŸ’» 54 Β· πŸ”€ 99 Β· πŸ“¦ 45K Β· πŸ“‹ 180 - 15% open Β· ⏱️ 29.11.2023): +- [GitHub](https://github.com/tox-dev/sphinx-autodoc-typehints) (πŸ‘¨β€πŸ’» 54 Β· πŸ”€ 99 Β· πŸ“¦ 45K Β· πŸ“‹ 180 - 15% open Β· ⏱️ 09.12.2023): ``` git clone https://github.com/tox-dev/sphinx-autodoc-typehints ``` -- [PyPi](https://pypi.org/project/sphinx-autodoc-typehints) (πŸ“₯ 1.7M / month Β· πŸ“¦ 2K Β· ⏱️ 11.11.2023): +- [PyPi](https://pypi.org/project/sphinx-autodoc-typehints) (πŸ“₯ 1.8M / month): ``` pip install sphinx-autodoc-typehints ``` -- [Conda](https://anaconda.org/conda-forge/sphinx-autodoc-typehints) (πŸ“₯ 620K Β· ⏱️ 11.11.2023): +- [Conda](https://anaconda.org/conda-forge/sphinx-autodoc-typehints) (πŸ“₯ 630K Β· ⏱️ 11.11.2023): ``` conda install -c conda-forge sphinx-autodoc-typehints ```
-
Griffe (πŸ₯ˆ31 Β· ⭐ 220) - Signatures for entire Python programs. Extract the structure, the frame,.. ISC +
Griffe (πŸ₯ˆ32 Β· ⭐ 230) - Signatures for entire Python programs. Extract the structure, the frame,.. ISC - [GitHub](https://github.com/mkdocstrings/griffe) (πŸ‘¨β€πŸ’» 26 Β· πŸ”€ 35 Β· πŸ“¦ 3.8K Β· πŸ“‹ 170 - 12% open Β· ⏱️ 06.12.2023): ``` git clone https://github.com/mkdocstrings/griffe ``` -- [PyPi](https://pypi.org/project/griffe) (πŸ“₯ 870K / month Β· πŸ“¦ 44 Β· ⏱️ 06.12.2023): +- [PyPi](https://pypi.org/project/griffe) (πŸ“₯ 880K / month Β· πŸ“¦ 44 Β· ⏱️ 06.12.2023): ``` pip install griffe ``` @@ -1722,30 +1654,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge griffe ```
-
breathe (πŸ₯ˆ29 Β· ⭐ 700) - ReStructuredText and Sphinx bridge to Doxygen. BSD-3 - -- [GitHub](https://github.com/breathe-doc/breathe) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 180 Β· πŸ“₯ 560 Β· πŸ“¦ 12K Β· πŸ“‹ 580 - 30% open Β· ⏱️ 24.10.2023): - - ``` - git clone https://github.com/michaeljones/breathe - ``` -- [PyPi](https://pypi.org/project/breathe) (πŸ“₯ 310K / month Β· πŸ“¦ 1K Β· ⏱️ 28.02.2023): - ``` - pip install breathe - ``` -- [Conda](https://anaconda.org/conda-forge/breathe) (πŸ“₯ 520K Β· ⏱️ 04.07.2023): - ``` - conda install -c conda-forge breathe - ``` -
-
sphinx-autobuild (πŸ₯‰28 Β· ⭐ 490) - Watch a Sphinx directory and rebuild the documentation.. MIT +
sphinx-autobuild (πŸ₯ˆ28 Β· ⭐ 490) - Watch a Sphinx directory and rebuild the documentation.. MIT - [GitHub](https://github.com/executablebooks/sphinx-autobuild) (πŸ‘¨β€πŸ’» 25 Β· πŸ”€ 66 Β· πŸ“¦ 21K Β· πŸ“‹ 78 - 32% open Β· ⏱️ 28.10.2023): ``` git clone https://github.com/executablebooks/sphinx-autobuild ``` -- [PyPi](https://pypi.org/project/sphinx-autobuild) (πŸ“₯ 490K / month Β· πŸ“¦ 3K Β· ⏱️ 14.03.2021): +- [PyPi](https://pypi.org/project/sphinx-autobuild) (πŸ“₯ 500K / month): ``` pip install sphinx-autobuild ``` @@ -1754,14 +1670,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge sphinx-autobuild ```
-
pdoc3 (πŸ₯‰27 Β· ⭐ 1K Β· πŸ’€) - Auto-generate API documentation for Python projects. ❗️AGPL-3.0 +
pdoc3 (πŸ₯‰26 Β· ⭐ 1K Β· πŸ’€) - Auto-generate API documentation for Python projects. ❗️AGPL-3.0 -- [GitHub](https://github.com/pdoc3/pdoc) (πŸ‘¨β€πŸ’» 58 Β· πŸ”€ 140 Β· πŸ“¦ 3.7K Β· πŸ“‹ 330 - 37% open Β· ⏱️ 21.12.2022): +- [GitHub](https://github.com/pdoc3/pdoc) (πŸ‘¨β€πŸ’» 58 Β· πŸ”€ 140 Β· πŸ“¦ 3.8K Β· πŸ“‹ 310 - 34% open Β· ⏱️ 21.12.2022): ``` git clone https://github.com/pdoc3/pdoc ``` -- [PyPi](https://pypi.org/project/pdoc3) (πŸ“₯ 170K / month Β· πŸ“¦ 240 Β· ⏱️ 03.08.2021): +- [PyPi](https://pypi.org/project/pdoc3) (πŸ“₯ 170K / month): ``` pip install pdoc3 ``` @@ -1770,14 +1686,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c anaconda pdoc3 ```
-
blacken-docs (πŸ₯‰26 Β· ⭐ 580) - Run `black` on python code blocks in documentation files. MIT +
blacken-docs (πŸ₯‰24 Β· ⭐ 580) - Run `black` on python code blocks in documentation files. MIT -- [GitHub](https://github.com/adamchainz/blacken-docs) (πŸ‘¨β€πŸ’» 19 Β· πŸ”€ 40 Β· πŸ“¦ 790 Β· πŸ“‹ 75 - 16% open Β· ⏱️ 27.11.2023): +- [GitHub](https://github.com/adamchainz/blacken-docs) (πŸ‘¨β€πŸ’» 19 Β· πŸ”€ 38 Β· πŸ“¦ 790 Β· πŸ“‹ 75 - 16% open Β· ⏱️ 12.12.2023): ``` git clone https://github.com/asottile/blacken-docs ``` -- [PyPi](https://pypi.org/project/blacken-docs) (πŸ“₯ 130K / month Β· πŸ“¦ 43 Β· ⏱️ 16.08.2023): +- [PyPi](https://pypi.org/project/blacken-docs) (πŸ“₯ 130K / month): ``` pip install blacken-docs ``` @@ -1786,38 +1702,38 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge blacken-docs ```
-
interrogate (πŸ₯‰26 Β· ⭐ 510) - Explain yourself! Interrogate a codebase for docstring coverage. MIT +
interrogate (πŸ₯‰24 Β· ⭐ 510) - Explain yourself! Interrogate a codebase for docstring coverage. MIT -- [GitHub](https://github.com/econchick/interrogate) (πŸ‘¨β€πŸ’» 12 Β· πŸ”€ 42 Β· πŸ“¦ 5.5K Β· πŸ“‹ 56 - 51% open Β· ⏱️ 07.09.2023): +- [GitHub](https://github.com/econchick/interrogate) (πŸ‘¨β€πŸ’» 12 Β· πŸ”€ 42 Β· πŸ“¦ 5.6K Β· πŸ“‹ 56 - 51% open Β· ⏱️ 07.09.2023): ``` git clone https://github.com/econchick/interrogate ``` -- [PyPi](https://pypi.org/project/interrogate) (πŸ“₯ 88K / month Β· πŸ“¦ 190 Β· ⏱️ 10.09.2021): +- [PyPi](https://pypi.org/project/interrogate) (πŸ“₯ 85K / month): ``` pip install interrogate ```
mkdocs-awesome-pages-plugin (πŸ₯‰24 Β· ⭐ 390) - An MkDocs plugin that simplifies configuring page.. MIT -- [GitHub](https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin) (πŸ‘¨β€πŸ’» 7 Β· πŸ”€ 31 Β· πŸ“¦ 3.5K Β· πŸ“‹ 75 - 21% open Β· ⏱️ 11.11.2023): +- [GitHub](https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin) (πŸ‘¨β€πŸ’» 7 Β· πŸ”€ 30 Β· πŸ“¦ 3.6K Β· πŸ“‹ 75 - 21% open Β· ⏱️ 11.11.2023): ``` git clone https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin ``` -- [PyPi](https://pypi.org/project/mkdocs-awesome-pages-plugin) (πŸ“₯ 180K / month Β· πŸ“¦ 120 Β· ⏱️ 19.08.2023): +- [PyPi](https://pypi.org/project/mkdocs-awesome-pages-plugin) (πŸ“₯ 190K / month): ``` pip install mkdocs-awesome-pages-plugin ```
-
releases (πŸ₯‰24 Β· ⭐ 170) - A powerful Sphinx changelog-generating extension. BSD-2 +
releases (πŸ₯‰22 Β· ⭐ 170) - A powerful Sphinx changelog-generating extension. BSD-2 -- [GitHub](https://github.com/bitprophet/releases) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 41 Β· πŸ“¦ 610 Β· πŸ“‹ 76 - 39% open Β· ⏱️ 01.12.2023): +- [GitHub](https://github.com/bitprophet/releases) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 36 Β· πŸ“¦ 610 Β· πŸ“‹ 74 - 37% open Β· ⏱️ 01.12.2023): ``` git clone https://github.com/bitprophet/releases ``` -- [PyPi](https://pypi.org/project/releases) (πŸ“₯ 17K / month Β· πŸ“¦ 380 Β· ⏱️ 28.04.2023): +- [PyPi](https://pypi.org/project/releases) (πŸ“₯ 18K / month): ``` pip install releases ``` @@ -1826,42 +1742,18 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge sphinx-releases ```
-
lazydocs (πŸ₯‰23 Β· ⭐ 160) - Generate markdown API documentation from Google-style Python docstring... MIT +
lazydocs (πŸ₯‰22 Β· ⭐ 160) - Generate markdown API documentation from Google-style Python docstring... MIT - [GitHub](https://github.com/ml-tooling/lazydocs) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 34 Β· πŸ“¦ 190 Β· πŸ“‹ 31 - 19% open Β· ⏱️ 11.06.2023): ``` git clone https://github.com/ml-tooling/lazydocs ``` -- [PyPi](https://pypi.org/project/lazydocs) (πŸ“₯ 8.4K / month Β· πŸ“¦ 22 Β· ⏱️ 27.07.2021): +- [PyPi](https://pypi.org/project/lazydocs) (πŸ“₯ 7.9K / month Β· πŸ“¦ 22 Β· ⏱️ 27.07.2021): ``` pip install lazydocs ```
-
portray (πŸ₯‰22 Β· ⭐ 850 Β· πŸ’€) - Your Project with Great Documentation. MIT - -- [GitHub](https://github.com/timothycrosley/portray) (πŸ‘¨β€πŸ’» 20 Β· πŸ”€ 73 Β· πŸ“¦ 810 Β· πŸ“‹ 64 - 50% open Β· ⏱️ 03.01.2023): - - ``` - git clone https://github.com/timothycrosley/portray - ``` -- [PyPi](https://pypi.org/project/portray) (πŸ“₯ 11K / month Β· πŸ“¦ 22 Β· ⏱️ 19.12.2022): - ``` - pip install portray - ``` -
-
sphinx-markdown-builder (πŸ₯‰21 Β· ⭐ 160) - DISCONTINUED: sphinx builder that outputs markdown.. MIT - -- [GitHub](https://github.com/clayrisser/sphinx-markdown-builder) (πŸ‘¨β€πŸ’» 19 Β· πŸ”€ 46 Β· ⏱️ 24.06.2023): - - ``` - git clone https://github.com/clayrisser/sphinx-markdown-builder - ``` -- [PyPi](https://pypi.org/project/sphinx-markdown-builder) (πŸ“₯ 52K / month Β· πŸ“¦ 84 Β· ⏱️ 13.08.2023): - ``` - pip install sphinx-markdown-builder - ``` -
mkdocs-print-site-plugin (πŸ₯‰21 Β· ⭐ 100) - MkDocs Plugin that adds an additional page that.. MIT - [GitHub](https://github.com/timvink/mkdocs-print-site-plugin) (πŸ‘¨β€πŸ’» 5 Β· πŸ”€ 14 Β· πŸ“¦ 260 Β· πŸ“‹ 82 - 12% open Β· ⏱️ 25.10.2023): @@ -1869,19 +1761,44 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/timvink/mkdocs-print-site-plugin ``` -- [PyPi](https://pypi.org/project/mkdocs-print-site-plugin) (πŸ“₯ 19K / month Β· πŸ“¦ 6 Β· ⏱️ 28.08.2023): +- [PyPi](https://pypi.org/project/mkdocs-print-site-plugin) (πŸ“₯ 20K / month): ``` pip install mkdocs-print-site-plugin ```
-
Show 8 hidden projects... +
portray (πŸ₯‰20 Β· ⭐ 850 Β· πŸ’€) - Your Project with Great Documentation. MIT -- numpydoc (πŸ₯ˆ29 Β· ⭐ 260) - Numpys Sphinx extensions. ❗Unlicensed -- sphinx-bootstrap-theme (πŸ₯‰26 Β· ⭐ 590 Β· πŸ’€) - Sphinx Bootstrap Theme. MIT +- [GitHub](https://github.com/timothycrosley/portray) (πŸ‘¨β€πŸ’» 20 Β· πŸ”€ 73 Β· πŸ“¦ 810 Β· πŸ“‹ 63 - 49% open Β· ⏱️ 03.01.2023): + + ``` + git clone https://github.com/timothycrosley/portray + ``` +- [PyPi](https://pypi.org/project/portray) (πŸ“₯ 11K / month): + ``` + pip install portray + ``` +
+
sphinx-markdown-builder (πŸ₯‰17 Β· ⭐ 160) - DISCONTINUED: sphinx builder that outputs markdown.. MIT + +- [GitHub](https://github.com/clayrisser/sphinx-markdown-builder) (πŸ‘¨β€πŸ’» 19 Β· πŸ”€ 41 Β· ⏱️ 24.06.2023): + + ``` + git clone https://github.com/clayrisser/sphinx-markdown-builder + ``` +- [PyPi](https://pypi.org/project/sphinx-markdown-builder) (πŸ“₯ 53K / month): + ``` + pip install sphinx-markdown-builder + ``` +
+
Show 9 hidden projects... + +- numpydoc (πŸ₯ˆ30 Β· ⭐ 260) - Numpys Sphinx extensions. ❗Unlicensed +- breathe (πŸ₯‰27 Β· ⭐ 700) - ReStructuredText and Sphinx bridge to Doxygen. ❗Unlicensed - pytkdocs (πŸ₯‰24 Β· ⭐ 48 Β· πŸ’€) - Load Python objects documentation. ISC - pycco (πŸ₯‰23 Β· ⭐ 840 Β· πŸ’€) - Literate-style documentation generator. MIT - mkdocs-with-pdf (πŸ₯‰22 Β· ⭐ 280 Β· πŸ’€) - Generate a single PDF file from MkDocs repository. MIT - mkdocs-pdf-export-plugin (πŸ₯‰21 Β· ⭐ 300 Β· πŸ’€) - An MkDocs plugin to export content pages as PDF files. MIT +- sphinx-bootstrap-theme (πŸ₯‰20 Β· ⭐ 590 Β· πŸ’€) - Sphinx Bootstrap Theme. MIT - mkdocs-git-revision-date-plugin (πŸ₯‰19 Β· ⭐ 54 Β· πŸ’€) - MkDocs plugin for setting revision date from git per.. MIT - mkdocs-versioning (πŸ₯‰17 Β· ⭐ 40 Β· πŸ’€) - A tool that allows for versioning sites built with.. MIT
@@ -1893,12 +1810,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
pudb (πŸ₯‡33 Β· ⭐ 2.8K) - Full-screen console debugger for Python. MIT -- [GitHub](https://github.com/inducer/pudb) (πŸ‘¨β€πŸ’» 93 Β· πŸ”€ 220 Β· πŸ“¦ 5.6K Β· πŸ“‹ 330 - 48% open Β· ⏱️ 05.12.2023): +- [GitHub](https://github.com/inducer/pudb) (πŸ‘¨β€πŸ’» 93 Β· πŸ”€ 220 Β· πŸ“¦ 5.7K Β· πŸ“‹ 330 - 48% open Β· ⏱️ 05.12.2023): ``` git clone https://github.com/inducer/pudb ``` -- [PyPi](https://pypi.org/project/pudb) (πŸ“₯ 250K / month Β· πŸ“¦ 760 Β· ⏱️ 06.10.2023): +- [PyPi](https://pypi.org/project/pudb) (πŸ“₯ 260K / month Β· πŸ“¦ 760 Β· ⏱️ 06.10.2023): ``` pip install pudb ``` @@ -1907,14 +1824,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pudb ```
-
PySnooper (πŸ₯‡32 Β· ⭐ 16K) - Never use print for debugging again. MIT +
PySnooper (πŸ₯‡30 Β· ⭐ 16K) - Never use print for debugging again. MIT -- [GitHub](https://github.com/cool-RR/PySnooper) (πŸ‘¨β€πŸ’» 27 Β· πŸ”€ 950 Β· πŸ“¦ 1.6K Β· πŸ“‹ 130 - 19% open Β· ⏱️ 15.07.2023): +- [GitHub](https://github.com/cool-RR/PySnooper) (πŸ‘¨β€πŸ’» 27 Β· πŸ”€ 940 Β· πŸ“¦ 1.6K Β· πŸ“‹ 130 - 19% open Β· ⏱️ 15.07.2023): ``` git clone https://github.com/cool-RR/PySnooper ``` -- [PyPi](https://pypi.org/project/pysnooper) (πŸ“₯ 520K / month Β· πŸ“¦ 55 Β· ⏱️ 15.07.2023): +- [PyPi](https://pypi.org/project/pysnooper) (πŸ“₯ 520K / month): ``` pip install pysnooper ``` @@ -1923,23 +1840,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pysnooper ```
-
pyelftools (πŸ₯‡32 Β· ⭐ 1.8K) - Parsing ELF and DWARF in Python. Unlicense - -- [GitHub](https://github.com/eliben/pyelftools) (πŸ‘¨β€πŸ’» 97 Β· πŸ”€ 490 Β· πŸ“¦ 6.5K Β· πŸ“‹ 240 - 30% open Β· ⏱️ 16.11.2023): - - ``` - git clone https://github.com/eliben/pyelftools - ``` -- [PyPi](https://pypi.org/project/pyelftools) (πŸ“₯ 2.7M / month Β· πŸ“¦ 560 Β· ⏱️ 06.09.2023): - ``` - pip install pyelftools - ``` -- [Conda](https://anaconda.org/conda-forge/pyelftools) (πŸ“₯ 150K Β· ⏱️ 23.09.2023): - ``` - conda install -c conda-forge pyelftools - ``` -
-
ipdb (πŸ₯ˆ30 Β· ⭐ 1.8K) - Integration of IPython pdb. BSD-3 +
ipdb (πŸ₯‡30 Β· ⭐ 1.8K) - Integration of IPython pdb. BSD-3 - [GitHub](https://github.com/gotcha/ipdb) (πŸ‘¨β€πŸ’» 58 Β· πŸ”€ 150 Β· πŸ“¦ 51K Β· πŸ“‹ 190 - 32% open Β· ⏱️ 03.08.2023): @@ -1957,12 +1858,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
gdbgui (πŸ₯ˆ29 Β· ⭐ 9.5K) - Browser-based frontend to gdb (gnu debugger). Add breakpoints, view.. ❗️GPL-3.0 -- [GitHub](https://github.com/cs01/gdbgui) (πŸ‘¨β€πŸ’» 45 Β· πŸ”€ 550 Β· πŸ“₯ 16K Β· πŸ“¦ 340 Β· πŸ“‹ 310 - 44% open Β· ⏱️ 18.10.2023): +- [GitHub](https://github.com/cs01/gdbgui) (πŸ‘¨β€πŸ’» 44 Β· πŸ”€ 480 Β· πŸ“₯ 16K Β· πŸ“¦ 340 Β· πŸ“‹ 310 - 44% open Β· ⏱️ 18.10.2023): ``` git clone https://github.com/cs01/gdbgui ``` -- [PyPi](https://pypi.org/project/gdbgui) (πŸ“₯ 14K / month Β· πŸ“¦ 2 Β· ⏱️ 18.10.2023): +- [PyPi](https://pypi.org/project/gdbgui) (πŸ“₯ 15K / month): ``` pip install gdbgui ``` @@ -1983,26 +1884,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge icecream ```
-
pyrasite (πŸ₯‰22 Β· ⭐ 2.7K) - Inject code into running Python processes. ❗️GPL-3.0 - -- [GitHub](https://github.com/lmacken/pyrasite) (πŸ‘¨β€πŸ’» 24 Β· πŸ”€ 200 Β· πŸ“¦ 53 Β· πŸ“‹ 57 - 71% open Β· ⏱️ 08.10.2023): - - ``` - git clone https://github.com/lmacken/pyrasite - ``` -- [PyPi](https://pypi.org/project/pyrasite) (πŸ“₯ 32K / month Β· πŸ“¦ 6 Β· ⏱️ 09.05.2012): - ``` - pip install pyrasite - ``` -
-
snoop (πŸ₯‰22 Β· ⭐ 1K Β· πŸ’€) - A powerful set of Python debugging tools, based on PySnooper. MIT +
snoop (πŸ₯‰23 Β· ⭐ 1K Β· πŸ’€) - A powerful set of Python debugging tools, based on PySnooper. MIT - [GitHub](https://github.com/alexmojaki/snoop) (πŸ‘¨β€πŸ’» 22 Β· πŸ”€ 33 Β· πŸ“‹ 50 - 44% open Β· ⏱️ 22.12.2022): ``` git clone https://github.com/alexmojaki/snoop ``` -- [PyPi](https://pypi.org/project/snoop) (πŸ“₯ 61K / month Β· πŸ“¦ 25 Β· ⏱️ 22.12.2022): +- [PyPi](https://pypi.org/project/snoop) (πŸ“₯ 63K / month Β· πŸ“¦ 25 Β· ⏱️ 22.12.2022): ``` pip install snoop ``` @@ -2011,6 +1900,18 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge snoop ```
+
pyrasite (πŸ₯‰21 Β· ⭐ 2.7K) - Inject code into running Python processes. ❗️GPL-3.0 + +- [GitHub](https://github.com/lmacken/pyrasite) (πŸ‘¨β€πŸ’» 24 Β· πŸ”€ 200 Β· πŸ“¦ 54 Β· πŸ“‹ 57 - 71% open Β· ⏱️ 08.10.2023): + + ``` + git clone https://github.com/lmacken/pyrasite + ``` +- [PyPi](https://pypi.org/project/pyrasite) (πŸ“₯ 31K / month): + ``` + pip install pyrasite + ``` +
Birdseye (πŸ₯‰21 Β· ⭐ 1.6K) - Graphical Python debugger which lets you easily view the values of all.. MIT - [GitHub](https://github.com/alexmojaki/birdseye) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 74 Β· πŸ“‹ 56 - 35% open Β· ⏱️ 16.10.2023): @@ -2018,19 +1919,19 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/alexmojaki/birdseye ``` -- [PyPi](https://pypi.org/project/birdseye) (πŸ“₯ 1.4K / month Β· πŸ“¦ 4 Β· ⏱️ 16.10.2023): +- [PyPi](https://pypi.org/project/birdseye) (πŸ“₯ 1.3K / month Β· πŸ“¦ 4 Β· ⏱️ 16.10.2023): ``` pip install birdseye ```
-
python-hunter (πŸ₯‰21 Β· ⭐ 760 Β· πŸ’€) - Hunter is a flexible code tracing toolkit. BSD-2 +
python-hunter (πŸ₯‰21 Β· ⭐ 770 Β· πŸ’€) - Hunter is a flexible code tracing toolkit. BSD-2 - [GitHub](https://github.com/ionelmc/python-hunter) (πŸ‘¨β€πŸ’» 9 Β· πŸ”€ 43 Β· πŸ“¦ 160 Β· πŸ“‹ 96 - 43% open Β· ⏱️ 26.04.2023): ``` git clone https://github.com/ionelmc/python-hunter ``` -- [PyPi](https://pypi.org/project/hunter) (πŸ“₯ 7.8K / month Β· πŸ“¦ 25 Β· ⏱️ 26.04.2023): +- [PyPi](https://pypi.org/project/hunter) (πŸ“₯ 7.7K / month): ``` pip install hunter ``` @@ -2041,12 +1942,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
python-manhole (πŸ₯‰21 Β· ⭐ 360 Β· πŸ’€) - Debugging manhole for python applications. BSD-2 -- [GitHub](https://github.com/ionelmc/python-manhole) (πŸ‘¨β€πŸ’» 11 Β· πŸ”€ 23 Β· πŸ“¦ 260 Β· πŸ“‹ 22 - 31% open Β· ⏱️ 17.12.2022): +- [GitHub](https://github.com/ionelmc/python-manhole) (πŸ‘¨β€πŸ’» 11 Β· πŸ”€ 23 Β· πŸ“¦ 270 Β· πŸ“‹ 22 - 31% open Β· ⏱️ 17.12.2022): ``` git clone https://github.com/ionelmc/python-manhole ``` -- [PyPi](https://pypi.org/project/manhole) (πŸ“₯ 17K / month Β· πŸ“¦ 37 Β· ⏱️ 08.04.2021): +- [PyPi](https://pypi.org/project/manhole) (πŸ“₯ 17K / month): ``` pip install manhole ``` @@ -2057,18 +1958,19 @@ This curated list contains 270 awesome open-source projects with a total of 900K
reloadium (πŸ₯‰20 Β· ⭐ 2.6K) - Hot Reloading, Profiling and AI debugging for Python. Apache-2 -- [GitHub](https://github.com/reloadware/reloadium) (πŸ‘¨β€πŸ’» 3 Β· πŸ”€ 54 Β· πŸ“‹ 120 - 11% open Β· ⏱️ 09.11.2023): +- [GitHub](https://github.com/reloadware/reloadium) (πŸ‘¨β€πŸ’» 3 Β· πŸ”€ 54 Β· πŸ“‹ 120 - 12% open Β· ⏱️ 09.11.2023): ``` git clone https://github.com/reloadware/reloadium ``` -- [PyPi](https://pypi.org/project/reloadium) (πŸ“₯ 2.9K / month Β· ⏱️ 09.11.2023): +- [PyPi](https://pypi.org/project/reloadium) (πŸ“₯ 2.3K / month Β· ⏱️ 09.11.2023): ``` pip install reloadium ```
-
Show 1 hidden projects... +
Show 2 hidden projects... +- pyelftools (πŸ₯‡30 Β· ⭐ 1.8K) - Parsing ELF and DWARF in Python. ❗Unlicensed - pdbpp (πŸ₯‰28 Β· ⭐ 1.2K Β· πŸ’€) - pdb++, a drop-in replacement for pdb (the Python debugger). BSD-3

@@ -2083,12 +1985,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
pytest (πŸ₯‡47 Β· ⭐ 11K) - The pytest framework makes it easy to write small tests, yet scales to.. MIT -- [GitHub](https://github.com/pytest-dev/pytest) (πŸ‘¨β€πŸ’» 920 Β· πŸ”€ 2.5K Β· πŸ“¦ 1.1M Β· πŸ“‹ 5.6K - 15% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/pytest-dev/pytest) (πŸ‘¨β€πŸ’» 930 Β· πŸ”€ 2.5K Β· πŸ“¦ 1.1M Β· πŸ“‹ 5.6K - 15% open Β· ⏱️ 14.12.2023): ``` git clone https://github.com/pytest-dev/pytest ``` -- [PyPi](https://pypi.org/project/pytest) (πŸ“₯ 91M / month Β· πŸ“¦ 21K Β· ⏱️ 24.10.2023): +- [PyPi](https://pypi.org/project/pytest) (πŸ“₯ 92M / month Β· πŸ“¦ 21K Β· ⏱️ 24.10.2023): ``` pip install pytest ``` @@ -2097,14 +1999,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pytest ```
-
robotframework (πŸ₯‡43 Β· ⭐ 8.5K) - Generic automation framework for acceptance testing and RPA. Apache-2 +
robotframework (πŸ₯‡43 Β· ⭐ 8.6K) - Generic automation framework for acceptance testing and RPA. Apache-2 -- [GitHub](https://github.com/robotframework/robotframework) (πŸ‘¨β€πŸ’» 190 Β· πŸ”€ 2.2K Β· πŸ“₯ 550 Β· πŸ“¦ 9.4K Β· πŸ“‹ 4.3K - 7% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/robotframework/robotframework) (πŸ‘¨β€πŸ’» 190 Β· πŸ”€ 2.2K Β· πŸ“₯ 550 Β· πŸ“¦ 9.4K Β· πŸ“‹ 4.3K - 7% open Β· ⏱️ 14.12.2023): ``` git clone https://github.com/robotframework/robotframework ``` -- [PyPi](https://pypi.org/project/robotframework) (πŸ“₯ 1.8M / month Β· πŸ“¦ 1.1K Β· ⏱️ 22.11.2023): +- [PyPi](https://pypi.org/project/robotframework) (πŸ“₯ 1.9M / month Β· πŸ“¦ 1.1K Β· ⏱️ 22.11.2023): ``` pip install robotframework ``` @@ -2113,30 +2015,30 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge robotframework ```
-
hypothesis (πŸ₯‡42 Β· ⭐ 7K) - Hypothesis is a powerful, flexible, and easy to use library for.. MPL-2.0 +
hypothesis (πŸ₯‡42 Β· ⭐ 7.1K) - Hypothesis is a powerful, flexible, and easy to use library for.. MPL-2.0 -- [GitHub](https://github.com/HypothesisWorks/hypothesis) (πŸ‘¨β€πŸ’» 320 Β· πŸ”€ 590 Β· πŸ“¦ 24K Β· πŸ“‹ 1.5K - 2% open Β· ⏱️ 03.12.2023): +- [GitHub](https://github.com/HypothesisWorks/hypothesis) (πŸ‘¨β€πŸ’» 320 Β· πŸ”€ 590 Β· πŸ“¦ 24K Β· πŸ“‹ 1.5K - 2% open Β· ⏱️ 10.12.2023): ``` git clone https://github.com/HypothesisWorks/hypothesis ``` -- [PyPi](https://pypi.org/project/hypothesis) (πŸ“₯ 6.3M / month Β· πŸ“¦ 2.3K Β· ⏱️ 27.11.2023): +- [PyPi](https://pypi.org/project/hypothesis) (πŸ“₯ 5.9M / month Β· πŸ“¦ 2.4K Β· ⏱️ 10.12.2023): ``` pip install hypothesis ``` -- [Conda](https://anaconda.org/conda-forge/hypothesis) (πŸ“₯ 8.3M Β· ⏱️ 27.11.2023): +- [Conda](https://anaconda.org/conda-forge/hypothesis) (πŸ“₯ 8.3M Β· ⏱️ 10.12.2023): ``` conda install -c conda-forge hypothesis ```
tox (πŸ₯‡39 Β· ⭐ 3.4K) - Command line driven CI frontend and development task automation tool. MIT -- [GitHub](https://github.com/tox-dev/tox) (πŸ‘¨β€πŸ’» 290 Β· πŸ”€ 500 Β· πŸ“¦ 110K Β· πŸ“‹ 1.7K - 4% open Β· ⏱️ 29.11.2023): +- [GitHub](https://github.com/tox-dev/tox) (πŸ‘¨β€πŸ’» 290 Β· πŸ”€ 500 Β· πŸ“¦ 110K Β· πŸ“‹ 1.7K - 4% open Β· ⏱️ 09.12.2023): ``` git clone https://github.com/tox-dev/tox ``` -- [PyPi](https://pypi.org/project/tox) (πŸ“₯ 13M / month Β· πŸ“¦ 22K Β· ⏱️ 28.11.2023): +- [PyPi](https://pypi.org/project/tox) (πŸ“₯ 13M / month Β· πŸ“¦ 23K Β· ⏱️ 28.11.2023): ``` pip install tox ``` @@ -2145,22 +2047,6 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge tox ```
-
pyautogui (πŸ₯‡36 Β· ⭐ 9K) - A cross-platform GUI automation Python module for human beings. Used.. BSD-3 - -- [GitHub](https://github.com/asweigart/pyautogui) (πŸ‘¨β€πŸ’» 52 Β· πŸ”€ 1.1K Β· πŸ“¦ 29K Β· πŸ“‹ 680 - 66% open Β· ⏱️ 07.06.2023): - - ``` - git clone https://github.com/asweigart/pyautogui - ``` -- [PyPi](https://pypi.org/project/pyautogui) (πŸ“₯ 690K / month Β· πŸ“¦ 840 Β· ⏱️ 24.05.2023): - ``` - pip install pyautogui - ``` -- [Conda](https://anaconda.org/conda-forge/pyautogui) (πŸ“₯ 210K Β· ⏱️ 16.10.2023): - ``` - conda install -c conda-forge pyautogui - ``` -
pytest-cov (πŸ₯‡36 Β· ⭐ 1.6K Β· πŸ’€) - Coverage plugin for pytest. MIT - [GitHub](https://github.com/pytest-dev/pytest-cov) (πŸ‘¨β€πŸ’» 86 Β· πŸ”€ 210 Β· πŸ“¦ 290K Β· πŸ“‹ 390 - 38% open Β· ⏱️ 24.05.2023): @@ -2168,7 +2054,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/pytest-dev/pytest-cov ``` -- [PyPi](https://pypi.org/project/pytest-cov) (πŸ“₯ 35M / month Β· πŸ“¦ 35K Β· ⏱️ 24.05.2023): +- [PyPi](https://pypi.org/project/pytest-cov) (πŸ“₯ 36M / month Β· πŸ“¦ 35K Β· ⏱️ 24.05.2023): ``` pip install pytest-cov ``` @@ -2179,7 +2065,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K
pytest-xdist (πŸ₯‡36 Β· ⭐ 1.3K) - pytest plugin for distributed testing and loop-on-failures.. MIT -- [GitHub](https://github.com/pytest-dev/pytest-xdist) (πŸ‘¨β€πŸ’» 93 Β· πŸ”€ 220 Β· πŸ“₯ 2 Β· πŸ“‹ 570 - 40% open Β· ⏱️ 01.12.2023): +- [GitHub](https://github.com/pytest-dev/pytest-xdist) (πŸ‘¨β€πŸ’» 93 Β· πŸ”€ 220 Β· πŸ“₯ 2 Β· πŸ“‹ 570 - 39% open Β· ⏱️ 01.12.2023): ``` git clone https://github.com/pytest-dev/pytest-xdist @@ -2193,25 +2079,25 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pytest-xdist ```
-
freezegun (πŸ₯ˆ35 Β· ⭐ 3.9K Β· πŸ“ˆ) - Let your Python tests travel through time. Apache-2 +
pyautogui (πŸ₯ˆ35 Β· ⭐ 9K) - A cross-platform GUI automation Python module for human beings. Used.. BSD-3 -- [GitHub](https://github.com/spulec/freezegun) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 260 Β· πŸ“₯ 3 Β· πŸ“‹ 320 - 42% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/asweigart/pyautogui) (πŸ‘¨β€πŸ’» 52 Β· πŸ”€ 1.1K Β· πŸ“¦ 29K Β· πŸ“‹ 680 - 66% open Β· ⏱️ 07.06.2023): ``` - git clone https://github.com/spulec/freezegun + git clone https://github.com/asweigart/pyautogui ``` -- [PyPi](https://pypi.org/project/freezegun) (πŸ“₯ 7.7M / month Β· πŸ“¦ 4.6K Β· ⏱️ 04.12.2023): +- [PyPi](https://pypi.org/project/pyautogui) (πŸ“₯ 680K / month): ``` - pip install freezegun + pip install pyautogui ``` -- [Conda](https://anaconda.org/conda-forge/freezegun) (πŸ“₯ 1.5M Β· ⏱️ 05.12.2023): +- [Conda](https://anaconda.org/conda-forge/pyautogui) (πŸ“₯ 210K Β· ⏱️ 16.10.2023): ``` - conda install -c conda-forge freezegun + conda install -c conda-forge pyautogui ```
-
pytest-mock (πŸ₯ˆ35 Β· ⭐ 1.7K Β· πŸ“ˆ) - Thin-wrapper around the mock package for easier use with.. MIT +
pytest-mock (πŸ₯ˆ35 Β· ⭐ 1.7K) - Thin-wrapper around the mock package for easier use with pytest. MIT -- [GitHub](https://github.com/pytest-dev/pytest-mock) (πŸ‘¨β€πŸ’» 67 Β· πŸ”€ 130 Β· πŸ“₯ 14 Β· πŸ“¦ 71K Β· πŸ“‹ 150 - 8% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/pytest-dev/pytest-mock) (πŸ‘¨β€πŸ’» 67 Β· πŸ”€ 130 Β· πŸ“₯ 14 Β· πŸ“¦ 72K Β· πŸ“‹ 150 - 9% open Β· ⏱️ 06.12.2023): ``` git clone https://github.com/pytest-dev/pytest-mock @@ -2225,58 +2111,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pytest-mock ```
-
pytest-html (πŸ₯ˆ35 Β· ⭐ 630) - Plugin for generating HTML reports for pytest results. MIT - -- [GitHub](https://github.com/pytest-dev/pytest-html) (πŸ‘¨β€πŸ’» 54 Β· πŸ”€ 260 Β· πŸ“¦ 42K Β· πŸ“‹ 390 - 37% open Β· ⏱️ 07.11.2023): - - ``` - git clone https://github.com/pytest-dev/pytest-html - ``` -- [PyPi](https://pypi.org/project/pytest-html) (πŸ“₯ 4.5M / month Β· πŸ“¦ 810 Β· ⏱️ 07.11.2023): - ``` - pip install pytest-html - ``` -- [Conda](https://anaconda.org/conda-forge/pytest-html) (πŸ“₯ 500K Β· ⏱️ 23.11.2023): - ``` - conda install -c conda-forge pytest-html - ``` -
-
playwright-python (πŸ₯ˆ34 Β· ⭐ 9.8K) - Python version of the Playwright testing and automation.. Apache-2 - -- [GitHub](https://github.com/microsoft/playwright-python) (πŸ‘¨β€πŸ’» 33 Β· πŸ”€ 820 Β· πŸ“¦ 21 Β· πŸ“‹ 1.2K - 2% open Β· ⏱️ 30.11.2023): - - ``` - git clone https://github.com/microsoft/playwright-python - ``` -- [PyPi](https://pypi.org/project/playwright) (πŸ“₯ 2M / month Β· πŸ“¦ 400 Β· ⏱️ 21.11.2023): - ``` - pip install playwright - ``` -
-
pytest-asyncio (πŸ₯ˆ34 Β· ⭐ 1.2K) - Asyncio support for pytest. Apache-2 - -- [GitHub](https://github.com/pytest-dev/pytest-asyncio) (πŸ‘¨β€πŸ’» 44 Β· πŸ”€ 130 Β· πŸ“₯ 160 Β· πŸ“‹ 280 - 12% open Β· ⏱️ 07.12.2023): - - ``` - git clone https://github.com/pytest-dev/pytest-asyncio - ``` -- [PyPi](https://pypi.org/project/pytest-asyncio) (πŸ“₯ 9M / month Β· πŸ“¦ 1.6K Β· ⏱️ 04.12.2023): - ``` - pip install pytest-asyncio - ``` -- [Conda](https://anaconda.org/conda-forge/pytest-asyncio) (πŸ“₯ 1.8M Β· ⏱️ 04.12.2023): - ``` - conda install -c conda-forge pytest-asyncio - ``` -
mimesis (πŸ₯ˆ33 Β· ⭐ 4.1K) - Mimesis is a powerful Python library that empowers developers to generate.. MIT -- [GitHub](https://github.com/lk-geimfari/mimesis) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 310 Β· πŸ“₯ 520 Β· πŸ“¦ 1.6K Β· πŸ“‹ 330 - 3% open Β· ⏱️ 12.11.2023): +- [GitHub](https://github.com/lk-geimfari/mimesis) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 310 Β· πŸ“₯ 520 Β· πŸ“¦ 1.6K Β· πŸ“‹ 330 - 2% open Β· ⏱️ 12.11.2023): ``` git clone https://github.com/lk-geimfari/mimesis ``` -- [PyPi](https://pypi.org/project/mimesis) (πŸ“₯ 140K / month Β· πŸ“¦ 74 Β· ⏱️ 19.08.2023): +- [PyPi](https://pypi.org/project/mimesis) (πŸ“₯ 150K / month): ``` pip install mimesis ``` @@ -2285,14 +2127,26 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge mimesis ```
-
pytest-bdd (πŸ₯ˆ33 Β· ⭐ 1.2K) - BDD library for the py.test runner. MIT +
playwright-python (πŸ₯ˆ32 Β· ⭐ 9.8K) - Python version of the Playwright testing and automation.. Apache-2 -- [GitHub](https://github.com/pytest-dev/pytest-bdd) (πŸ‘¨β€πŸ’» 60 Β· πŸ”€ 210 Β· πŸ“¦ 3.2K Β· πŸ“‹ 350 - 41% open Β· ⏱️ 02.12.2023): +- [GitHub](https://github.com/microsoft/playwright-python) (πŸ‘¨β€πŸ’» 33 Β· πŸ”€ 760 Β· πŸ“¦ 21 Β· πŸ“‹ 1.2K - 2% open Β· ⏱️ 30.11.2023): + + ``` + git clone https://github.com/microsoft/playwright-python + ``` +- [PyPi](https://pypi.org/project/playwright) (πŸ“₯ 2M / month): + ``` + pip install playwright + ``` +
+
pytest-bdd (πŸ₯ˆ32 Β· ⭐ 1.2K) - BDD library for the py.test runner. MIT + +- [GitHub](https://github.com/pytest-dev/pytest-bdd) (πŸ‘¨β€πŸ’» 60 Β· πŸ”€ 200 Β· πŸ“¦ 3.2K Β· πŸ“‹ 320 - 35% open Β· ⏱️ 02.12.2023): ``` git clone https://github.com/pytest-dev/pytest-bdd ``` -- [PyPi](https://pypi.org/project/pytest-bdd) (πŸ“₯ 780K / month Β· πŸ“¦ 190 Β· ⏱️ 02.12.2023): +- [PyPi](https://pypi.org/project/pytest-bdd) (πŸ“₯ 780K / month): ``` pip install pytest-bdd ``` @@ -2301,7 +2155,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pytest-bdd ```
-
asv (πŸ₯ˆ33 Β· ⭐ 810) - Airspeed Velocity: A simple Python benchmarking tool with web-based reporting. BSD-3 +
asv (πŸ₯ˆ31 Β· ⭐ 810) - Airspeed Velocity: A simple Python benchmarking tool with web-based reporting. BSD-3 - [GitHub](https://github.com/airspeed-velocity/asv) (πŸ‘¨β€πŸ’» 76 Β· πŸ”€ 170 Β· πŸ“₯ 160 Β· πŸ“¦ 1K Β· πŸ“‹ 570 - 24% open Β· ⏱️ 11.09.2023): @@ -2317,46 +2171,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge asv ```
-
nose2 (πŸ₯ˆ33 Β· ⭐ 760 Β· πŸ“‰) - The successor to nose, based on unittest2. BSD-2 +
nox (πŸ₯ˆ30 Β· ⭐ 1.2K) - Flexible test automation for Python. Apache-2 -- [GitHub](https://github.com/nose-devs/nose2) (πŸ‘¨β€πŸ’» 77 Β· πŸ”€ 140 Β· πŸ“¦ 24K Β· πŸ“‹ 270 - 19% open Β· ⏱️ 07.11.2023): - - ``` - git clone https://github.com/nose-devs/nose2 - ``` -- [PyPi](https://pypi.org/project/nose2) (πŸ“₯ 670K / month Β· πŸ“¦ 1.1K Β· ⏱️ 04.10.2023): - ``` - pip install nose2 - ``` -- [Conda](https://anaconda.org/conda-forge/nose2) (πŸ“₯ 120K Β· ⏱️ 16.06.2023): - ``` - conda install -c conda-forge nose2 - ``` -
-
factory_boy (πŸ₯‰32 Β· ⭐ 3.2K) - A test fixtures replacement for Python. MIT - -- [GitHub](https://github.com/FactoryBoy/factory_boy) (πŸ‘¨β€πŸ’» 130 Β· πŸ”€ 380 Β· πŸ“‹ 590 - 33% open Β· ⏱️ 29.11.2023): - - ``` - git clone https://github.com/FactoryBoy/factory_boy - ``` -- [PyPi](https://pypi.org/project/factory_boy) (πŸ“₯ 3.4M / month Β· πŸ“¦ 840 Β· ⏱️ 19.07.2023): - ``` - pip install factory_boy - ``` -- [Conda](https://anaconda.org/conda-forge/factory_boy) (πŸ“₯ 140K Β· ⏱️ 19.07.2023): - ``` - conda install -c conda-forge factory_boy - ``` -
-
nox (πŸ₯‰31 Β· ⭐ 1.1K) - Flexible test automation for Python. Apache-2 - -- [GitHub](https://github.com/wntrblm/nox) (πŸ‘¨β€πŸ’» 91 Β· πŸ”€ 140 Β· πŸ“¦ 4.7K Β· πŸ“‹ 330 - 17% open Β· ⏱️ 02.11.2023): +- [GitHub](https://github.com/wntrblm/nox) (πŸ‘¨β€πŸ’» 91 Β· πŸ”€ 140 Β· πŸ“¦ 4.8K Β· πŸ“‹ 330 - 17% open Β· ⏱️ 02.11.2023): ``` git clone https://github.com/theacodes/nox ``` -- [PyPi](https://pypi.org/project/nox) (πŸ“₯ 960K / month Β· πŸ“¦ 410 Β· ⏱️ 23.04.2023): +- [PyPi](https://pypi.org/project/nox) (πŸ“₯ 1M / month): ``` pip install nox ``` @@ -2365,14 +2187,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge nox ```
-
coveralls-python (πŸ₯‰30 Β· ⭐ 530) - Show coverage stats online via coveralls.io. MIT +
coveralls-python (πŸ₯ˆ30 Β· ⭐ 540) - Show coverage stats online via coveralls.io. MIT -- [GitHub](https://github.com/TheKevJames/coveralls-python) (πŸ‘¨β€πŸ’» 64 Β· πŸ”€ 190 Β· πŸ“¦ 33K Β· πŸ“‹ 170 - 15% open Β· ⏱️ 14.08.2023): +- [GitHub](https://github.com/TheKevJames/coveralls-python) (πŸ‘¨β€πŸ’» 64 Β· πŸ”€ 180 Β· πŸ“¦ 33K Β· πŸ“‹ 160 - 9% open Β· ⏱️ 14.08.2023): ``` git clone https://github.com/TheKevJames/coveralls-python ``` -- [PyPi](https://pypi.org/project/coveralls) (πŸ“₯ 620K / month Β· πŸ“¦ 9.5K Β· ⏱️ 11.11.2021): +- [PyPi](https://pypi.org/project/coveralls) (πŸ“₯ 630K / month): ``` pip install coveralls ``` @@ -2381,78 +2203,62 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge coveralls ```
-
pytest-testinfra (πŸ₯‰29 Β· ⭐ 2.3K) - Testinfra test your infrastructures. Apache-2 +
freezegun (πŸ₯ˆ29 Β· ⭐ 3.9K Β· πŸ“‰) - Let your Python tests travel through time. Apache-2 + +- [GitHub](https://github.com/spulec/freezegun) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 250 Β· πŸ“₯ 5 Β· πŸ“‹ 300 - 37% open Β· ⏱️ 07.12.2023): + + ``` + git clone https://github.com/spulec/freezegun + ``` +- [PyPi](https://pypi.org/project/freezegun) (πŸ“₯ 8.1M / month): + ``` + pip install freezegun + ``` +- [Conda](https://anaconda.org/conda-forge/freezegun) (πŸ“₯ 1.5M Β· ⏱️ 05.12.2023): + ``` + conda install -c conda-forge freezegun + ``` +
+
pytest-testinfra (πŸ₯ˆ29 Β· ⭐ 2.3K) - Testinfra test your infrastructures. Apache-2 - [GitHub](https://github.com/pytest-dev/pytest-testinfra) (πŸ‘¨β€πŸ’» 140 Β· πŸ”€ 340 Β· πŸ“‹ 340 - 37% open Β· ⏱️ 13.11.2023): ``` git clone https://github.com/pytest-dev/pytest-testinfra ``` -- [PyPi](https://pypi.org/project/pytest-testinfra) (πŸ“₯ 390K / month Β· πŸ“¦ 11 Β· ⏱️ 13.11.2023): +- [PyPi](https://pypi.org/project/pytest-testinfra) (πŸ“₯ 380K / month Β· πŸ“¦ 11 Β· ⏱️ 13.11.2023): ``` pip install pytest-testinfra ``` -- [Conda](https://anaconda.org/conda-forge/pytest-testinfra) (πŸ“₯ 14K Β· ⏱️ 19.11.2023): +- [Conda](https://anaconda.org/conda-forge/pytest-testinfra) (πŸ“₯ 15K Β· ⏱️ 19.11.2023): ``` conda install -c conda-forge pytest-testinfra ```
-
pytest-sugar (πŸ₯‰29 Β· ⭐ 1.2K) - a plugin for py.test that changes the default look and feel.. BSD-3 +
pytest-asyncio (πŸ₯ˆ29 Β· ⭐ 1.3K) - Asyncio support for pytest. Apache-2 -- [GitHub](https://github.com/Teemu/pytest-sugar) (πŸ‘¨β€πŸ’» 50 Β· πŸ”€ 71 Β· πŸ“₯ 11 Β· πŸ“¦ 24K Β· πŸ“‹ 120 - 20% open Β· ⏱️ 08.08.2023): +- [GitHub](https://github.com/pytest-dev/pytest-asyncio) (πŸ‘¨β€πŸ’» 44 Β· πŸ”€ 130 Β· πŸ“₯ 170 Β· πŸ“‹ 280 - 12% open Β· ⏱️ 09.12.2023): ``` - git clone https://github.com/Teemu/pytest-sugar + git clone https://github.com/pytest-dev/pytest-asyncio ``` -- [PyPi](https://pypi.org/project/pytest-sugar) (πŸ“₯ 1.1M / month Β· πŸ“¦ 2.8K Β· ⏱️ 10.04.2023): +- [PyPi](https://pypi.org/project/pytest-asyncio) (πŸ“₯ 9.2M / month): ``` - pip install pytest-sugar + pip install pytest-asyncio ``` -- [Conda](https://anaconda.org/conda-forge/pytest-sugar) (πŸ“₯ 220K Β· ⏱️ 02.07.2023): +- [Conda](https://anaconda.org/conda-forge/pytest-asyncio) (πŸ“₯ 1.8M Β· ⏱️ 04.12.2023): ``` - conda install -c conda-forge pytest-sugar + conda install -c conda-forge pytest-asyncio ```
-
pytest-benchmark (πŸ₯‰29 Β· ⭐ 1.1K Β· πŸ’€) - py.test fixture for benchmarking code. BSD-2 - -- [GitHub](https://github.com/ionelmc/pytest-benchmark) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 110 Β· πŸ“¦ 7.9K Β· πŸ“‹ 190 - 53% open Β· ⏱️ 27.04.2023): - - ``` - git clone https://github.com/ionelmc/pytest-benchmark - ``` -- [PyPi](https://pypi.org/project/pytest-benchmark) (πŸ“₯ 930K / month Β· πŸ“¦ 740 Β· ⏱️ 25.10.2022): - ``` - pip install pytest-benchmark - ``` -- [Conda](https://anaconda.org/conda-forge/pytest-benchmark) (πŸ“₯ 1.9M Β· ⏱️ 16.06.2023): - ``` - conda install -c conda-forge pytest-benchmark - ``` -
-
pytest-randomly (πŸ₯‰29 Β· ⭐ 550) - Pytest plugin to randomly order tests and control random.seed. MIT - -- [GitHub](https://github.com/pytest-dev/pytest-randomly) (πŸ‘¨β€πŸ’» 20 Β· πŸ”€ 31 Β· πŸ“¦ 7.6K Β· πŸ“‹ 61 - 11% open Β· ⏱️ 27.11.2023): - - ``` - git clone https://github.com/pytest-dev/pytest-randomly - ``` -- [PyPi](https://pypi.org/project/pytest-randomly) (πŸ“₯ 1.2M / month Β· πŸ“¦ 290 Β· ⏱️ 15.08.2023): - ``` - pip install pytest-randomly - ``` -- [Conda](https://anaconda.org/conda-forge/pytest-randomly) (πŸ“₯ 170K Β· ⏱️ 15.08.2023): - ``` - conda install -c conda-forge pytest-randomly - ``` -
-
ddt (πŸ₯‰29 Β· ⭐ 430) - Data-Driven Tests for Python Unittest. MIT +
ddt (πŸ₯ˆ29 Β· ⭐ 430) - Data-Driven Tests for Python Unittest. MIT - [GitHub](https://github.com/datadriventests/ddt) (πŸ‘¨β€πŸ’» 38 Β· πŸ”€ 110 Β· πŸ“¦ 5.4K Β· πŸ“‹ 54 - 20% open Β· ⏱️ 08.11.2023): ``` git clone https://github.com/datadriventests/ddt ``` -- [PyPi](https://pypi.org/project/ddt) (πŸ“₯ 560K / month Β· πŸ“¦ 1.3K Β· ⏱️ 08.11.2023): +- [PyPi](https://pypi.org/project/ddt) (πŸ“₯ 570K / month Β· πŸ“¦ 1.3K Β· ⏱️ 08.11.2023): ``` pip install ddt ``` @@ -2461,30 +2267,30 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge ddt ```
-
green (πŸ₯‰28 Β· ⭐ 780 Β· πŸ“ˆ) - Green is a clean, colorful, fast python test runner. MIT +
pytest-benchmark (πŸ₯‰28 Β· ⭐ 1.1K) - py.test fixture for benchmarking code. BSD-2 -- [GitHub](https://github.com/CleanCut/green) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 80 Β· πŸ“‹ 180 - 3% open Β· ⏱️ 05.12.2023): +- [GitHub](https://github.com/ionelmc/pytest-benchmark) (πŸ‘¨β€πŸ’» 41 Β· πŸ”€ 110 Β· πŸ“¦ 8K Β· πŸ“‹ 180 - 50% open Β· ⏱️ 14.12.2023): ``` - git clone https://github.com/CleanCut/green + git clone https://github.com/ionelmc/pytest-benchmark ``` -- [PyPi](https://pypi.org/project/green) (πŸ“₯ 16K / month Β· πŸ“¦ 240 Β· ⏱️ 21.09.2022): +- [PyPi](https://pypi.org/project/pytest-benchmark) (πŸ“₯ 950K / month): ``` - pip install green + pip install pytest-benchmark ``` -- [Conda](https://anaconda.org/conda-forge/green) (πŸ“₯ 130K Β· ⏱️ 28.09.2023): +- [Conda](https://anaconda.org/conda-forge/pytest-benchmark) (πŸ“₯ 1.9M Β· ⏱️ 16.06.2023): ``` - conda install -c conda-forge green + conda install -c conda-forge pytest-benchmark ```
pytest-testmon (πŸ₯‰27 Β· ⭐ 740) - Selects tests affected by changed files. Executes the right.. MIT -- [GitHub](https://github.com/tarpas/pytest-testmon) (πŸ‘¨β€πŸ’» 24 Β· πŸ”€ 54 Β· πŸ“¦ 1.2K Β· πŸ“‹ 150 - 18% open Β· ⏱️ 23.11.2023): +- [GitHub](https://github.com/tarpas/pytest-testmon) (πŸ‘¨β€πŸ’» 24 Β· πŸ”€ 49 Β· πŸ“¦ 1.2K Β· πŸ“‹ 150 - 16% open Β· ⏱️ 23.11.2023): ``` git clone https://github.com/tarpas/pytest-testmon ``` -- [PyPi](https://pypi.org/project/pytest-testmon) (πŸ“₯ 180K / month Β· πŸ“¦ 9 Β· ⏱️ 23.11.2023): +- [PyPi](https://pypi.org/project/pytest-testmon) (πŸ“₯ 170K / month): ``` pip install pytest-testmon ``` @@ -2493,42 +2299,58 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pytest-testmon ```
+
pytest-randomly (πŸ₯‰27 Β· ⭐ 560) - Pytest plugin to randomly order tests and control random.seed. MIT + +- [GitHub](https://github.com/pytest-dev/pytest-randomly) (πŸ‘¨β€πŸ’» 20 Β· πŸ”€ 28 Β· πŸ“¦ 7.6K Β· πŸ“‹ 60 - 10% open Β· ⏱️ 12.12.2023): + + ``` + git clone https://github.com/pytest-dev/pytest-randomly + ``` +- [PyPi](https://pypi.org/project/pytest-randomly) (πŸ“₯ 1.2M / month): + ``` + pip install pytest-randomly + ``` +- [Conda](https://anaconda.org/conda-forge/pytest-randomly) (πŸ“₯ 170K Β· ⏱️ 15.08.2023): + ``` + conda install -c conda-forge pytest-randomly + ``` +
+
factory_boy (πŸ₯‰26 Β· ⭐ 3.3K) - A test fixtures replacement for Python. MIT + +- [GitHub](https://github.com/FactoryBoy/factory_boy) (πŸ‘¨β€πŸ’» 130 Β· πŸ”€ 360 Β· πŸ“‹ 560 - 29% open Β· ⏱️ 29.11.2023): + + ``` + git clone https://github.com/FactoryBoy/factory_boy + ``` +- [PyPi](https://pypi.org/project/factory_boy) (πŸ“₯ 3.4M / month): + ``` + pip install factory_boy + ``` +- [Conda](https://anaconda.org/conda-forge/factory_boy) (πŸ“₯ 140K Β· ⏱️ 19.07.2023): + ``` + conda install -c conda-forge factory_boy + ``` +
Mamba Test Runner (πŸ₯‰26 Β· ⭐ 510) - The definitive testing tool for Python. Born under the banner.. MIT -- [GitHub](https://github.com/nestorsalceda/mamba) (πŸ‘¨β€πŸ’» 23 Β· πŸ”€ 64 Β· πŸ“¦ 880 Β· πŸ“‹ 100 - 50% open Β· ⏱️ 09.11.2023): +- [GitHub](https://github.com/nestorsalceda/mamba) (πŸ‘¨β€πŸ’» 23 Β· πŸ”€ 64 Β· πŸ“¦ 890 Β· πŸ“‹ 80 - 35% open Β· ⏱️ 09.11.2023): ``` git clone https://github.com/nestorsalceda/mamba ``` -- [PyPi](https://pypi.org/project/mamba) (πŸ“₯ 6.8K / month Β· πŸ“¦ 130 Β· ⏱️ 09.11.2023): +- [PyPi](https://pypi.org/project/mamba) (πŸ“₯ 6.6K / month): ``` pip install mamba ```
-
pytest-mypy (πŸ₯‰25 Β· ⭐ 230 Β· πŸ’€) - Mypy static type checker plugin for Pytest. MIT - -- [GitHub](https://github.com/realpython/pytest-mypy) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 33 Β· πŸ“¦ 3.8K Β· πŸ“‹ 63 - 15% open Β· ⏱️ 08.05.2023): - - ``` - git clone https://github.com/dbader/pytest-mypy - ``` -- [PyPi](https://pypi.org/project/pytest-mypy) (πŸ“₯ 360K / month Β· πŸ“¦ 500 Β· ⏱️ 18.12.2022): - ``` - pip install pytest-mypy - ``` -- [Conda](https://anaconda.org/conda-forge/pytest-mypy) (πŸ“₯ 92K Β· ⏱️ 16.06.2023): - ``` - conda install -c conda-forge pytest-mypy - ``` -
pytest-datadir (πŸ₯‰25 Β· ⭐ 220) - pytest plugin for manipulating test data directories and.. MIT -- [GitHub](https://github.com/gabrielcnr/pytest-datadir) (πŸ‘¨β€πŸ’» 11 Β· πŸ”€ 21 Β· πŸ“₯ 2 Β· πŸ“¦ 1.6K Β· πŸ“‹ 19 - 26% open Β· ⏱️ 13.11.2023): +- [GitHub](https://github.com/gabrielcnr/pytest-datadir) (πŸ‘¨β€πŸ’» 11 Β· πŸ”€ 22 Β· πŸ“₯ 2 Β· πŸ“¦ 1.6K Β· πŸ“‹ 19 - 26% open Β· ⏱️ 13.11.2023): ``` git clone https://github.com/gabrielcnr/pytest-datadir ``` -- [PyPi](https://pypi.org/project/pytest-datadir) (πŸ“₯ 300K / month Β· πŸ“¦ 130 Β· ⏱️ 03.10.2023): +- [PyPi](https://pypi.org/project/pytest-datadir) (πŸ“₯ 320K / month Β· πŸ“¦ 130 Β· ⏱️ 03.10.2023): ``` pip install pytest-datadir ``` @@ -2537,6 +2359,22 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge pytest-datadir ```
+
pytest-mypy (πŸ₯‰24 Β· ⭐ 230 Β· πŸ’€) - Mypy static type checker plugin for Pytest. MIT + +- [GitHub](https://github.com/realpython/pytest-mypy) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 33 Β· πŸ“¦ 3.8K Β· πŸ“‹ 63 - 15% open Β· ⏱️ 08.05.2023): + + ``` + git clone https://github.com/dbader/pytest-mypy + ``` +- [PyPi](https://pypi.org/project/pytest-mypy) (πŸ“₯ 340K / month): + ``` + pip install pytest-mypy + ``` +- [Conda](https://anaconda.org/conda-forge/pytest-mypy) (πŸ“₯ 92K Β· ⏱️ 16.06.2023): + ``` + conda install -c conda-forge pytest-mypy + ``` +
xdoctest (πŸ₯‰24 Β· ⭐ 200) - A rewrite of Pythons builtin doctest module (with pytest plugin.. Apache-2 - [GitHub](https://github.com/Erotemic/xdoctest) (πŸ‘¨β€πŸ’» 9 Β· πŸ”€ 10 Β· πŸ“‹ 46 - 41% open Β· ⏱️ 26.10.2023): @@ -2544,36 +2382,55 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/Erotemic/xdoctest ``` -- [PyPi](https://pypi.org/project/xdoctest) (πŸ“₯ 160K / month Β· πŸ“¦ 120 Β· ⏱️ 26.10.2023): +- [PyPi](https://pypi.org/project/xdoctest) (πŸ“₯ 170K / month Β· πŸ“¦ 120 Β· ⏱️ 26.10.2023): ``` pip install xdoctest ``` -- [Conda](https://anaconda.org/conda-forge/xdoctest) (πŸ“₯ 190K Β· ⏱️ 26.10.2023): +- [Conda](https://anaconda.org/conda-forge/xdoctest) (πŸ“₯ 200K Β· ⏱️ 26.10.2023): ``` conda install -c conda-forge xdoctest ```
-
pytest-docker (πŸ₯‰23 Β· ⭐ 360) - Docker-based integration tests. MIT +
green (πŸ₯‰23 Β· ⭐ 780) - Green is a clean, colorful, fast python test runner. MIT -- [GitHub](https://github.com/avast/pytest-docker) (πŸ‘¨β€πŸ’» 18 Β· πŸ”€ 61 Β· πŸ“₯ 130 Β· πŸ“‹ 53 - 35% open Β· ⏱️ 01.09.2023): +- [GitHub](https://github.com/CleanCut/green) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 74 Β· πŸ“‹ 180 - 3% open Β· ⏱️ 05.12.2023): + + ``` + git clone https://github.com/CleanCut/green + ``` +- [PyPi](https://pypi.org/project/green) (πŸ“₯ 20K / month): + ``` + pip install green + ``` +- [Conda](https://anaconda.org/conda-forge/green) (πŸ“₯ 130K Β· ⏱️ 28.09.2023): + ``` + conda install -c conda-forge green + ``` +
+
pytest-docker (πŸ₯‰20 Β· ⭐ 360) - Docker-based integration tests. MIT + +- [GitHub](https://github.com/avast/pytest-docker) (πŸ‘¨β€πŸ’» 18 Β· πŸ”€ 60 Β· πŸ“₯ 130 Β· πŸ“‹ 44 - 22% open Β· ⏱️ 01.09.2023): ``` git clone https://github.com/avast/pytest-docker ``` -- [PyPi](https://pypi.org/project/pytest-docker) (πŸ“₯ 150K / month Β· πŸ“¦ 55 Β· ⏱️ 01.09.2023): +- [PyPi](https://pypi.org/project/pytest-docker) (πŸ“₯ 150K / month): ``` pip install pytest-docker ```
-
Show 10 hidden projects... +
Show 13 hidden projects... -- nose (πŸ₯ˆ34 Β· ⭐ 1.4K Β· πŸ’€) - nose is nicer testing for python. ❗️LGPL-2.1+ +- pytest-html (πŸ₯ˆ33 Β· ⭐ 630) - Plugin for generating HTML reports for pytest results. ❗Unlicensed +- nose (πŸ₯ˆ31 Β· ⭐ 1.4K Β· πŸ’€) - nose is nicer testing for python. ❗Unlicensed +- nose2 (πŸ₯ˆ29 Β· ⭐ 760) - The successor to nose, based on unittest2. ❗Unlicensed - PyHamcrest (πŸ₯‰28 Β· ⭐ 730) - Hamcrest matchers for Python. ❗Unlicensed -- uiautomator (πŸ₯‰26 Β· ⭐ 2K Β· πŸ’€) - Python wrapper of Android uiautomator test tool. MIT -- pytest-watch (πŸ₯‰26 Β· ⭐ 710 Β· πŸ’€) - Local continuous test runner with pytest and watchdog. MIT +- pytest-sugar (πŸ₯‰27 Β· ⭐ 1.2K) - a plugin for py.test that changes the default look.. ❗Unlicensed +- uiautomator (πŸ₯‰25 Β· ⭐ 2K Β· πŸ’€) - Python wrapper of Android uiautomator test tool. MIT - pytest-lazy-fixture (πŸ₯‰25 Β· ⭐ 350 Β· πŸ’€) - It helps to use fixtures in pytest.mark.parametrize. MIT -- pytest-plugins (πŸ₯‰23 Β· ⭐ 530 Β· πŸ’€) - A grab-bag of nifty pytest plugins. MIT +- pytest-watch (πŸ₯‰24 Β· ⭐ 710 Β· πŸ’€) - Local continuous test runner with pytest and watchdog. MIT - sixpack (πŸ₯‰21 Β· ⭐ 1.8K Β· πŸ’€) - Sixpack is a language-agnostic a/b-testing framework. BSD-2 +- pytest-plugins (πŸ₯‰19 Β· ⭐ 530 Β· πŸ’€) - A grab-bag of nifty pytest plugins. MIT - assertpy (πŸ₯‰19 Β· ⭐ 430 Β· πŸ’€) - Simple assertion library for unit testing in python with a fluent.. BSD-3 - fake2db (πŸ₯‰18 Β· ⭐ 2.2K Β· πŸ’€) - create custom test databases that are populated with fake data. ❗️GPL-2.0 - pytest-play (πŸ₯‰15 Β· ⭐ 67 Β· πŸ’€) - pytest plugin that let you automate actions and.. Apache-2 @@ -2588,39 +2445,23 @@ This curated list contains 270 awesome open-source projects with a total of 900K
pyinstaller (πŸ₯‡42 Β· ⭐ 11K) - Freeze (package) Python programs into stand-alone executables. ❗️GPL-2.0 -- [GitHub](https://github.com/pyinstaller/pyinstaller) (πŸ‘¨β€πŸ’» 460 Β· πŸ”€ 2K Β· πŸ“₯ 740K Β· πŸ“¦ 52K Β· πŸ“‹ 5.1K - 5% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/pyinstaller/pyinstaller) (πŸ‘¨β€πŸ’» 460 Β· πŸ”€ 1.8K Β· πŸ“₯ 740K Β· πŸ“¦ 52K Β· πŸ“‹ 5.1K - 5% open Β· ⏱️ 10.12.2023): ``` git clone https://github.com/pyinstaller/pyinstaller ``` -- [PyPi](https://pypi.org/project/pyinstaller) (πŸ“₯ 1.9M / month Β· πŸ“¦ 390 Β· ⏱️ 11.11.2023): +- [PyPi](https://pypi.org/project/pyinstaller) (πŸ“₯ 1.9M / month): ``` pip install pyinstaller ``` -- [Conda](https://anaconda.org/conda-forge/pyinstaller) (πŸ“₯ 510K Β· ⏱️ 11.11.2023): +- [Conda](https://anaconda.org/conda-forge/pyinstaller) (πŸ“₯ 510K Β· ⏱️ 11.12.2023): ``` conda install -c conda-forge pyinstaller ```
-
Nuitka (πŸ₯‡39 Β· ⭐ 10K) - Nuitka is a Python compiler written in Python. Its fully compatible.. Apache-2 +
packaging (πŸ₯‡38 Β· ⭐ 550) - Core utilities for Python packages. Apache-2 -- [GitHub](https://github.com/Nuitka/Nuitka) (πŸ‘¨β€πŸ’» 160 Β· πŸ”€ 540 Β· πŸ“¦ 1.7K Β· πŸ“‹ 2.1K - 7% open Β· ⏱️ 02.12.2023): - - ``` - git clone https://github.com/Nuitka/Nuitka - ``` -- [PyPi](https://pypi.org/project/nuitka) (πŸ“₯ 95K / month Β· πŸ“¦ 64 Β· ⏱️ 01.12.2023): - ``` - pip install nuitka - ``` -- [Conda](https://anaconda.org/conda-forge/nuitka) (πŸ“₯ 600K Β· ⏱️ 02.12.2023): - ``` - conda install -c conda-forge nuitka - ``` -
-
packaging (πŸ₯ˆ38 Β· ⭐ 550) - Core utilities for Python packages. Apache-2 - -- [GitHub](https://github.com/pypa/packaging) (πŸ‘¨β€πŸ’» 100 Β· πŸ”€ 240 Β· πŸ“₯ 750 Β· πŸ“¦ 970K Β· πŸ“‹ 350 - 20% open Β· ⏱️ 21.11.2023): +- [GitHub](https://github.com/pypa/packaging) (πŸ‘¨β€πŸ’» 100 Β· πŸ”€ 240 Β· πŸ“₯ 750 Β· πŸ“¦ 980K Β· πŸ“‹ 350 - 20% open Β· ⏱️ 21.11.2023): ``` git clone https://github.com/pypa/packaging @@ -2629,43 +2470,71 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` pip install packaging ``` -- [Conda](https://anaconda.org/conda-forge/packaging) (πŸ“₯ 41M Β· ⏱️ 01.10.2023): +- [Conda](https://anaconda.org/conda-forge/packaging) (πŸ“₯ 42M Β· ⏱️ 01.10.2023): ``` conda install -c conda-forge packaging ```
-
pex (πŸ₯ˆ32 Β· ⭐ 2.4K) - A tool for generating .pex (Python EXecutable) files, lock files and venvs. Apache-2 +
Nuitka (πŸ₯ˆ37 Β· ⭐ 10K) - Nuitka is a Python compiler written in Python. Its fully compatible.. Apache-2 -- [GitHub](https://github.com/pantsbuild/pex) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 250 Β· πŸ“₯ 3.8M Β· πŸ“‹ 1.1K - 14% open Β· ⏱️ 05.12.2023): +- [GitHub](https://github.com/Nuitka/Nuitka) (πŸ‘¨β€πŸ’» 160 Β· πŸ”€ 540 Β· πŸ“¦ 1.7K Β· πŸ“‹ 2.1K - 7% open Β· ⏱️ 14.12.2023): ``` - git clone https://github.com/pantsbuild/pex + git clone https://github.com/Nuitka/Nuitka ``` -- [PyPi](https://pypi.org/project/pex) (πŸ“₯ 1.2M / month Β· πŸ“¦ 140 Β· ⏱️ 16.11.2023): +- [PyPi](https://pypi.org/project/nuitka) (πŸ“₯ 98K / month): ``` - pip install pex + pip install nuitka + ``` +- [Conda](https://anaconda.org/conda-forge/nuitka) (πŸ“₯ 600K Β· ⏱️ 11.12.2023): + ``` + conda install -c conda-forge nuitka ```
briefcase (πŸ₯ˆ32 Β· ⭐ 2.2K) - Tools to support converting a Python project into a standalone.. BSD-3 -- [GitHub](https://github.com/beeware/briefcase) (πŸ‘¨β€πŸ’» 130 Β· πŸ”€ 300 Β· πŸ“₯ 220 Β· πŸ“¦ 490 Β· πŸ“‹ 670 - 17% open Β· ⏱️ 05.12.2023): +- [GitHub](https://github.com/beeware/briefcase) (πŸ‘¨β€πŸ’» 140 Β· πŸ”€ 300 Β· πŸ“₯ 220 Β· πŸ“¦ 500 Β· πŸ“‹ 670 - 17% open Β· ⏱️ 13.12.2023): ``` git clone https://github.com/beeware/briefcase ``` -- [PyPi](https://pypi.org/project/briefcase) (πŸ“₯ 6.3K / month Β· πŸ“¦ 19 Β· ⏱️ 20.10.2023): +- [PyPi](https://pypi.org/project/briefcase) (πŸ“₯ 6.7K / month Β· πŸ“¦ 19 Β· ⏱️ 20.10.2023): ``` pip install briefcase ```
-
cx_Freeze (πŸ₯ˆ32 Β· ⭐ 1.2K) - Create standalone executables from Python scripts, with the.. Python-2.0 +
pex (πŸ₯ˆ29 Β· ⭐ 2.4K) - A tool for generating .pex (Python EXecutable) files, lock files and venvs. Apache-2 -- [GitHub](https://github.com/marcelotduarte/cx_Freeze) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 200 Β· πŸ“‹ 890 - 5% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/pantsbuild/pex) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 240 Β· πŸ“₯ 3.7M Β· πŸ“‹ 1.1K - 13% open Β· ⏱️ 14.12.2023): + + ``` + git clone https://github.com/pantsbuild/pex + ``` +- [PyPi](https://pypi.org/project/pex) (πŸ“₯ 1.3M / month): + ``` + pip install pex + ``` +
+
PyOxidizer (πŸ₯ˆ27 Β· ⭐ 5K Β· πŸ’€) - A modern Python application packaging and distribution tool. MPL-2.0 + +- [GitHub](https://github.com/indygreg/PyOxidizer) (πŸ‘¨β€πŸ’» 54 Β· πŸ”€ 210 Β· πŸ“₯ 13K Β· πŸ“¦ 150 Β· πŸ“‹ 540 - 56% open Β· ⏱️ 21.01.2023): + + ``` + git clone https://github.com/indygreg/PyOxidizer + ``` +- [PyPi](https://pypi.org/project/pyoxidizer) (πŸ“₯ 10K / month): + ``` + pip install pyoxidizer + ``` +
+
cx_Freeze (πŸ₯ˆ27 Β· ⭐ 1.2K) - Create standalone executables from Python scripts, with the.. ❗Unlicensed + +- [GitHub](https://github.com/marcelotduarte/cx_Freeze) (πŸ‘¨β€πŸ’» 110 Β· πŸ”€ 200 Β· πŸ“‹ 890 - 4% open Β· ⏱️ 13.12.2023): ``` git clone https://github.com/marcelotduarte/cx_Freeze ``` -- [PyPi](https://pypi.org/project/cx_freeze) (πŸ“₯ 120K / month Β· πŸ“¦ 53 Β· ⏱️ 29.11.2023): +- [PyPi](https://pypi.org/project/cx_freeze) (πŸ“₯ 120K / month): ``` pip install cx_freeze ``` @@ -2674,78 +2543,18 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge cx_freeze ```
-
PyOxidizer (πŸ₯‰27 Β· ⭐ 5K Β· πŸ’€) - A modern Python application packaging and distribution tool. MPL-2.0 +
shiv (πŸ₯‰23 Β· ⭐ 1.7K) - shiv is a command line utility for building fully self contained Python.. BSD-2 -- [GitHub](https://github.com/indygreg/PyOxidizer) (πŸ‘¨β€πŸ’» 54 Β· πŸ”€ 210 Β· πŸ“₯ 13K Β· πŸ“¦ 150 Β· πŸ“‹ 560 - 57% open Β· ⏱️ 21.01.2023): - - ``` - git clone https://github.com/indygreg/PyOxidizer - ``` -- [PyPi](https://pypi.org/project/pyoxidizer) (πŸ“₯ 7.4K / month Β· πŸ“¦ 2 Β· ⏱️ 02.01.2023): - ``` - pip install pyoxidizer - ``` -
-
py2app (πŸ₯‰27 Β· ⭐ 290 Β· πŸ’€) - py2app is a Python setuptools command which will allow you to make.. MIT - -- [GitHub](https://github.com/ronaldoussoren/py2app) (πŸ‘¨β€πŸ’» 31 Β· πŸ”€ 30 Β· πŸ“¦ 4.6K Β· πŸ“‹ 480 - 36% open Β· ⏱️ 16.04.2023): - - ``` - git clone https://github.com/ronaldoussoren/py2app - ``` -- [PyPi](https://pypi.org/project/py2app) (πŸ“₯ 24K / month Β· πŸ“¦ 830 Β· ⏱️ 05.06.2023): - ``` - pip install py2app - ``` -
-
shiv (πŸ₯‰25 Β· ⭐ 1.6K) - shiv is a command line utility for building fully self contained Python.. BSD-2 - -- [GitHub](https://github.com/linkedin/shiv) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 89 Β· πŸ“₯ 610 Β· πŸ“‹ 120 - 35% open Β· ⏱️ 07.09.2023): +- [GitHub](https://github.com/linkedin/shiv) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 86 Β· πŸ“₯ 620 Β· πŸ“‹ 120 - 35% open Β· ⏱️ 07.09.2023): ``` git clone https://github.com/linkedin/shiv ``` -- [PyPi](https://pypi.org/project/shiv) (πŸ“₯ 25K / month Β· πŸ“¦ 13 Β· ⏱️ 07.09.2023): +- [PyPi](https://pypi.org/project/shiv) (πŸ“₯ 26K / month): ``` pip install shiv ```
-
py2exe (πŸ₯‰25 Β· ⭐ 680) - Create standalone Windows programs from Python code. MIT - -- [GitHub](https://github.com/py2exe/py2exe) (πŸ‘¨β€πŸ’» 20 Β· πŸ”€ 86 Β· πŸ“₯ 15K Β· πŸ“¦ 1.9K Β· πŸ“‹ 160 - 8% open Β· ⏱️ 08.10.2023): - - ``` - git clone https://github.com/py2exe/py2exe - ``` -- [PyPi](https://pypi.org/project/py2exe) (πŸ“₯ 18K / month Β· πŸ“¦ 180 Β· ⏱️ 07.10.2023): - ``` - pip install py2exe - ``` -
-
constructor (πŸ₯‰24 Β· ⭐ 420) - tool for creating installers from conda packages. BSD-3 - -- [GitHub](https://github.com/conda/constructor) (πŸ‘¨β€πŸ’» 70 Β· πŸ”€ 160 Β· πŸ“₯ 280 Β· πŸ“¦ 16 Β· πŸ“‹ 330 - 9% open Β· ⏱️ 16.10.2023): - - ``` - git clone https://github.com/conda/constructor - ``` -- [Conda](https://anaconda.org/anaconda/constructor) (πŸ“₯ 9.5K Β· ⏱️ 06.12.2023): - ``` - conda install -c anaconda constructor - ``` -
-
xar (πŸ₯‰21 Β· ⭐ 1.6K) - executable archive format. BSD-3 - -- [GitHub](https://github.com/facebookincubator/xar) (πŸ‘¨β€πŸ’» 43 Β· πŸ”€ 54 Β· πŸ“¦ 28 Β· πŸ“‹ 33 - 24% open Β· ⏱️ 06.12.2023): - - ``` - git clone https://github.com/facebookincubator/xar - ``` -- [PyPi](https://pypi.org/project/xar) (πŸ“₯ 560 / month Β· ⏱️ 02.12.2020): - ``` - pip install xar - ``` -
subpar (πŸ₯‰13 Β· ⭐ 560 Β· πŸ’€) - Subpar is a utility for creating self-contained python.. Apache-2 - [GitHub](https://github.com/google/subpar) (πŸ‘¨β€πŸ’» 16 Β· πŸ”€ 66 Β· πŸ“‹ 64 - 53% open Β· ⏱️ 19.12.2022): @@ -2754,10 +2563,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K git clone https://github.com/google/subpar ```
-
Show 2 hidden projects... +
Show 6 hidden projects... -- pynsist (πŸ₯‰23 Β· ⭐ 860 Β· πŸ’€) - Build Windows installers for Python applications. MIT -- pyship (πŸ₯‰11 Β· ⭐ 35) - pyship - ship Python desktop apps to end users. MIT +- py2app (πŸ₯‰25 Β· ⭐ 290 Β· πŸ’€) - py2app is a Python setuptools command which will allow you to.. ❗Unlicensed +- py2exe (πŸ₯‰23 Β· ⭐ 690) - Create standalone Windows programs from Python code. ❗Unlicensed +- constructor (πŸ₯‰22 Β· ⭐ 420) - tool for creating installers from conda packages. ❗Unlicensed +- xar (πŸ₯‰19 Β· ⭐ 1.6K) - executable archive format. ❗Unlicensed +- pynsist (πŸ₯‰19 Β· ⭐ 860 Β· πŸ’€) - Build Windows installers for Python applications. ❗Unlicensed +- pyship (πŸ₯‰9 Β· ⭐ 36) - pyship - ship Python desktop apps to end users. MIT

@@ -2767,71 +2580,23 @@ This curated list contains 270 awesome open-source projects with a total of 900K
setuptools (πŸ₯‡45 Β· ⭐ 2.2K) - Official project repository for the Setuptools build system. MIT -- [GitHub](https://github.com/pypa/setuptools) (πŸ‘¨β€πŸ’» 590 Β· πŸ”€ 1K Β· πŸ“¦ 430K Β· πŸ“‹ 2.4K - 23% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/pypa/setuptools) (πŸ‘¨β€πŸ’» 590 Β· πŸ”€ 990 Β· πŸ“¦ 440K Β· πŸ“‹ 2.4K - 23% open Β· ⏱️ 06.12.2023): ``` git clone https://github.com/pypa/setuptools ``` -- [PyPi](https://pypi.org/project/setuptools) (πŸ“₯ 340M / month Β· πŸ“¦ 39K Β· ⏱️ 21.11.2023): +- [PyPi](https://pypi.org/project/setuptools) (πŸ“₯ 350M / month): ``` pip install setuptools ``` -- [Conda](https://anaconda.org/conda-forge/setuptools) (πŸ“₯ 98M Β· ⏱️ 12.09.2023): +- [Conda](https://anaconda.org/conda-forge/setuptools) (πŸ“₯ 99M Β· ⏱️ 12.09.2023): ``` conda install -c conda-forge setuptools ```
-
wheel (πŸ₯‡37 Β· ⭐ 460) - The official binary distribution format for Python. MIT +
twine (πŸ₯‡37 Β· ⭐ 1.5K Β· πŸ“ˆ) - Utilities for interacting with PyPI. Apache-2 -- [GitHub](https://github.com/pypa/wheel) (πŸ‘¨β€πŸ’» 77 Β· πŸ”€ 140 Β· πŸ“¦ 240K Β· πŸ“‹ 380 - 11% open Β· ⏱️ 26.11.2023): - - ``` - git clone https://github.com/pypa/wheel - ``` -- [PyPi](https://pypi.org/project/wheel) (πŸ“₯ 290M / month Β· πŸ“¦ 37K Β· ⏱️ 26.11.2023): - ``` - pip install wheel - ``` -- [Conda](https://anaconda.org/conda-forge/wheel) (πŸ“₯ 82M Β· ⏱️ 26.11.2023): - ``` - conda install -c conda-forge wheel - ``` -
-
buildbot (πŸ₯ˆ36 Β· ⭐ 5.1K) - Python-based continuous integration testing framework; your pull.. ❗️GPL-2.0 - -- [GitHub](https://github.com/buildbot/buildbot) (πŸ‘¨β€πŸ’» 850 Β· πŸ”€ 1.7K Β· πŸ“₯ 36K Β· πŸ“¦ 330 Β· πŸ“‹ 1.6K - 45% open Β· ⏱️ 07.12.2023): - - ``` - git clone https://github.com/buildbot/buildbot - ``` -- [PyPi](https://pypi.org/project/buildbot) (πŸ“₯ 20K / month Β· πŸ“¦ 460 Β· ⏱️ 05.12.2023): - ``` - pip install buildbot - ``` -- [Conda](https://anaconda.org/conda-forge/buildbot) (πŸ“₯ 91K Β· ⏱️ 03.09.2023): - ``` - conda install -c conda-forge buildbot - ``` -
-
invoke (πŸ₯ˆ36 Β· ⭐ 4.1K Β· πŸ“ˆ) - Pythonic task management & command execution. BSD-2 - -- [GitHub](https://github.com/pyinvoke/invoke) (πŸ‘¨β€πŸ’» 60 Β· πŸ”€ 380 Β· πŸ“¦ 23K Β· πŸ“‹ 790 - 49% open Β· ⏱️ 01.12.2023): - - ``` - git clone https://github.com/pyinvoke/invoke - ``` -- [PyPi](https://pypi.org/project/invoke) (πŸ“₯ 7.1M / month Β· πŸ“¦ 2.8K Β· ⏱️ 12.07.2023): - ``` - pip install invoke - ``` -- [Conda](https://anaconda.org/conda-forge/invoke) (πŸ“₯ 950K Β· ⏱️ 13.07.2023): - ``` - conda install -c conda-forge invoke - ``` -
-
twine (πŸ₯ˆ36 Β· ⭐ 1.5K) - Utilities for interacting with PyPI. Apache-2 - -- [GitHub](https://github.com/pypa/twine) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 300 Β· πŸ“¦ 98K Β· πŸ“‹ 480 - 10% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/pypa/twine) (πŸ‘¨β€πŸ’» 120 Β· πŸ”€ 300 Β· πŸ“¦ 98K Β· πŸ“‹ 480 - 10% open Β· ⏱️ 13.12.2023): ``` git clone https://github.com/pypa/twine @@ -2845,14 +2610,46 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge twine ```
-
scons (πŸ₯ˆ35 Β· ⭐ 1.8K) - SCons - a software construction tool. MIT +
wheel (πŸ₯‡37 Β· ⭐ 460) - The official binary distribution format for Python. MIT -- [GitHub](https://github.com/SCons/scons) (πŸ‘¨β€πŸ’» 160 Β· πŸ”€ 290 Β· πŸ“₯ 1.4K Β· πŸ“‹ 3.4K - 19% open Β· ⏱️ 06.12.2023): +- [GitHub](https://github.com/pypa/wheel) (πŸ‘¨β€πŸ’» 77 Β· πŸ”€ 140 Β· πŸ“¦ 240K Β· πŸ“‹ 380 - 11% open Β· ⏱️ 12.12.2023): + + ``` + git clone https://github.com/pypa/wheel + ``` +- [PyPi](https://pypi.org/project/wheel) (πŸ“₯ 290M / month Β· πŸ“¦ 37K Β· ⏱️ 26.11.2023): + ``` + pip install wheel + ``` +- [Conda](https://anaconda.org/conda-forge/wheel) (πŸ“₯ 83M Β· ⏱️ 26.11.2023): + ``` + conda install -c conda-forge wheel + ``` +
+
buildbot (πŸ₯ˆ36 Β· ⭐ 5.1K) - Python-based continuous integration testing framework; your pull.. ❗️GPL-2.0 + +- [GitHub](https://github.com/buildbot/buildbot) (πŸ‘¨β€πŸ’» 850 Β· πŸ”€ 1.5K Β· πŸ“₯ 36K Β· πŸ“¦ 340 Β· πŸ“‹ 1.5K - 44% open Β· ⏱️ 14.12.2023): + + ``` + git clone https://github.com/buildbot/buildbot + ``` +- [PyPi](https://pypi.org/project/buildbot) (πŸ“₯ 19K / month): + ``` + pip install buildbot + ``` +- [Conda](https://anaconda.org/conda-forge/buildbot) (πŸ“₯ 91K Β· ⏱️ 09.12.2023): + ``` + conda install -c conda-forge buildbot + ``` +
+
scons (πŸ₯ˆ35 Β· ⭐ 1.9K) - SCons - a software construction tool. MIT + +- [GitHub](https://github.com/SCons/scons) (πŸ‘¨β€πŸ’» 160 Β· πŸ”€ 290 Β· πŸ“₯ 1.4K Β· πŸ“‹ 3.4K - 19% open Β· ⏱️ 13.12.2023): ``` git clone https://github.com/SCons/scons ``` -- [PyPi](https://pypi.org/project/scons) (πŸ“₯ 390K / month Β· πŸ“¦ 62 Β· ⏱️ 20.11.2023): +- [PyPi](https://pypi.org/project/scons) (πŸ“₯ 400K / month Β· πŸ“¦ 62 Β· ⏱️ 20.11.2023): ``` pip install scons ``` @@ -2861,20 +2658,20 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge scons ```
-
setuptools_scm (πŸ₯ˆ35 Β· ⭐ 780) - the blessed package to manage your versions by scm tags. MIT +
invoke (πŸ₯ˆ34 Β· ⭐ 4.1K) - Pythonic task management & command execution. BSD-2 -- [GitHub](https://github.com/pypa/setuptools_scm) (πŸ‘¨β€πŸ’» 130 Β· πŸ”€ 210 Β· πŸ“‹ 540 - 15% open Β· ⏱️ 03.12.2023): +- [GitHub](https://github.com/pyinvoke/invoke) (πŸ‘¨β€πŸ’» 60 Β· πŸ”€ 350 Β· πŸ“¦ 24K Β· πŸ“‹ 710 - 43% open Β· ⏱️ 01.12.2023): ``` - git clone https://github.com/pypa/setuptools_scm + git clone https://github.com/pyinvoke/invoke ``` -- [PyPi](https://pypi.org/project/setuptools_scm) (πŸ“₯ 26M / month Β· πŸ“¦ 790 Β· ⏱️ 02.10.2023): +- [PyPi](https://pypi.org/project/invoke) (πŸ“₯ 7M / month): ``` - pip install setuptools_scm + pip install invoke ``` -- [Conda](https://anaconda.org/conda-forge/setuptools_scm) (πŸ“₯ 2M Β· ⏱️ 04.10.2023): +- [Conda](https://anaconda.org/conda-forge/invoke) (πŸ“₯ 950K Β· ⏱️ 13.07.2023): ``` - conda install -c conda-forge setuptools_scm + conda install -c conda-forge invoke ```
doit (πŸ₯‰32 Β· ⭐ 1.7K Β· πŸ’€) - task management & automation tool. MIT @@ -2884,23 +2681,39 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/pydoit/doit ``` -- [PyPi](https://pypi.org/project/doit) (πŸ“₯ 470K / month Β· πŸ“¦ 300 Β· ⏱️ 22.04.2022): +- [PyPi](https://pypi.org/project/doit) (πŸ“₯ 460K / month Β· πŸ“¦ 300 Β· ⏱️ 22.04.2022): ``` pip install doit ``` -- [Conda](https://anaconda.org/conda-forge/doit) (πŸ“₯ 240K Β· ⏱️ 16.06.2023): +- [Conda](https://anaconda.org/conda-forge/doit) (πŸ“₯ 250K Β· ⏱️ 16.06.2023): ``` conda install -c conda-forge doit ```
-
flit (πŸ₯‰31 Β· ⭐ 2K) - Simplified packaging of Python modules. BSD-3 +
setuptools_scm (πŸ₯‰31 Β· ⭐ 780) - the blessed package to manage your versions by scm tags. MIT -- [GitHub](https://github.com/pypa/flit) (πŸ‘¨β€πŸ’» 69 Β· πŸ”€ 120 Β· πŸ“¦ 1.6K Β· πŸ“‹ 410 - 32% open Β· ⏱️ 10.11.2023): +- [GitHub](https://github.com/pypa/setuptools_scm) (πŸ‘¨β€πŸ’» 130 Β· πŸ”€ 200 Β· πŸ“‹ 540 - 14% open Β· ⏱️ 11.12.2023): + + ``` + git clone https://github.com/pypa/setuptools_scm + ``` +- [PyPi](https://pypi.org/project/setuptools_scm) (πŸ“₯ 26M / month): + ``` + pip install setuptools_scm + ``` +- [Conda](https://anaconda.org/conda-forge/setuptools_scm) (πŸ“₯ 2.1M Β· ⏱️ 04.10.2023): + ``` + conda install -c conda-forge setuptools_scm + ``` +
+
flit (πŸ₯‰30 Β· ⭐ 2K) - Simplified packaging of Python modules. BSD-3 + +- [GitHub](https://github.com/pypa/flit) (πŸ‘¨β€πŸ’» 70 Β· πŸ”€ 120 Β· πŸ“¦ 1.7K Β· πŸ“‹ 380 - 28% open Β· ⏱️ 09.12.2023): ``` git clone https://github.com/pypa/flit ``` -- [PyPi](https://pypi.org/project/flit) (πŸ“₯ 430K / month Β· πŸ“¦ 500 Β· ⏱️ 14.05.2023): +- [PyPi](https://pypi.org/project/flit) (πŸ“₯ 340K / month): ``` pip install flit ``` @@ -2909,14 +2722,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge flit ```
-
pybuilder (πŸ₯‰29 Β· ⭐ 1.6K) - Software build automation tool for Python. Apache-2 +
pybuilder (πŸ₯‰26 Β· ⭐ 1.6K) - Software build automation tool for Python. Apache-2 -- [GitHub](https://github.com/pybuilder/pybuilder) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 260 Β· πŸ“‹ 520 - 18% open Β· ⏱️ 10.07.2023): +- [GitHub](https://github.com/pybuilder/pybuilder) (πŸ‘¨β€πŸ’» 39 Β· πŸ”€ 240 Β· πŸ“‹ 510 - 17% open Β· ⏱️ 10.07.2023): ``` git clone https://github.com/pybuilder/pybuilder ``` -- [PyPi](https://pypi.org/project/pybuilder) (πŸ“₯ 27K / month Β· πŸ“¦ 60 Β· ⏱️ 10.07.2023): +- [PyPi](https://pypi.org/project/pybuilder) (πŸ“₯ 26K / month): ``` pip install pybuilder ``` @@ -2932,7 +2745,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/paver/paver ``` -- [PyPi](https://pypi.org/project/paver) (πŸ“₯ 54K / month Β· πŸ“¦ 960 Β· ⏱️ 31.12.2017): +- [PyPi](https://pypi.org/project/paver) (πŸ“₯ 53K / month Β· πŸ“¦ 960 Β· ⏱️ 31.12.2017): ``` pip install paver ``` @@ -2941,14 +2754,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge paver ```
-
universal-build (πŸ₯‰14 Β· ⭐ 20 Β· πŸ’€) - Universal build utilities for containerized build pipelines. MIT +
universal-build (πŸ₯‰13 Β· ⭐ 20 Β· πŸ’€) - 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) (πŸ“₯ 150 / month Β· πŸ“¦ 7 Β· ⏱️ 16.11.2021): +- [PyPi](https://pypi.org/project/universal-build) (πŸ“₯ 120 / month): ``` pip install universal-build ``` @@ -2966,12 +2779,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
psutil (πŸ₯‡45 Β· ⭐ 9.7K) - Cross-platform lib for process and system monitoring in Python. BSD-3 -- [GitHub](https://github.com/giampaolo/psutil) (πŸ‘¨β€πŸ’» 200 Β· πŸ”€ 1.4K Β· πŸ“¦ 400K Β· πŸ“‹ 1.7K - 17% open Β· ⏱️ 29.11.2023): +- [GitHub](https://github.com/giampaolo/psutil) (πŸ‘¨β€πŸ’» 200 Β· πŸ”€ 1.4K Β· πŸ“¦ 410K Β· πŸ“‹ 1.7K - 16% open Β· ⏱️ 29.11.2023): ``` git clone https://github.com/giampaolo/psutil ``` -- [PyPi](https://pypi.org/project/psutil) (πŸ“₯ 86M / month Β· πŸ“¦ 18K Β· ⏱️ 15.10.2023): +- [PyPi](https://pypi.org/project/psutil) (πŸ“₯ 83M / month Β· πŸ“¦ 18K Β· ⏱️ 15.10.2023): ``` pip install psutil ``` @@ -2980,30 +2793,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge psutil ```
-
Glances (πŸ₯‡35 Β· ⭐ 24K) - Glances an Eye on your system. A top/htop alternative for.. ❗️LGPL-3.0 - -- [GitHub](https://github.com/nicolargo/glances) (πŸ‘¨β€πŸ’» 180 Β· πŸ”€ 1.4K Β· πŸ“₯ 1.6K Β· πŸ“¦ 760 Β· πŸ“‹ 1.7K - 13% open Β· ⏱️ 11.11.2023): - - ``` - git clone https://github.com/nicolargo/glances - ``` -- [PyPi](https://pypi.org/project/glances) (πŸ“₯ 170K / month Β· πŸ“¦ 51 Β· ⏱️ 20.05.2023): - ``` - pip install glances - ``` -- [Conda](https://anaconda.org/conda-forge/glances) (πŸ“₯ 210K Β· ⏱️ 05.06.2023): - ``` - conda install -c conda-forge glances - ``` -
memray (πŸ₯ˆ33 Β· ⭐ 12K) - The endgame Python memory profiler. Apache-2 -- [GitHub](https://github.com/bloomberg/memray) (πŸ‘¨β€πŸ’» 41 Β· πŸ”€ 380 Β· πŸ“¦ 250 Β· πŸ“‹ 140 - 11% open Β· ⏱️ 04.12.2023): +- [GitHub](https://github.com/bloomberg/memray) (πŸ‘¨β€πŸ’» 42 Β· πŸ”€ 380 Β· πŸ“¦ 260 Β· πŸ“‹ 140 - 11% open Β· ⏱️ 08.12.2023): ``` git clone https://github.com/bloomberg/memray ``` -- [PyPi](https://pypi.org/project/memray) (πŸ“₯ 330K / month Β· πŸ“¦ 17 Β· ⏱️ 04.12.2023): +- [PyPi](https://pypi.org/project/memray) (πŸ“₯ 360K / month): ``` pip install memray ``` @@ -3014,12 +2811,12 @@ This curated list contains 270 awesome open-source projects with a total of 900K
py-spy (πŸ₯ˆ32 Β· ⭐ 11K) - Sampling profiler for Python programs. MIT -- [GitHub](https://github.com/benfred/py-spy) (πŸ‘¨β€πŸ’» 37 Β· πŸ”€ 380 Β· πŸ“₯ 15K Β· πŸ“¦ 3.3K Β· πŸ“‹ 330 - 41% open Β· ⏱️ 17.11.2023): +- [GitHub](https://github.com/benfred/py-spy) (πŸ‘¨β€πŸ’» 37 Β· πŸ”€ 380 Β· πŸ“₯ 15K Β· πŸ“¦ 3.4K Β· πŸ“‹ 330 - 41% open Β· ⏱️ 17.11.2023): ``` git clone https://github.com/benfred/py-spy ``` -- [PyPi](https://pypi.org/project/py-spy) (πŸ“₯ 2.3M / month Β· πŸ“¦ 49 Β· ⏱️ 07.09.2022): +- [PyPi](https://pypi.org/project/py-spy) (πŸ“₯ 2.4M / month): ``` pip install py-spy ``` @@ -3027,19 +2824,19 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` conda install -c conda-forge py-spy ``` -- [Cargo](https://crates.io/crates/py-spy) (πŸ“₯ 280 / month Β· πŸ“¦ 1 Β· ⏱️ 07.09.2022): +- [Cargo](https://crates.io/crates/py-spy) (πŸ“₯ 270 / month): ``` cargo install py-spy ```
pyinstrument (πŸ₯ˆ32 Β· ⭐ 5.7K) - Call stack profiler for Python. Shows you why your code is slow!. BSD-3 -- [GitHub](https://github.com/joerick/pyinstrument) (πŸ‘¨β€πŸ’» 55 Β· πŸ”€ 230 Β· πŸ“¦ 1.9K Β· πŸ“‹ 130 - 15% open Β· ⏱️ 26.11.2023): +- [GitHub](https://github.com/joerick/pyinstrument) (πŸ‘¨β€πŸ’» 55 Β· πŸ”€ 210 Β· πŸ“¦ 1.9K Β· πŸ“‹ 130 - 13% open Β· ⏱️ 26.11.2023): ``` git clone https://github.com/joerick/pyinstrument ``` -- [PyPi](https://pypi.org/project/pyinstrument) (πŸ“₯ 700K / month Β· πŸ“¦ 120 Β· ⏱️ 08.11.2023): +- [PyPi](https://pypi.org/project/pyinstrument) (πŸ“₯ 700K / month): ``` pip install pyinstrument ``` @@ -3050,24 +2847,24 @@ This curated list contains 270 awesome open-source projects with a total of 900K
Scalene (πŸ₯ˆ31 Β· ⭐ 10K) - Scalene: a high-performance, high-precision CPU, GPU, and memory.. Apache-2 -- [GitHub](https://github.com/plasma-umass/scalene) (πŸ‘¨β€πŸ’» 44 Β· πŸ”€ 340 Β· πŸ“¦ 560 Β· πŸ“‹ 410 - 36% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/plasma-umass/scalene) (πŸ‘¨β€πŸ’» 44 Β· πŸ”€ 340 Β· πŸ“¦ 560 Β· πŸ“‹ 410 - 36% open Β· ⏱️ 10.12.2023): ``` git clone https://github.com/plasma-umass/scalene ``` -- [PyPi](https://pypi.org/project/scalene) (πŸ“₯ 25K / month Β· πŸ“¦ 6 Β· ⏱️ 15.09.2023): +- [PyPi](https://pypi.org/project/scalene) (πŸ“₯ 26K / month): ``` pip install scalene ```
-
Yappi (πŸ₯ˆ30 Β· ⭐ 1.3K Β· πŸ“ˆ) - Yet Another Python Profiler, but this time multithreading, asyncio and.. MIT +
Yappi (πŸ₯ˆ30 Β· ⭐ 1.3K) - Yet Another Python Profiler, but this time multithreading, asyncio and.. MIT -- [GitHub](https://github.com/sumerc/yappi) (πŸ‘¨β€πŸ’» 31 Β· πŸ”€ 71 Β· πŸ“¦ 1.1K Β· πŸ“‹ 80 - 25% open Β· ⏱️ 07.12.2023): +- [GitHub](https://github.com/sumerc/yappi) (πŸ‘¨β€πŸ’» 31 Β· πŸ”€ 70 Β· πŸ“¦ 1.1K Β· πŸ“‹ 73 - 17% open Β· ⏱️ 07.12.2023): ``` git clone https://github.com/sumerc/yappi ``` -- [PyPi](https://pypi.org/project/yappi) (πŸ“₯ 1.8M / month Β· πŸ“¦ 350 Β· ⏱️ 07.12.2023): +- [PyPi](https://pypi.org/project/yappi) (πŸ“₯ 1.9M / month): ``` pip install yappi ``` @@ -3083,7 +2880,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K ``` git clone https://github.com/pythonprofilers/memory_profiler ``` -- [PyPi](https://pypi.org/project/memory_profiler) (πŸ“₯ 990K / month Β· πŸ“¦ 250 Β· ⏱️ 15.11.2022): +- [PyPi](https://pypi.org/project/memory_profiler) (πŸ“₯ 980K / month Β· πŸ“¦ 250 Β· ⏱️ 15.11.2022): ``` pip install memory_profiler ``` @@ -3092,43 +2889,29 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge memory_profiler ```
-
line_profiler (πŸ₯‰27 Β· ⭐ 2.2K) - Line-by-line profiling for Python. BSD-3 +
Diamond (πŸ₯‰25 Β· ⭐ 1.7K) - Diamond is a python daemon that collects system metrics and publishes.. MIT -- [GitHub](https://github.com/pyutils/line_profiler) (πŸ‘¨β€πŸ’» 43 Β· πŸ”€ 110 Β· πŸ“‹ 93 - 44% open Β· ⏱️ 05.12.2023): - - ``` - git clone https://github.com/pyutils/line_profiler - ``` -- [PyPi](https://pypi.org/project/line_profiler) (πŸ“₯ 320K / month Β· πŸ“¦ 100 Β· ⏱️ 03.11.2023): - ``` - pip install line_profiler - ``` -- [Conda](https://anaconda.org/conda-forge/line_profiler) (πŸ“₯ 450K Β· ⏱️ 27.09.2023): - ``` - conda install -c conda-forge line_profiler - ``` -
-
Diamond (πŸ₯‰27 Β· ⭐ 1.7K) - Diamond is a python daemon that collects system metrics and publishes.. MIT - -- [GitHub](https://github.com/python-diamond/Diamond) (πŸ‘¨β€πŸ’» 390 Β· πŸ”€ 600 Β· πŸ“¦ 160 Β· πŸ“‹ 300 - 44% open Β· ⏱️ 01.11.2023): +- [GitHub](https://github.com/python-diamond/Diamond) (πŸ‘¨β€πŸ’» 390 Β· πŸ”€ 570 Β· πŸ“¦ 160 Β· πŸ“‹ 240 - 27% open Β· ⏱️ 01.11.2023): ``` git clone https://github.com/python-diamond/Diamond ``` -- [PyPi](https://pypi.org/project/diamond) (πŸ“₯ 7.3K / month Β· πŸ“¦ 34 Β· ⏱️ 25.11.2016): +- [PyPi](https://pypi.org/project/diamond) (πŸ“₯ 7.1K / month): ``` pip install diamond ```
-
Show 8 hidden projects... +
Show 10 hidden projects... +- Glances (πŸ₯‡34 Β· ⭐ 24K) - Glances an Eye on your system. A top/htop alternative for.. ❗Unlicensed - Bpytop (πŸ₯‰28 Β· ⭐ 9.7K Β· πŸ’€) - Linux/OSX/FreeBSD resource monitor. Apache-2 - pympler (πŸ₯‰27 Β· ⭐ 1.1K Β· πŸ’€) - Development tool to measure, monitor and analyze the memory.. Apache-2 -- memory_profiler (πŸ₯‰26 Β· ⭐ 4K Β· πŸ’€) - Monitor Memory usage of Python code. BSD-3 -- vprof (πŸ₯‰23 Β· ⭐ 3.9K Β· πŸ’€) - Visual profiler for Python. BSD-2 +- vprof (πŸ₯‰22 Β· ⭐ 3.9K Β· πŸ’€) - Visual profiler for Python. BSD-2 +- line_profiler (πŸ₯‰22 Β· ⭐ 2.3K) - Line-by-line profiling for Python. ❗Unlicensed - Profiling (πŸ₯‰21 Β· ⭐ 3K Β· πŸ’€) - Was an interactive continuous Python profiler. BSD-3 - heartrate (πŸ₯‰19 Β· ⭐ 1.7K Β· πŸ’€) - Simple real time visualisation of the execution of a Python program. MIT -- pyheat (πŸ₯‰18 Β· ⭐ 770 Β· πŸ’€) - pprofile + matplotlib = Python program profiled as an awesome heatmap!. MIT +- pyheat (πŸ₯‰16 Β· ⭐ 770 Β· πŸ’€) - pprofile + matplotlib = Python program profiled as an awesome heatmap!. MIT +- memory_profiler (πŸ₯‰15 Β· ⭐ 85 Β· πŸ’€) - Monitor Memory usage of Python code. ❗Unlicensed - livepython (πŸ₯‰12 Β· ⭐ 2.6K Β· πŸ’€) - Visually trace Python code in real-time. MIT

@@ -3137,14 +2920,14 @@ This curated list contains 270 awesome open-source projects with a total of 900K Back to top -
executing (πŸ₯‡32 Β· ⭐ 280) - Get information about what a Python frame is currently doing,.. MIT +
executing (πŸ₯‡31 Β· ⭐ 280) - Get information about what a Python frame is currently doing,.. MIT -- [GitHub](https://github.com/alexmojaki/executing) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 29 Β· πŸ“¦ 130K Β· πŸ“‹ 40 - 37% open Β· ⏱️ 06.11.2023): +- [GitHub](https://github.com/alexmojaki/executing) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 29 Β· πŸ“¦ 130K Β· πŸ“‹ 36 - 30% open Β· ⏱️ 06.11.2023): ``` git clone https://github.com/alexmojaki/executing ``` -- [PyPi](https://pypi.org/project/executing) (πŸ“₯ 21M / month Β· πŸ“¦ 200 Β· ⏱️ 29.10.2023): +- [PyPi](https://pypi.org/project/executing) (πŸ“₯ 21M / month): ``` pip install executing ``` @@ -3153,22 +2936,6 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge executing ```
-
typed_ast (πŸ₯ˆ29 Β· ⭐ 220) - Modified fork of CPythons ast module that parses `# type:` comments. Apache-2 - -- [GitHub](https://github.com/python/typed_ast) (πŸ‘¨β€πŸ’» 26 Β· πŸ”€ 56 Β· πŸ“‹ 87 - 1% open Β· ⏱️ 03.07.2023): - - ``` - git clone https://github.com/python/typed_ast - ``` -- [PyPi](https://pypi.org/project/typed_ast) (πŸ“₯ 7.5M / month Β· πŸ“¦ 5.5K Β· ⏱️ 04.07.2023): - ``` - pip install typed_ast - ``` -- [Conda](https://anaconda.org/conda-forge/typed-ast) (πŸ“₯ 6.2M Β· ⏱️ 22.09.2023): - ``` - conda install -c conda-forge typed-ast - ``` -
astor (πŸ₯ˆ28 Β· ⭐ 750) - Python AST read/write. BSD-3 - [GitHub](https://github.com/berkerpeksag/astor) (πŸ‘¨β€πŸ’» 33 Β· πŸ”€ 98 Β· πŸ“‹ 120 - 33% open Β· ⏱️ 06.09.2023): @@ -3187,7 +2954,7 @@ This curated list contains 270 awesome open-source projects with a total of 900K
gast (πŸ₯ˆ28 Β· ⭐ 130) - Python AST that abstracts the underlying Python version. BSD-3 -- [GitHub](https://github.com/serge-sans-paille/gast) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 31 Β· πŸ“¦ 140K Β· πŸ“‹ 34 - 5% open Β· ⏱️ 15.11.2023): +- [GitHub](https://github.com/serge-sans-paille/gast) (πŸ‘¨β€πŸ’» 10 Β· πŸ”€ 31 Β· πŸ“¦ 140K Β· πŸ“‹ 35 - 8% open Β· ⏱️ 15.11.2023): ``` git clone https://github.com/serge-sans-paille/gast @@ -3217,9 +2984,10 @@ This curated list contains 270 awesome open-source projects with a total of 900K conda install -c conda-forge asteval ```
-
Show 1 hidden projects... +
Show 2 hidden projects... - astunparse (πŸ₯ˆ28 Β· ⭐ 210 Β· πŸ’€) - An AST unparser for Python. BSD-3 +- typed_ast (πŸ₯‰19 Β· ⭐ 220 Β· πŸ“‰) - Modified fork of CPythons ast module that parses `# type:`.. ❗Unlicensed

@@ -3229,16 +2997,16 @@ This curated list contains 270 awesome open-source projects with a total of 900K
pre-commit (πŸ₯‡41 Β· ⭐ 11K) - A framework for managing and maintaining multi-language pre-commit.. MIT -- [GitHub](https://github.com/pre-commit/pre-commit) (πŸ‘¨β€πŸ’» 150 Β· πŸ”€ 760 Β· πŸ“₯ 800K Β· πŸ“¦ 160K Β· πŸ“‹ 1.9K - 1% open Β· ⏱️ 27.11.2023): +- [GitHub](https://github.com/pre-commit/pre-commit) (πŸ‘¨β€πŸ’» 160 Β· πŸ”€ 780 Β· πŸ“₯ 820K Β· πŸ“¦ 160K Β· πŸ“‹ 1.9K - 1% open Β· ⏱️ 09.12.2023): ``` git clone https://github.com/pre-commit/pre-commit ``` -- [PyPi](https://pypi.org/project/pre-commit) (πŸ“₯ 15M / month Β· πŸ“¦ 6.5K Β· ⏱️ 13.10.2023): +- [PyPi](https://pypi.org/project/pre-commit) (πŸ“₯ 16M / month Β· πŸ“¦ 6.6K Β· ⏱️ 09.12.2023): ``` pip install pre-commit ``` -- [Conda](https://anaconda.org/conda-forge/pre-commit) (πŸ“₯ 4M Β· ⏱️ 13.10.2023): +- [Conda](https://anaconda.org/conda-forge/pre-commit) (πŸ“₯ 4M Β· ⏱️ 10.12.2023): ``` conda install -c conda-forge pre-commit ``` diff --git a/history/2023-12-14_changes.md b/history/2023-12-14_changes.md new file mode 100644 index 0000000..9431614 --- /dev/null +++ b/history/2023-12-14_changes.md @@ -0,0 +1,20 @@ +## πŸ“ˆ Trending Up + +_Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ + +- isort (πŸ₯ˆ42 Β· ⭐ 6.2K Β· πŸ“ˆ) - A Python utility / library to sort imports. MIT +- bandit (πŸ₯‡38 Β· ⭐ 5.7K Β· πŸ“ˆ) - Bandit is a tool designed to find common security issues in.. Apache-2 +- twine (πŸ₯‡37 Β· ⭐ 1.5K Β· πŸ“ˆ) - Utilities for interacting with PyPI. Apache-2 +- python-json-logger (πŸ₯ˆ34 Β· ⭐ 1.6K Β· πŸ’€) - Json Formatter for the standard python logger. BSD-2 +- mamba (πŸ₯‰30 Β· ⭐ 5.6K Β· πŸ“ˆ) - The Fast Cross-Platform Package Manager. BSD-3 + +## πŸ“‰ Trending Down + +_Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ + +- freezegun (πŸ₯ˆ29 Β· ⭐ 3.9K Β· πŸ“‰) - Let your Python tests travel through time. Apache-2 +- pytype (πŸ₯‰27 Β· ⭐ 4.4K Β· πŸ“‰) - A static type analyzer for Python code. ❗Unlicensed +- hacking (πŸ₯‰20 Β· ⭐ 230 Β· πŸ“‰) - OpenStack Hacking Style Checks. Mirror of code maintained at.. Apache-2 +- typed_ast (πŸ₯‰19 Β· ⭐ 220 Β· πŸ“‰) - Modified fork of CPythons ast module that parses `# type:`.. ❗Unlicensed +- memory_profiler (πŸ₯‰15 Β· ⭐ 85 Β· πŸ’€) - Monitor Memory usage of Python code. ❗Unlicensed + diff --git a/history/2023-12-14_projects.csv b/history/2023-12-14_projects.csv new file mode 100644 index 0000000..847b5cd --- /dev/null +++ b/history/2023-12-14_projects.csv @@ -0,0 +1,269 @@ +,name,github_id,category,description,resource,github_url,homepage,license,created_at,updated_at,last_commit_pushed_at,commit_count,recent_commit_count,fork_count,watchers_count,pr_count,open_issue_count,closed_issue_count,star_count,latest_stable_release_published_at,latest_stable_release_number,release_count,contributor_count,projectrank,show,updated_github_id,pypi_id,conda_id,labels,dependent_project_count,github_dependent_project_count,pypi_url,pypi_latest_release_published_at,pypi_dependent_project_count,pypi_monthly_downloads,monthly_downloads,conda_url,conda_latest_release_published_at,conda_total_downloads,projectrank_placing,github_release_downloads,dockerhub_id,dockerhub_url,dockerhub_latest_release_published_at,dockerhub_stars,dockerhub_pulls,trending,npm_id,npm_url,npm_latest_release_published_at,npm_dependent_project_count,npm_monthly_downloads,cargo_id,cargo_url,cargo_monthly_downloads,cargo_total_downloads,conda_forge +0,best-of-web-python - Testing,ml-tooling/best-of-web-python,testing,Testing libraries & tools for python web frameworks.,True,https://github.com/ml-tooling/best-of-web-python,https://github.com/ml-tooling/best-of-web-python,CC-BY-SA-4.0,2021-01-05 13:09:27.000,2023-12-07 16:55:28.000,2023-12-07 16:55:27,290.0,23.0,153.0,52.0,173.0,1.0,2.0,2076.0,2023-12-07 16:55:34.000,2023.12.07,100.0,13.0,0,True,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1,best-of-mkdocs,pawamoy/best-of-mkdocs,documentation,Collection of MkDocs projects and plugins.,True,https://github.com/mkdocs/catalog,https://github.com/mkdocs/catalog,CC-BY-SA-4.0,2022-04-17 07:48:22.000,2023-12-13 22:55:25.000,2023-12-13 22:55:25,239.0,36.0,33.0,12.0,155.0,3.0,13.0,577.0,2023-06-29 18:48:34.000,2023.06.29,68.0,22.0,0,True,mkdocs/catalog,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2,Python.org Packaging,,packaging,An Overview of Packaging for Python.,True,,https://packaging.python.org/overview/,,,,,,,,,,,,,,,,,0,True,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3,unittest,,testing,Unittest is a test framework included in the Python standard library.,True,,https://docs.python.org/3/library/unittest.html,,,,,,,,,,,,,,,,,0,True,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4,pytest,pytest-dev/pytest,testing,"The pytest framework makes it easy to write small tests, yet scales to support complex functional testing.",,https://github.com/pytest-dev/pytest,https://github.com/pytest-dev/pytest,MIT,2015-06-15 20:28:27.000,2023-12-14 11:19:42.000,2023-12-14 11:14:36,15461.0,132.0,2457.0,192.0,5385.0,867.0,4701.0,10889.0,2023-10-24 19:37:45.000,7.4.3,165.0,927.0,47,True,,pytest,conda-forge/pytest,['pytest'],1125753.0,1104806.0,https://pypi.org/project/pytest,2023-10-24 19:23:14.000,20947.0,91576065.0,92201340.0,https://anaconda.org/conda-forge/pytest,2023-10-25 11:38:48.696,23760464.0,1.0,,,,,,,,,,,,,,,,, +5,black,psf/black,formatters,The uncompromising Python code formatter.,,https://github.com/psf/black,https://github.com/psf/black,MIT,2018-03-14 19:54:45.000,2023-12-14 08:28:28.000,2023-12-14 08:28:28,1763.0,113.0,2149.0,227.0,1619.0,345.0,2103.0,35666.0,2023-12-12 06:27:53.000,23.12.0,35.0,426.0,46,True,,black,conda-forge/black,,445580.0,445580.0,https://pypi.org/project/black,,,30575621.0,30795454.0,https://anaconda.org/conda-forge/black,2023-11-30 09:26:46.278,8975473.0,1.0,52448.0,,,,,,,,,,,,,,,, +6,pipenv,pypa/pipenv,virtual-envs,Python Development Workflow for Humans.,,https://github.com/pypa/pipenv,https://github.com/pypa/pipenv,MIT,2017-01-20 00:44:02.000,2023-12-12 10:39:11.000,2023-12-06 07:58:23,8696.0,121.0,1798.0,358.0,1844.0,193.0,3917.0,24310.0,2023-11-15 23:32:06.000,2023.11.15,97.0,492.0,45,True,,pipenv,conda-forge/pipenv,,125217.0,125217.0,https://pypi.org/project/pipenv,,,11658079.0,11661278.0,https://anaconda.org/conda-forge/pipenv,2023-11-16 13:48:37.531,137559.0,1.0,,,,,,,,,,,,,,,,, +7,mypy,python/mypy,type-checkers,Optional static typing for Python.,,https://github.com/python/mypy,https://github.com/python/mypy,MIT,2012-12-07 13:30:23.000,2023-12-13 21:45:14.000,2023-12-13 21:28:12,11666.0,166.0,2732.0,234.0,6753.0,2520.0,7443.0,16903.0,2023-11-23 17:58:45.000,1.7.1,112.0,684.0,45,True,,mypy,conda-forge/mypy,,227346.0,217533.0,https://pypi.org/project/mypy,2023-11-23 17:58:45.000,9813.0,20300577.0,20386989.0,https://anaconda.org/conda-forge/mypy,2023-12-11 12:31:59.477,3629309.0,1.0,,,,,,,,,,,,,,,,, +8,psutil,giampaolo/psutil,profiling,Cross-platform lib for process and system monitoring in Python.,,https://github.com/giampaolo/psutil,https://github.com/giampaolo/psutil,BSD-3-Clause,2014-05-23 14:01:48.000,2023-11-29 08:06:41.000,2023-11-29 08:06:41,5984.0,22.0,1406.0,235.0,658.0,289.0,1412.0,9684.0,2023-10-15 09:08:50.000,5.9.6,91.0,199.0,45,True,,psutil,conda-forge/psutil,,425062.0,407300.0,https://pypi.org/project/psutil,2023-10-15 09:08:50.000,17762.0,83197367.0,83870188.0,https://anaconda.org/conda-forge/psutil,2023-09-22 07:35:14.305,27585665.0,1.0,,,,,,,,,,,,,,,,, +9,pip,pypa/pip,dependency-managers,The Python package installer.,,https://github.com/pypa/pip,https://github.com/pypa/pip,MIT,2011-03-06 14:30:46.000,2023-12-14 13:17:57.000,2023-11-28 07:08:29,14202.0,79.0,2822.0,316.0,5345.0,964.0,6062.0,9051.0,,,67.0,756.0,45,True,,pip,conda-forge/pip,,164066.0,164066.0,https://pypi.org/project/pip,,,191919620.0,194197059.0,https://anaconda.org/conda-forge/pip,2023-10-21 14:02:44.666,97929898.0,1.0,,,,,,,,,,,,,,,,, +10,setuptools,pypa/setuptools,build-tools,Official project repository for the Setuptools build system.,,https://github.com/pypa/setuptools,https://github.com/pypa/setuptools,MIT,2016-03-29 14:02:33.000,2023-12-13 16:04:18.000,2023-12-06 01:19:50,14301.0,151.0,989.0,93.0,1474.0,570.0,1824.0,2198.0,2023-11-21 19:01:21.000,69.0.2,199.0,586.0,45,True,,setuptools,conda-forge/setuptools,,437566.0,437566.0,https://pypi.org/project/setuptools,,,346338837.0,348633215.0,https://anaconda.org/conda-forge/setuptools,2023-09-12 19:55:09.802,98658270.0,1.0,,,,,,,,,,,,,,,,, +11,sphinx,sphinx-doc/sphinx,documentation,The Sphinx documentation generator.,,https://github.com/sphinx-doc/sphinx,https://github.com/sphinx-doc/sphinx,BSD-3-Clause,2015-01-02 10:53:28.000,2023-12-12 12:50:56.000,2023-11-15 22:14:14,20450.0,46.0,1977.0,148.0,5070.0,1207.0,5510.0,5810.0,2023-09-13 23:13:23.000,7.2.6,198.0,790.0,44,True,,sphinx,conda-forge/sphinx,['sphinx'],410589.0,347002.0,https://pypi.org/project/sphinx,2023-09-13 23:13:23.000,63587.0,13439877.0,13639633.0,https://anaconda.org/conda-forge/sphinx,2023-09-13 23:26:46.261,8589548.0,1.0,,,,,,,,,,,,,,,,, +12,rich,Textualize/rich,logging,Rich is a Python library for rich text and beautiful formatting in the terminal.,,https://github.com/Textualize/rich,https://github.com/Textualize/rich,MIT,2019-11-10 15:28:09.000,2023-12-14 13:58:27.000,2023-11-15 16:31:56,3870.0,35.0,1675.0,543.0,1053.0,197.0,1057.0,45779.0,2023-11-15 16:33:44.000,13.7.0,190.0,235.0,43,True,,rich,conda-forge/rich,,154603.0,148877.0,https://pypi.org/project/rich,2023-11-15 16:32:11.000,5726.0,38387490.0,38529220.0,https://anaconda.org/conda-forge/rich,2023-11-16 18:47:06.251,5810969.0,1.0,,,,,,,,,,,,,,,,, +13,ruff,charliermarsh/ruff,linters,"An extremely fast Python linter and code formatter, written in Rust.",,https://github.com/astral-sh/ruff,https://github.com/astral-sh/ruff,MIT,2022-08-09 17:17:44.000,2023-12-14 13:11:14.000,2023-12-14 06:02:53,5870.0,858.0,703.0,69.0,5440.0,605.0,2896.0,21310.0,2023-12-13 19:15:17.000,0.1.8,275.0,331.0,43,True,astral-sh/ruff,ruff,conda-forge/ruff,,27603.0,25793.0,https://pypi.org/project/ruff,2023-12-13 18:42:28.000,1810.0,8217997.0,8261739.0,https://anaconda.org/conda-forge/ruff,2023-12-14 04:16:14.191,444689.0,1.0,114441.0,,,,,,,,,,,,,,,, +14,mkdocs-material,squidfunk/mkdocs-material,documentation,Documentation that simply works.,,https://github.com/squidfunk/mkdocs-material,https://github.com/squidfunk/mkdocs-material,MIT,2016-01-28 22:09:23.000,2023-12-14 08:23:29.000,2023-12-14 08:23:29,5943.0,335.0,3218.0,123.0,2684.0,34.0,2116.0,16573.0,2023-12-11 15:22:25.000,9.5.2,362.0,245.0,43,True,,mkdocs-material,conda-forge/mkdocs-material,['mkdocs'],41670.0,40570.0,https://pypi.org/project/mkdocs-material,2023-12-11 15:22:25.000,1100.0,3527178.0,3535061.0,https://anaconda.org/conda-forge/mkdocs-material,2023-12-11 17:43:09.512,338970.0,1.0,,,,,,,,,,,,,,,,, +15,robotframework,robotframework/robotframework,testing,Generic automation framework for acceptance testing and RPA.,,https://github.com/robotframework/robotframework,https://github.com/robotframework/robotframework,Apache-2.0,2014-06-27 11:10:38.000,2023-12-14 13:04:00.000,2023-12-14 13:02:39,14433.0,248.0,2208.0,480.0,690.0,307.0,4006.0,8568.0,2023-07-28 19:29:00.000,6.1.1,122.0,191.0,43,True,,robotframework,conda-forge/robotframework,,10539.0,9414.0,https://pypi.org/project/robotframework,2023-11-22 20:52:36.000,1125.0,1882599.0,1887644.0,https://anaconda.org/conda-forge/robotframework,2023-10-10 22:35:13.903,166340.0,1.0,554.0,,,,,,,,,,,,,,,, +16,conda,conda/conda,dependency-managers,"A system-level, binary package and environment manager running on all major operating systems and platforms.",,https://github.com/conda/conda,https://github.com/conda/conda,BSD-3-Clause,2012-10-15 22:08:03.000,2023-12-14 13:46:33.000,2023-12-14 01:25:23,16644.0,137.0,1432.0,196.0,3998.0,736.0,8698.0,5872.0,2023-12-01 04:46:19.000,23.11.0,100.0,447.0,43,True,,conda,conda-forge/conda,,45701.0,44605.0,https://pypi.org/project/conda,2017-04-22 23:43:59.218,1096.0,106939.0,1232238.0,https://anaconda.org/conda-forge/conda,2023-12-04 23:31:22.998,48387893.0,1.0,,,,,,,,,,,,,,,,, +17,jedi,davidhalter/jedi,refactoring,"Awesome autocompletion, static analysis and refactoring library for python.",,https://github.com/davidhalter/jedi,https://github.com/davidhalter/jedi,MIT,2012-02-19 23:12:30.000,2023-12-02 18:44:21.000,2023-10-04 07:41:55,8402.0,16.0,502.0,114.0,591.0,53.0,1324.0,5570.0,2023-10-02 09:20:35.000,0.19.1,34.0,165.0,43,True,,jedi,conda-forge/jedi,,383924.0,375413.0,https://pypi.org/project/jedi,2023-10-02 09:20:35.000,8511.0,30264520.0,30743934.0,https://anaconda.org/conda-forge/jedi,2023-10-03 09:44:27.309,20135402.0,1.0,,,,,,,,,,,,,,,,, +18,tqdm,tqdm/tqdm,logging,"A Fast, Extensible Progress Bar for Python and CLI.",,https://github.com/tqdm/tqdm,https://github.com/tqdm/tqdm,MPL-2.0,2015-06-03 13:13:14.000,2023-11-30 19:24:17.000,2023-08-10 10:52:15,1964.0,,1319.0,208.0,536.0,464.0,577.0,26486.0,2023-08-10 11:59:02.000,4.66.1,108.0,112.0,42,True,,tqdm,conda-forge/tqdm,,607470.0,607470.0,https://pypi.org/project/tqdm,,,82853297.0,83430371.0,https://anaconda.org/conda-forge/tqdm,2023-08-10 12:44:00.709,24229622.0,1.0,11611.0,tqdm/tqdm,https://hub.docker.com/r/tqdm/tqdm,2023-08-26 01:32:37.879259,2.0,4130.0,,,,,,,,,,, +19,mkdocs,mkdocs/mkdocs,documentation,Project documentation with Markdown.,,https://github.com/mkdocs/mkdocs,https://github.com/mkdocs/mkdocs,BSD-2-Clause,2014-01-11 21:05:21.000,2023-12-12 12:59:06.000,2023-12-11 22:49:10,2023.0,63.0,2311.0,230.0,1232.0,129.0,1786.0,17572.0,2023-09-18 21:27:59.000,1.5.3,60.0,246.0,42,True,,mkdocs,conda-forge/mkdocs,['mkdocs'],58200.0,53529.0,https://pypi.org/project/mkdocs,2023-09-18 21:26:09.000,4671.0,2494304.0,2504629.0,https://anaconda.org/conda-forge/mkdocs,2023-09-19 01:25:40.888,309762.0,1.0,,,,,,,,,,,,,,,,, +20,pyinstaller,pyinstaller/pyinstaller,packaging,Freeze (package) Python programs into stand-alone executables.,,https://github.com/pyinstaller/pyinstaller,https://github.com/pyinstaller/pyinstaller,GPL-2.0,2011-11-23 11:05:56.000,2023-12-11 12:02:08.120,2023-12-10 23:43:38,9085.0,129.0,1794.0,231.0,2301.0,266.0,4849.0,10876.0,2023-12-10 23:44:46.000,6.3.0,60.0,461.0,42,True,,pyinstaller,conda-forge/pyinstaller,,51825.0,51825.0,https://pypi.org/project/pyinstaller,,,1909175.0,1929829.0,https://anaconda.org/conda-forge/pyinstaller,2023-12-11 12:02:08.120,511520.0,1.0,742982.0,,,,,,,,,,,,,,,, +21,hypothesis,HypothesisWorks/hypothesis,testing,"Hypothesis is a powerful, flexible, and easy to use library for property-based testing.",,https://github.com/HypothesisWorks/hypothesis,https://github.com/HypothesisWorks/hypothesis,MPL-2.0,2013-03-10 13:51:19.000,2023-12-11 04:11:43.000,2023-12-10 02:11:46,13505.0,250.0,586.0,72.0,2345.0,42.0,1420.0,7055.0,2023-12-10 01:22:02.000,6.92.0,1104.0,320.0,42,True,,hypothesis,conda-forge/hypothesis,,26247.0,23892.0,https://pypi.org/project/hypothesis,2023-12-10 01:22:02.000,2355.0,5879909.0,6073381.0,https://anaconda.org/conda-forge/hypothesis,2023-12-10 02:22:42.447,8319336.0,1.0,,,,,,,,,,,,,,,,, +22,isort,PyCQA/isort,formatters,A Python utility / library to sort imports.,,https://github.com/PyCQA/isort,https://github.com/PyCQA/isort,MIT,2013-09-02 22:22:53.000,2023-12-14 01:51:17.173,2023-12-13 20:34:58,4158.0,55.0,533.0,48.0,964.0,165.0,1074.0,6163.0,2023-12-13 20:37:31.000,5.13.2,100.0,294.0,42,True,,isort,conda-forge/isort,,434580.0,434580.0,https://pypi.org/project/isort,,,28010934.0,28146075.0,https://anaconda.org/conda-forge/isort,2023-12-14 01:51:17.173,5540793.0,2.0,,,,,,,2.0,,,,,,,,,, +23,pylint,PyCQA/pylint,linters,Its not just a linter that annoys you!.,,https://github.com/pylint-dev/pylint,https://github.com/pylint-dev/pylint,GPL-2.0,2015-12-09 05:40:02.000,2023-12-13 14:10:40.000,2023-12-13 14:10:39,9028.0,124.0,1057.0,76.0,4039.0,835.0,4422.0,4965.0,2023-12-11 13:20:16.000,3.0.3,183.0,551.0,42,True,pylint-dev/pylint,pylint,conda-forge/pylint,,420220.0,397122.0,https://pypi.org/project/pylint,2023-12-11 13:20:16.000,23098.0,18591386.0,18703575.0,https://anaconda.org/conda-forge/pylint,2023-12-11 15:36:48.979,4711949.0,1.0,,,,,,,,,,,,,,,,, +24,flake8,PyCQA/flake8,linters,Flake8 is a wrapper around these tools: PyFlakes; pycodestyle; Ned Batchelders McCabe script.,,https://github.com/PyCQA/flake8,https://github.com/PyCQA/flake8,MIT,2014-09-13 17:06:24.000,2023-12-05 22:33:10.000,2023-11-27 22:46:49,2433.0,18.0,302.0,37.0,350.0,22.0,1525.0,3119.0,2023-07-29 19:05:02.000,6.1.0,88.0,173.0,42,True,,flake8,conda-forge/flake8,,557810.0,511808.0,https://pypi.org/project/flake8,2023-07-29 19:05:02.000,46002.0,25106758.0,25269020.0,https://anaconda.org/conda-forge/flake8,2023-07-31 20:03:25.549,6977289.0,1.0,,,,,,,,,,,,,,,,, +25,yapf,google/yapf,formatters,A formatter for Python files.,,https://github.com/google/yapf,https://github.com/google/yapf,Apache-2.0,2015-03-18 18:22:31.000,2023-12-11 04:15:31.000,2023-11-08 21:44:38,1336.0,30.0,933.0,214.0,359.0,365.0,462.0,13514.0,2023-09-22 18:40:43.000,0.40.2,74.0,151.0,41,True,,yapf,conda-forge/yapf,,90022.0,87689.0,https://pypi.org/project/yapf,2023-09-22 18:40:43.000,2333.0,4886629.0,4939190.0,https://anaconda.org/conda-forge/yapf,2023-07-26 16:15:22.726,1681980.0,2.0,,,,,,,,,,,,,,,,, +26,pre-commit,pre-commit/pre-commit,others,A framework for managing and maintaining multi-language pre-commit hooks.,,https://github.com/pre-commit/pre-commit,https://github.com/pre-commit/pre-commit,MIT,2014-03-13 00:39:38.000,2023-12-13 19:46:39.000,2023-12-09 21:24:52,2622.0,34.0,781.0,86.0,1151.0,26.0,1895.0,11311.0,2023-12-09 21:29:42.000,3.6.0,188.0,155.0,41,True,,pre-commit,conda-forge/pre-commit,,169999.0,163394.0,https://pypi.org/project/pre-commit,2023-12-09 21:25:28.000,6605.0,15703924.0,15825335.0,https://anaconda.org/conda-forge/pre-commit,2023-12-10 03:04:10.677,3977879.0,1.0,818676.0,,,,,,,,,,,,,,,, +27,virtualenv,pypa/virtualenv,virtual-envs,Virtual Python Environment builder.,,https://github.com/pypa/virtualenv,https://github.com/pypa/virtualenv,MIT,2011-03-06 14:33:27.000,2023-12-09 18:55:22.000,2023-12-09 18:55:21,755.0,24.0,953.0,171.0,1334.0,21.0,1287.0,4600.0,2023-12-01 16:24:25.000,20.25.0,66.0,113.0,41,True,,virtualenv,conda-forge/virtualenv,,344862.0,344862.0,https://pypi.org/project/virtualenv,,,109173251.0,109325262.0,https://anaconda.org/conda-forge/virtualenv,2023-12-01 19:29:52.700,5776418.0,2.0,,,,,,,,,,,,,,,,, +28,tox,tox-dev/tox,testing,Command line driven CI frontend and development task automation tool.,,https://github.com/tox-dev/tox,https://github.com/tox-dev/tox,MIT,2016-09-17 16:54:22.000,2023-12-09 06:01:49.000,2023-12-09 06:01:47,679.0,20.0,500.0,42.0,1373.0,77.0,1589.0,3403.0,2023-11-28 04:14:11.000,4.11.4,209.0,292.0,39,True,,tox,conda-forge/tox,['pytest'],130623.0,108122.0,https://pypi.org/project/tox,2023-11-28 04:14:11.000,22501.0,12897994.0,12917527.0,https://anaconda.org/conda-forge/tox,2023-11-28 16:27:31.374,839926.0,1.0,,,,,,,,,,,,,,,,, +29,pyright,Microsoft/pyright,type-checkers,Static Type Checker for Python.,,https://github.com/microsoft/pyright,https://github.com/microsoft/pyright,MIT,2019-03-12 03:38:46.000,2023-12-14 09:31:32.000,2023-12-14 09:31:32,6948.0,370.0,1241.0,111.0,1046.0,16.0,4909.0,11354.0,2023-12-13 01:20:30.000,1.1.340,424.0,102.0,38,True,,,,,696.0,684.0,,,,,823096.0,,,,2.0,1324.0,,,,,,,pyright,https://www.npmjs.com/package/pyright,2023-12-13 01:12:27.407,12.0,823030.0,,,,, +30,pip-tools,jazzband/pip-tools,dependency-managers,A set of tools to keep your pinned Python dependencies fresh.,,https://github.com/jazzband/pip-tools,https://github.com/jazzband/pip-tools,BSD-3-Clause,2012-09-10 08:50:26.000,2023-12-11 17:37:26.000,2023-11-29 04:14:40,2069.0,28.0,520.0,103.0,982.0,147.0,871.0,7230.0,2023-08-08 23:35:03.000,7.3.0,67.0,199.0,38,True,,pip-tools,conda-forge/pip-tools,,24499.0,24499.0,https://pypi.org/project/pip-tools,,,10221244.0,10224329.0,https://anaconda.org/conda-forge/pip-tools,2023-08-09 01:51:06.267,132669.0,2.0,,,,,,,,,,,,,,,,, +31,bandit,PyCQA/bandit,security,Bandit is a tool designed to find common security issues in Python code.,,https://github.com/PyCQA/bandit,https://github.com/PyCQA/bandit,Apache-2.0,2018-04-26 09:08:12.000,2023-12-13 03:49:47.000,2023-12-13 03:49:47,1331.0,12.0,542.0,67.0,408.0,164.0,461.0,5673.0,2023-12-09 02:50:36.000,1.7.6,13.0,174.0,38,True,,bandit,conda-forge/bandit,,45893.0,45893.0,https://pypi.org/project/bandit,,,3386842.0,3394162.0,https://anaconda.org/conda-forge/bandit,2023-09-25 08:07:42.894,277757.0,1.0,755.0,,,,,,2.0,,,,,,,,,, +32,autopep8,hhatto/autopep8,formatters,A tool that automatically formats Python code to conform to the PEP 8 style guide.,,https://github.com/hhatto/autopep8,https://github.com/hhatto/autopep8,MIT,2010-12-29 20:08:51.000,2023-11-09 19:33:29.000,2023-10-27 07:04:25,2846.0,13.0,298.0,73.0,234.0,122.0,362.0,4458.0,2023-08-26 13:59:08.000,2.0.4,75.0,60.0,38,True,,autopep8,conda-forge/autopep8,,203284.0,197335.0,https://pypi.org/project/autopep8,2023-08-26 13:49:56.000,5949.0,4151547.0,4184405.0,https://anaconda.org/conda-forge/autopep8,2023-08-26 14:51:03.645,1380065.0,3.0,,,,,,,,,,,,,,,,, +33,packaging,pypa/packaging,packaging,Core utilities for Python packages.,,https://github.com/pypa/packaging,https://github.com/pypa/packaging,Apache-2.0,2014-05-15 22:49:43.000,2023-12-13 22:57:17.000,2023-11-21 19:28:41,677.0,14.0,235.0,27.0,405.0,73.0,277.0,550.0,2023-10-01 13:50:29.000,23.2,43.0,102.0,38,True,,packaging,conda-forge/packaging,,1000709.0,980843.0,https://pypi.org/project/packaging,2023-10-01 13:50:03.000,19866.0,254671120.0,255638675.0,https://anaconda.org/conda-forge/packaging,2023-10-01 23:22:47.528,41604302.0,1.0,749.0,,,,,,,,,,,,,,,, +34,poetry,python-poetry/poetry,dependency-managers,Python packaging and dependency management made easy.,,https://github.com/python-poetry/poetry,https://github.com/python-poetry/poetry,MIT,2018-02-28 15:23:47.000,2023-12-13 07:51:24.000,2023-12-11 15:38:33,3025.0,72.0,2049.0,186.0,2595.0,608.0,4814.0,27705.0,2023-11-16 19:09:01.000,1.7.1,100.0,506.0,37,True,,poetry,conda-forge/poetry,,,,https://pypi.org/project/poetry,,,27090824.0,27352684.0,https://anaconda.org/conda-forge/poetry,2023-11-17 02:06:37.060,1081890.0,2.0,15346621.0,,,,,,,,,,,,,,,, +35,loguru,Delgan/loguru,logging,Python logging made (stupidly) simple.,,https://github.com/Delgan/loguru,https://github.com/Delgan/loguru,MIT,2017-08-15 17:22:32.000,2023-12-06 21:36:37.000,2023-12-03 12:59:43,779.0,16.0,648.0,132.0,153.0,134.0,755.0,16884.0,2023-09-11 15:25:24.000,0.7.2,21.0,51.0,37,True,,loguru,conda-forge/loguru,,73108.0,69901.0,https://pypi.org/project/loguru,2023-09-11 15:24:35.000,3207.0,16112307.0,16156493.0,https://anaconda.org/conda-forge/loguru,2023-09-24 09:55:27.841,1900015.0,1.0,,,,,,,,,,,,,,,,, +36,Nuitka,Nuitka/Nuitka,packaging,"Nuitka is a Python compiler written in Python. Its fully compatible with Python 2.6, 2.7, 3.4, 3.5, 3.6, 3.7, 3.8,..",,https://github.com/Nuitka/Nuitka,https://github.com/Nuitka/Nuitka,Apache-2.0,2013-04-23 15:40:33.000,2023-12-14 13:58:23.000,2023-12-14 10:23:40,11738.0,364.0,543.0,134.0,345.0,145.0,1918.0,10129.0,,,190.0,162.0,37,True,,nuitka,conda-forge/nuitka,,1669.0,1669.0,https://pypi.org/project/nuitka,,,97839.0,111845.0,https://anaconda.org/conda-forge/nuitka,2023-12-11 08:20:10.138,602268.0,2.0,,,,,,,,,,,,,,,,, +37,pycodestyle,PyCQA/pycodestyle,linters,Simple Python style checker in one Python file.,,https://github.com/PyCQA/pycodestyle,https://github.com/PyCQA/pycodestyle,MIT,2009-10-02 00:43:37.000,2023-12-07 12:16:21.000,2023-11-21 11:53:20,1442.0,13.0,801.0,117.0,496.0,109.0,630.0,4933.0,2023-10-12 23:39:38.000,2.11.1,19.0,133.0,37,True,,pycodestyle,conda-forge/pycodestyle,,11683.0,20.0,https://pypi.org/project/pycodestyle,2023-10-12 23:39:38.000,11663.0,34699724.0,34919597.0,https://anaconda.org/conda-forge/pycodestyle,2023-10-13 13:17:36.027,7255834.0,1.0,,,,,,,,,,,,,,,,, +38,sphinx_rtd_theme,readthedocs/sphinx_rtd_theme,documentation,Sphinx theme for readthedocs.org.,,https://github.com/readthedocs/sphinx_rtd_theme,https://github.com/readthedocs/sphinx_rtd_theme,MIT,2013-10-17 17:10:49.000,2023-11-30 15:46:03.000,2023-11-28 18:00:56,1478.0,8.0,1783.0,165.0,710.0,246.0,620.0,4512.0,2023-11-28 04:13:59.000,2.0.0,52.0,115.0,37,True,,sphinx_rtd_theme,conda-forge/sphinx_rtd_theme,['sphinx'],8006.0,16.0,https://pypi.org/project/sphinx_rtd_theme,2023-11-28 04:13:59.000,7990.0,4079099.0,4166455.0,https://anaconda.org/conda-forge/sphinx_rtd_theme,2023-11-28 15:01:30.175,3668974.0,2.0,,,,,,,,,,,,,,,,, +39,twine,pypa/twine,build-tools,Utilities for interacting with PyPI.,,https://github.com/pypa/twine,https://github.com/pypa/twine,Apache-2.0,2013-08-13 15:39:39.000,2023-12-13 23:38:43.000,2023-12-13 23:38:41,1097.0,16.0,300.0,39.0,542.0,50.0,427.0,1486.0,2022-12-01 01:51:31.000,4.0.2,52.0,117.0,37,True,,twine,conda-forge/twine,,113988.0,98181.0,https://pypi.org/project/twine,2022-12-01 01:49:17.129,15807.0,3872992.0,3883220.0,https://anaconda.org/conda-forge/twine,2023-06-16 13:23:13.063,900114.0,1.0,,,,,,,1.0,,,,,,,,,, +40,wheel,pypa/wheel,build-tools,The official binary distribution format for Python.,,https://github.com/pypa/wheel,https://github.com/pypa/wheel,MIT,2017-07-25 20:24:25.000,2023-12-12 16:26:52.000,2023-12-12 16:26:51,915.0,18.0,143.0,34.0,208.0,43.0,342.0,460.0,2023-11-26 14:37:13.000,0.42.0,77.0,77.0,37,True,,wheel,conda-forge/wheel,,279046.0,241772.0,https://pypi.org/project/wheel,2023-11-26 14:37:10.000,37274.0,287694119.0,289756652.0,https://anaconda.org/conda-forge/wheel,2023-11-26 15:42:45.198,82501356.0,1.0,,,,,,,,,,,,,,,,, +41,PDM,pdm-project/pdm,dependency-managers,A modern Python package and dependency manager supporting the latest PEP standards.,,https://github.com/pdm-project/pdm,https://github.com/pdm-project/pdm,MIT,2019-12-27 03:50:57.000,2023-12-14 12:32:48.000,2023-12-14 12:31:47,2552.0,113.0,274.0,31.0,862.0,42.0,1319.0,5695.0,2023-12-14 11:07:52.000,2.11.1,183.0,156.0,36,True,,pdm,conda-forge/pdm,,259.0,204.0,https://pypi.org/project/pdm,2023-12-14 11:07:45.000,55.0,589383.0,597437.0,https://anaconda.org/conda-forge/pdm,2023-11-24 04:17:42.010,217481.0,2.0,4.0,,,,,,,,,,,,,,,, +42,buildbot,buildbot/buildbot,build-tools,Python-based continuous integration testing framework; your pull requests are more than welcome!.,,https://github.com/buildbot/buildbot,https://github.com/buildbot/buildbot,GPL-2.0,2010-07-06 17:56:53.000,2023-12-14 11:15:25.000,2023-12-14 11:15:25,24386.0,266.0,1487.0,199.0,5653.0,686.0,859.0,5110.0,2023-12-05 02:01:09.000,3.10.0,62.0,852.0,36,True,,buildbot,conda-forge/buildbot,,336.0,336.0,https://pypi.org/project/buildbot,,,19434.0,22056.0,https://anaconda.org/conda-forge/buildbot,2023-12-09 07:45:28.497,90835.0,2.0,36250.0,,,,,,,,,,,,,,,, +43,rope,python-rope/rope,refactoring,a python refactoring library.,,https://github.com/python-rope/rope,https://github.com/python-rope/rope,LGPL-3.0,2013-11-30 15:30:20.000,2023-12-01 01:12:57.000,2023-11-05 15:14:29,3212.0,60.0,198.0,29.0,360.0,83.0,235.0,1753.0,2023-11-05 15:13:29.000,1.11.0,92.0,79.0,36,True,,rope,conda-forge/rope,,72457.0,70815.0,https://pypi.org/project/rope,2023-11-05 15:13:29.000,1642.0,818223.0,854064.0,https://anaconda.org/conda-forge/rope,2023-11-09 10:24:24.435,1361959.0,1.0,,,,,,,,,,,,,,,,, +44,sentry-sdk,getsentry/sentry-python,logging,The official Python SDK for Sentry.io.,,https://github.com/getsentry/sentry-python,https://github.com/getsentry/sentry-python,MIT,2018-06-18 22:51:10.000,2023-12-14 13:40:10.000,2023-12-14 09:44:45,2051.0,132.0,468.0,69.0,1469.0,162.0,946.0,1666.0,2023-12-14 09:44:31.000,1.39.1,210.0,199.0,36,True,,sentry-sdk,conda-forge/sentry-sdk,,466.0,,https://pypi.org/project/sentry-sdk,2023-12-14 09:44:18.000,466.0,23629122.0,23645865.0,https://anaconda.org/conda-forge/sentry-sdk,2023-12-14 11:24:24.116,699492.0,2.0,3499.0,,,,,,,,,,,,,,,, +45,pytest-cov,pytest-dev/pytest-cov,testing,Coverage plugin for pytest.,,https://github.com/pytest-dev/pytest-cov,https://github.com/pytest-dev/pytest-cov,MIT,2014-04-17 20:01:12.000,2023-11-28 23:51:46.000,2023-05-24 18:28:10,920.0,,208.0,41.0,242.0,151.0,240.0,1589.0,2023-05-24 18:44:54.000,4.1.0,45.0,86.0,36,True,,pytest-cov,conda-forge/pytest-cov,['pytest'],324700.0,289223.0,https://pypi.org/project/pytest-cov,2023-05-24 18:44:54.000,35477.0,35815047.0,35922860.0,https://anaconda.org/conda-forge/pytest-cov,2023-06-16 13:15:36.736,10026685.0,1.0,,,,,,,,,,,,,,,,, +46,pytest-xdist,pytest-dev/pytest-xdist,testing,pytest plugin for distributed testing and loop-on-failures testing modes.,,https://github.com/pytest-dev/pytest-xdist,https://github.com/pytest-dev/pytest-xdist,MIT,2015-09-01 18:51:45.000,2023-12-01 14:28:22.000,2023-12-01 14:28:21,1137.0,24.0,216.0,49.0,392.0,224.0,343.0,1271.0,2023-11-21 15:21:18.000,3.5.0,67.0,93.0,36,True,,pytest-xdist,conda-forge/pytest-xdist,['pytest'],5483.0,,https://pypi.org/project/pytest-xdist,2023-11-21 15:21:13.000,5483.0,15336423.0,15471369.0,https://anaconda.org/conda-forge/pytest-xdist,2023-11-21 18:58:37.015,5532716.0,1.0,2.0,,,,,,,,,,,,,,,, +47,pyenv,pyenv/pyenv,virtual-envs,Simple Python version management.,,https://github.com/pyenv/pyenv,https://github.com/pyenv/pyenv,MIT,2012-08-31 06:57:52.000,2023-12-12 05:04:49.000,2023-12-12 05:04:41,3225.0,64.0,2834.0,384.0,1013.0,37.0,1636.0,34557.0,2023-12-08 10:23:28.000,2.3.35,91.0,435.0,35,True,,pyenv,,,21.0,21.0,https://pypi.org/project/pyenv,,,12890.0,12890.0,,,,2.0,,,,,,,,,,,,,,,,, +48,pyautogui,asweigart/pyautogui,testing,A cross-platform GUI automation Python module for human beings. Used to programmatically control the mouse & keyboard.,,https://github.com/asweigart/pyautogui,https://github.com/asweigart/pyautogui,BSD-3-Clause,2014-07-17 23:30:38.000,2023-10-16 16:49:29.444,2023-06-07 11:16:23,408.0,,1115.0,186.0,157.0,455.0,228.0,8998.0,,,12.0,52.0,35,True,,pyautogui,conda-forge/pyautogui,,29334.0,29334.0,https://pypi.org/project/pyautogui,,,682785.0,688412.0,https://anaconda.org/conda-forge/pyautogui,2023-10-16 16:49:29.444,213861.0,2.0,,,,,,,,,,,,,,,,, +49,structlog,hynek/structlog,logging,"Simple, powerful, and fast logging for Python.",,https://github.com/hynek/structlog,https://github.com/hynek/structlog,,2013-08-13 15:55:58.000,2023-12-06 13:16:03.000,2023-12-06 13:09:02,1485.0,62.0,191.0,33.0,275.0,24.0,276.0,2875.0,2023-10-09 14:53:10.000,23.2.0,14.0,106.0,35,False,,structlog,conda-forge/structlog,,10225.0,10225.0,https://pypi.org/project/structlog,,,7556469.0,7566524.0,https://anaconda.org/conda-forge/structlog,2023-10-09 17:50:22.949,351943.0,2.0,,,,,,,,,,,,,,,,, +50,scons,SCons/scons,build-tools,SCons - a software construction tool.,,https://github.com/SCons/scons,https://github.com/SCons/scons,MIT,2017-09-24 19:23:46.000,2023-12-13 22:18:38.000,2023-12-13 22:18:13,8906.0,90.0,288.0,62.0,1042.0,658.0,2744.0,1854.0,2023-11-20 02:03:13.000,4.6.0,34.0,156.0,35,True,,scons,conda-forge/scons,,62.0,,https://pypi.org/project/scons,2023-11-20 01:40:35.000,62.0,399377.0,412385.0,https://anaconda.org/conda-forge/scons,2023-11-25 16:42:53.405,519340.0,2.0,1429.0,,,,,,,,,,,,,,,, +51,pytest-mock,pytest-dev/pytest-mock,testing,Thin-wrapper around the mock package for easier use with pytest.,,https://github.com/pytest-dev/pytest-mock,https://github.com/pytest-dev/pytest-mock,MIT,2014-07-17 00:40:32.000,2023-12-06 23:30:32.000,2023-12-06 23:30:32,588.0,21.0,134.0,36.0,249.0,14.0,138.0,1689.0,2023-10-19 16:26:09.000,3.12.0,61.0,67.0,35,True,,pytest-mock,conda-forge/pytest-mock,['pytest'],77262.0,71820.0,https://pypi.org/project/pytest-mock,2023-10-19 16:25:55.000,5442.0,14579059.0,14636672.0,https://anaconda.org/conda-forge/pytest-mock,2023-10-19 18:22:47.849,2419749.0,2.0,14.0,,,,,,,,,,,,,,,, +52,Glances,nicolargo/glances,profiling,"Glances an Eye on your system. A top/htop alternative for GNU/Linux, BSD, Mac OS and Windows operating systems.",,https://github.com/nicolargo/glances,https://github.com/nicolargo/glances,,2011-12-04 08:49:15.000,2023-12-14 04:11:20.000,2023-12-13 20:59:22,5246.0,77.0,1402.0,501.0,775.0,219.0,1506.0,23984.0,2023-05-18 15:52:21.000,3.4.0.2,34.0,178.0,34,False,,glances,conda-forge/glances,,765.0,765.0,https://pypi.org/project/glances,,,187860.0,190134.0,https://anaconda.org/conda-forge/glances,2023-06-05 20:53:05.651,210103.0,1.0,1570.0,,,,,,,,,,,,,,,, +53,pipx,pypa/pipx,dependency-managers,Install and Run Python Applications in Isolated Environments.,,https://github.com/pypa/pipx,https://github.com/pypa/pipx,MIT,2018-10-06 18:47:46.000,2023-12-13 21:39:13.000,2023-12-13 11:18:47,636.0,55.0,342.0,75.0,506.0,62.0,564.0,7466.0,2023-12-04 15:43:18.000,1.3.3,57.0,118.0,34,True,,pipx,conda-forge/pipx,,1678.0,1662.0,https://pypi.org/project/pipx,2023-12-04 15:43:18.000,16.0,2723005.0,2725103.0,https://anaconda.org/conda-forge/pipx,2023-12-04 23:14:49.293,40252.0,3.0,21917.0,,,,,,,,,,,,,,,, +54,invoke,pyinvoke/invoke,build-tools,Pythonic task management & command execution.,,https://github.com/pyinvoke/invoke,https://github.com/pyinvoke/invoke,BSD-2-Clause,2012-02-29 23:59:23.000,2023-12-01 19:06:38.000,2023-12-01 19:06:35,3701.0,5.0,351.0,93.0,246.0,312.0,402.0,4139.0,,,25.0,60.0,34,True,,invoke,conda-forge/invoke,,23550.0,23550.0,https://pypi.org/project/invoke,,,6975056.0,7002201.0,https://anaconda.org/conda-forge/invoke,2023-07-13 01:13:36.486,950088.0,2.0,,,,,,,,,,,,,,,,, +55,pyarmor,dashingsoft/pyarmor,security,"A tool used to obfuscate python scripts, bind obfuscated scripts to fixed machine or expire obfuscated scripts.",,https://github.com/dashingsoft/pyarmor,https://github.com/dashingsoft/pyarmor,SGI-B-2.0,2017-08-26 04:11:53.000,2023-12-13 01:56:33.000,2023-12-13 01:56:26,4344.0,111.0,245.0,44.0,41.0,10.0,1349.0,2642.0,2023-12-12 07:16:52.000,8.4.5,335.0,32.0,34,False,,pyarmor,,,1070.0,1041.0,https://pypi.org/project/pyarmor,2023-12-12 07:16:28.000,29.0,157607.0,157607.0,,,,2.0,,,,,,,,,,,,,,,,, +56,wemake-python-styleguide,wemake-services/wemake-python-styleguide,linters,The strictest and most opinionated python linter ever!.,,https://github.com/wemake-services/wemake-python-styleguide,https://github.com/wemake-services/wemake-python-styleguide,MIT,2018-03-09 21:04:25.000,2023-12-12 14:16:00.000,2023-12-12 14:15:57,2323.0,42.0,375.0,29.0,1724.0,111.0,962.0,2333.0,2023-05-31 14:30:27.000,0.18.0,56.0,183.0,34,True,,wemake-python-styleguide,,,15823.0,15776.0,https://pypi.org/project/wemake-python-styleguide,2020-01-19 11:56:48.000,47.0,147672.0,147672.0,,,,2.0,,,,,,,,,,,,,,,,, +57,python-json-logger,madzak/python-json-logger,logging,Json Formatter for the standard python logger.,,https://github.com/madzak/python-json-logger,https://github.com/madzak/python-json-logger,BSD-2-Clause,2011-12-27 05:12:26.000,2023-10-09 11:59:37.000,2023-02-28 17:40:55,262.0,,215.0,27.0,86.0,12.0,89.0,1595.0,2023-02-21 17:40:52.893,2.0.7,27.0,63.0,34,True,,python-json-logger,conda-forge/python-json-logger,,77653.0,76795.0,https://pypi.org/project/python-json-logger,2023-02-21 17:40:52.893,858.0,21338854.0,21423029.0,https://anaconda.org/conda-forge/python-json-logger,2023-06-16 13:23:58.542,6734035.0,2.0,,,,,,,1.0,,,,,,,,,, +58,pyflakes,PyCQA/pyflakes,linters,A simple program which checks Python source files for errors.,,https://github.com/PyCQA/pyflakes,https://github.com/PyCQA/pyflakes,MIT,2014-04-07 06:19:46.000,2023-09-27 11:36:48.000,2023-07-31 23:20:08,562.0,,181.0,29.0,295.0,57.0,462.0,1311.0,,,16.0,84.0,34,True,,pyflakes,conda-forge/pyflakes,,258795.0,258795.0,https://pypi.org/project/pyflakes,,,26893990.0,27105666.0,https://anaconda.org/conda-forge/pyflakes,2023-07-29 18:48:34.199,6985319.0,2.0,,,,,,,,,,,,,,,,, +59,memray,bloomberg/memray,profiling,The endgame Python memory profiler.,,https://github.com/bloomberg/memray,https://github.com/bloomberg/memray,Apache-2.0,2022-04-08 18:04:11.000,2023-12-14 08:34:40.000,2023-12-08 23:17:11,1133.0,59.0,378.0,58.0,316.0,16.0,126.0,11654.0,2023-12-04 20:03:53.000,1.11.0,17.0,42.0,33,True,,memray,conda-forge/memray,,263.0,263.0,https://pypi.org/project/memray,,,361795.0,366013.0,https://anaconda.org/conda-forge/memray,2023-10-05 21:58:12.929,84375.0,2.0,,,,,,,,,,,,,,,,, +60,pyre-check,facebook/pyre-check,type-checkers,Performant type-checking for python.,,https://github.com/facebook/pyre-check,https://github.com/facebook/pyre-check,MIT,2017-11-10 17:31:36.000,2023-12-13 22:25:17.000,2023-12-13 22:16:38,15128.0,386.0,409.0,110.0,396.0,119.0,258.0,6574.0,2023-02-14 00:24:14.000,0.9.18,11.0,253.0,33,True,,pyre-check,,,21.0,21.0,https://pypi.org/project/pyre-check,,,73106.0,73106.0,,,,3.0,,,,,,,,,,,,,,,,, +61,mimesis,lk-geimfari/mimesis,testing,Mimesis is a powerful Python library that empowers developers to generate massive amounts of synthetic data efficiently.,,https://github.com/lk-geimfari/mimesis,https://github.com/lk-geimfari/mimesis,MIT,2016-09-09 21:41:22.000,2023-12-14 10:37:56.000,2023-11-12 00:14:56,2555.0,21.0,308.0,62.0,1086.0,7.0,322.0,4124.0,2023-08-19 20:40:36.000,11.1.0,51.0,117.0,33,True,,mimesis,conda-forge/mimesis,,1570.0,1570.0,https://pypi.org/project/mimesis,,,148883.0,152985.0,https://anaconda.org/conda-forge/mimesis,2023-08-19 22:03:10.196,168000.0,2.0,521.0,,,,,,,,,,,,,,,, +62,pyupgrade,asottile/pyupgrade,refactoring,A tool (and pre-commit hook) to automatically upgrade syntax for newer versions of the language.,,https://github.com/asottile/pyupgrade,https://github.com/asottile/pyupgrade,MIT,2017-02-28 17:50:31.000,2023-11-27 22:54:23.000,2023-11-27 22:54:22,1152.0,45.0,167.0,34.0,510.0,15.0,397.0,2957.0,2023-10-07 18:35:56.000,3.15.0,166.0,35.0,33,True,,pyupgrade,conda-forge/pyupgrade,,176.0,,https://pypi.org/project/pyupgrade,2023-10-07 18:35:56.000,176.0,499892.0,513991.0,https://anaconda.org/conda-forge/pyupgrade,2023-10-07 20:00:06.902,606259.0,2.0,,,,,,,,,,,,,,,,, +63,pudb,inducer/pudb,debugging,Full-screen console debugger for Python.,,https://github.com/inducer/pudb,https://github.com/inducer/pudb,MIT,2011-05-13 23:44:30.000,2023-12-05 15:23:02.000,2023-12-05 15:23:01,1232.0,27.0,221.0,49.0,277.0,160.0,173.0,2796.0,2023-10-06 19:01:05.000,2023.1,77.0,93.0,33,True,,pudb,conda-forge/pudb,,6419.0,5659.0,https://pypi.org/project/pudb,2023-10-06 19:00:38.000,760.0,258823.0,261574.0,https://anaconda.org/conda-forge/pudb,2023-06-16 13:21:37.623,244883.0,1.0,,,,,,,,,,,,,,,,, +64,prospector,PyCQA/prospector,code-metrics,"Inspects Python source files and provides information about type and location of classes, methods etc.",,https://github.com/landscapeio/prospector,https://github.com/landscapeio/prospector,GPL-2.0,2013-08-05 07:26:30.000,2023-12-04 15:55:07.000,2023-10-18 06:21:56,1396.0,8.0,174.0,35.0,277.0,58.0,312.0,1878.0,2023-10-18 06:23:27.000,1.10.3,125.0,90.0,33,True,landscapeio/prospector,prospector,conda-forge/prospector,,5373.0,4667.0,https://pypi.org/project/prospector,2023-10-18 06:23:27.000,706.0,777645.0,780242.0,https://anaconda.org/conda-forge/prospector,2023-10-19 14:14:48.980,96114.0,1.0,,,,,,,,,,,,,,,,, +65,typeguard,agronholm/typeguard,type-checkers,Run-time type checker for Python.,,https://github.com/agronholm/typeguard,https://github.com/agronholm/typeguard,,2015-12-27 23:15:37.000,2023-12-12 16:30:51.000,2023-12-12 16:30:50,580.0,11.0,95.0,22.0,115.0,18.0,278.0,1357.0,2023-09-11 07:31:36.000,4.1.5,26.0,33.0,33,False,,typeguard,conda-forge/typeguard,,19686.0,19686.0,https://pypi.org/project/typeguard,,,11020171.0,11031186.0,https://anaconda.org/conda-forge/typeguard,2023-10-24 19:46:37.353,462666.0,3.0,,,,,,,,,,,,,,,,, +66,pydocstyle,PyCQA/pydocstyle,linters,docstring style checker.,,https://github.com/PyCQA/pydocstyle,https://github.com/PyCQA/pydocstyle,MIT,2012-01-31 17:18:23.000,2023-11-03 22:28:46.000,2023-11-03 22:28:45,746.0,3.0,183.0,19.0,318.0,113.0,225.0,1105.0,2023-01-17 20:28:28.000,6.3.0,17.0,92.0,33,True,,pydocstyle,conda-forge/pydocstyle,,61056.0,61056.0,https://pypi.org/project/pydocstyle,,,3883966.0,3903138.0,https://anaconda.org/conda-forge/pydocstyle,2023-06-16 13:18:02.967,1706350.0,2.0,69.0,,,,,,,,,,,,,,,, +67,pytest-html,pytest-dev/pytest-html,testing,Plugin for generating HTML reports for pytest results.,,https://github.com/pytest-dev/pytest-html,https://github.com/pytest-dev/pytest-html,,2015-04-14 19:22:42.000,2023-12-10 17:19:29.000,2023-12-10 16:21:44,509.0,15.0,214.0,23.0,370.0,133.0,247.0,632.0,2023-11-07 16:58:34.000,4.1.1,22.0,54.0,33,False,,pytest-html,conda-forge/pytest-html,['pytest'],41704.0,41704.0,https://pypi.org/project/pytest-html,,,4569401.0,4582855.0,https://anaconda.org/conda-forge/pytest-html,2023-11-23 18:39:24.921,497830.0,2.0,,,,,,,,,,,,,,,,, +68,parso,davidhalter/parso,linters,A Python Parser.,,https://github.com/davidhalter/parso,https://github.com/davidhalter/parso,MIT,2017-05-08 20:14:30.000,2023-06-18 23:54:48.000,2023-06-18 23:54:47,1112.0,,96.0,22.0,107.0,10.0,104.0,566.0,2021-11-30 21:07:01.473,0.8.3,26.0,46.0,33,True,,parso,conda-forge/parso,,380982.0,374891.0,https://pypi.org/project/parso,2021-11-30 21:07:01.473,6091.0,21745061.0,21980504.0,https://anaconda.org/conda-forge/parso,2023-06-16 13:24:17.757,16951953.0,2.0,,,,,,,,,,,,,,,,, +69,py-spy,benfred/py-spy,profiling,Sampling profiler for Python programs.,,https://github.com/benfred/py-spy,https://github.com/benfred/py-spy,MIT,2018-08-01 02:22:15.000,2023-12-09 01:26:53.000,2023-11-17 21:22:52,485.0,9.0,375.0,111.0,311.0,138.0,191.0,11251.0,2022-09-07 21:58:56.000,0.3.14,20.0,37.0,32,True,,py-spy,conda-forge/py-spy,,3353.0,3353.0,https://pypi.org/project/py-spy,,,2372846.0,2383387.6666666665,https://anaconda.org/conda-forge/py-spy,2023-06-16 16:18:45.113,499758.0,2.0,14695.0,,,,,,,,,,,,py-spy,https://crates.io/crates/py-spy,269.6666666666667,408553.0, +70,playwright-python,microsoft/playwright-python,testing,Python version of the Playwright testing and automation library.,,https://github.com/microsoft/playwright-python,https://github.com/microsoft/playwright-python,Apache-2.0,2020-07-01 15:28:13.000,2023-12-10 01:20:44.000,2023-11-30 18:06:48,693.0,30.0,757.0,127.0,784.0,34.0,1140.0,9800.0,2023-11-21 21:03:58.000,1.40.0,80.0,33.0,32,True,,playwright,,,21.0,21.0,https://pypi.org/project/playwright,,,1956150.0,1956150.0,,,,2.0,,,,,,,,,,,,,,,,, +71,pyinstrument,joerick/pyinstrument,profiling,Call stack profiler for Python. Shows you why your code is slow!.,,https://github.com/joerick/pyinstrument,https://github.com/joerick/pyinstrument,BSD-3-Clause,2014-03-13 17:53:13.000,2023-12-12 22:01:43.000,2023-11-26 12:37:59,942.0,19.0,208.0,54.0,152.0,18.0,114.0,5719.0,2023-10-12 08:46:13.000,4.6.0,31.0,55.0,32,True,,pyinstrument,conda-forge/pyinstrument,,1881.0,1881.0,https://pypi.org/project/pyinstrument,,,697359.0,704233.0,https://anaconda.org/conda-forge/pyinstrument,2023-11-18 02:43:45.664,274962.0,2.0,,,,,,,,,,,,,,,,, +72,briefcase,beeware/briefcase,packaging,Tools to support converting a Python project into a standalone native application.,,https://github.com/beeware/briefcase,https://github.com/beeware/briefcase,BSD-3-Clause,2015-07-28 15:20:03.000,2023-12-13 22:51:50.000,2023-12-13 22:51:49,3654.0,282.0,298.0,45.0,802.0,116.0,558.0,2175.0,2023-10-20 05:20:58.000,0.3.16,50.0,135.0,32,True,,briefcase,,,517.0,498.0,https://pypi.org/project/briefcase,2023-10-20 05:20:58.000,19.0,6651.0,6655.0,,,,2.0,220.0,,,,,,,,,,,,,,,, +73,doit,pydoit/doit,build-tools,task management & automation tool.,,https://github.com/pydoit/doit,https://github.com/pydoit/doit,MIT,2014-02-14 22:21:23.000,2023-10-21 22:19:38.000,2023-01-16 03:40:03,1483.0,,170.0,48.0,163.0,85.0,218.0,1729.0,2022-04-22 15:33:23.000,0.36.0,48.0,65.0,32,True,,doit,conda-forge/doit,,1957.0,1661.0,https://pypi.org/project/doit,2022-04-22 15:33:23.000,296.0,463554.0,466961.0,https://anaconda.org/conda-forge/doit,2023-06-16 13:22:52.551,245355.0,3.0,,,,,,,,,,,,,,,,, +74,pdoc,mitmproxy/pdoc,documentation,API Documentation for Python Projects.,,https://github.com/mitmproxy/pdoc,https://github.com/mitmproxy/pdoc,Unlicense,2013-08-04 21:12:50.000,2023-12-13 20:49:39.000,2023-12-13 20:41:19,990.0,19.0,231.0,27.0,297.0,18.0,329.0,1694.0,2023-12-13 20:49:39.000,14.2.0,101.0,58.0,32,True,,pdoc,,,2721.0,2389.0,https://pypi.org/project/pdoc,2023-12-13 20:49:39.000,332.0,161418.0,161418.0,,,,2.0,,,,,,,,,,,,,,,,, +75,nodeenv,ekalinin/nodeenv,virtual-envs,Virtual environment for Node.js & integrator with virtualenv.,,https://github.com/ekalinin/nodeenv,https://github.com/ekalinin/nodeenv,BSD-3-Clause,2011-03-29 15:28:56.000,2023-12-13 04:13:29.000,2023-10-05 17:12:04,684.0,2.0,189.0,37.0,162.0,55.0,135.0,1646.0,2023-05-12 08:13:47.000,1.8.0,72.0,93.0,32,True,,nodeenv,conda-forge/nodeenv,,68425.0,67468.0,https://pypi.org/project/nodeenv,2023-05-12 08:10:47.532,957.0,17300938.0,17345986.0,https://anaconda.org/conda-forge/nodeenv,2023-06-16 13:21:50.931,3378655.0,2.0,,,,,,,,,,,,,,,,, +76,logbook,getlogbook/logbook,logging,A cool logging replacement for Python.,,https://github.com/getlogbook/logbook,https://github.com/getlogbook/logbook,,2010-07-22 10:13:12.000,2023-12-13 12:10:52.000,2023-12-06 19:20:17,1343.0,32.0,155.0,35.0,189.0,41.0,136.0,1450.0,2023-11-10 23:35:23.000,1.7.0.post0,6.0,79.0,32,False,,logbook,conda-forge/logbook,,5256.0,5256.0,https://pypi.org/project/logbook,,,3636721.0,3640599.0,https://anaconda.org/conda-forge/logbook,2023-11-11 10:50:13.350,162760.0,2.0,333.0,,,,,,,,,,,,,,,, +77,mkdocstrings,mkdocstrings/mkdocstrings,documentation,"Automatic documentation from sources, for MkDocs.",,https://github.com/mkdocstrings/mkdocstrings,https://github.com/mkdocstrings/mkdocstrings,ISC,2019-12-09 18:09:09.000,2023-11-15 01:17:08.478,2023-11-14 17:46:07,616.0,12.0,97.0,14.0,170.0,43.0,327.0,1441.0,2023-11-14 17:46:28.000,0.24.0,18.0,40.0,32,True,,mkdocstrings,conda-forge/mkdocstrings,['mkdocs'],10211.0,10211.0,https://pypi.org/project/mkdocstrings,,,682029.0,684652.0,https://anaconda.org/conda-forge/mkdocstrings,2023-11-15 01:17:08.478,99681.0,2.0,,,,,,,,,,,,,,,,, +78,pytest-bdd,pytest-dev/pytest-bdd,testing,BDD library for the py.test runner.,,https://github.com/pytest-dev/pytest-bdd,https://github.com/pytest-dev/pytest-bdd,MIT,2013-03-29 07:27:43.000,2023-12-11 20:54:08.000,2023-12-02 21:07:41,1089.0,33.0,197.0,58.0,338.0,111.0,204.0,1232.0,2022-11-09 16:51:21.000,6.1.1,7.0,60.0,32,True,,pytest-bdd,conda-forge/pytest-bdd,['pytest'],3240.0,3240.0,https://pypi.org/project/pytest-bdd,,,775830.0,783797.0,https://anaconda.org/conda-forge/pytest-bdd,2023-12-02 22:25:37.629,55773.0,2.0,,,,,,,,,,,,,,,,, +79,flake8-bugbear,PyCQA/flake8-bugbear,linters,A plugin for Flake8 finding likely bugs and design problems in your program. Contains warnings that dont belong in..,,https://github.com/PyCQA/flake8-bugbear,https://github.com/PyCQA/flake8-bugbear,MIT,2016-03-15 20:54:43.000,2023-12-13 03:04:58.000,2023-12-11 22:50:21,346.0,19.0,99.0,8.0,228.0,53.0,157.0,1008.0,2023-12-02 22:58:43.000,23.12.2,44.0,81.0,32,True,,flake8-bugbear,conda-forge/flake8-bugbear,['flake8'],35398.0,35398.0,https://pypi.org/project/flake8-bugbear,,,2531811.0,2552327.0,https://anaconda.org/conda-forge/flake8-bugbear,2023-12-04 18:33:44.282,759126.0,2.0,,,,,,,,,,,,,,,,, +80,alabaster,bitprophet/alabaster,documentation,"Lightweight, configurable Sphinx theme.",,https://github.com/sphinx-doc/alabaster,https://github.com/sphinx-doc/alabaster,BSD-3-Clause,2013-12-07 00:03:15.000,2023-10-19 23:30:15.000,2023-10-04 23:10:27,384.0,1.0,187.0,30.0,90.0,66.0,56.0,706.0,2023-01-13 06:44:02.021,0.7.13,26.0,30.0,32,True,sphinx-doc/alabaster,alabaster,conda-forge/alabaster,['sphinx'],123338.0,115591.0,https://pypi.org/project/alabaster,2023-01-13 06:44:02.021,7747.0,7037561.0,7115209.0,https://anaconda.org/conda-forge/alabaster,2023-06-16 13:24:00.075,6910701.0,2.0,,,,,,,,,,,,,,,,, +81,sphinx-autodoc-typehints,tox-dev/sphinx-autodoc-typehints,documentation,Type hints support for the Sphinx autodoc extension.,,https://github.com/tox-dev/sphinx-autodoc-typehints,https://github.com/tox-dev/sphinx-autodoc-typehints,MIT,2015-09-21 20:41:41.000,2023-12-09 04:41:50.000,2023-12-09 04:41:49,340.0,14.0,99.0,11.0,226.0,28.0,152.0,511.0,2023-11-11 00:29:39.000,1.25.2,43.0,54.0,32,True,,sphinx-autodoc-typehints,conda-forge/sphinx-autodoc-typehints,['sphinx'],45289.0,45289.0,https://pypi.org/project/sphinx-autodoc-typehints,,,1812643.0,1827562.0,https://anaconda.org/conda-forge/sphinx-autodoc-typehints,2023-11-11 13:45:27.523,626637.0,2.0,,,,,,,,,,,,,,,,, +82,Griffe,mkdocstrings/griffe,documentation,"Signatures for entire Python programs. Extract the structure, the frame, the skeleton of your project, to generate API..",,https://github.com/mkdocstrings/griffe,https://github.com/mkdocstrings/griffe,ISC,2021-09-09 21:49:44.000,2023-12-06 12:44:17.102,2023-12-06 10:37:23,778.0,45.0,35.0,6.0,54.0,22.0,149.0,226.0,2023-12-06 10:37:48.000,0.38.1,91.0,26.0,32,True,,griffe,conda-forge/griffe,,3855.0,3811.0,https://pypi.org/project/griffe,2023-12-06 10:37:48.000,44.0,881522.0,890927.0,https://anaconda.org/conda-forge/griffe,2023-12-06 12:44:17.102,197516.0,2.0,,,,,,,,,,,,,,,,, +83,Scalene,plasma-umass/scalene,profiling,"Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python with AI-powered optimization..",,https://github.com/plasma-umass/scalene,https://github.com/plasma-umass/scalene,Apache-2.0,2019-12-17 20:56:28.000,2023-12-10 01:51:43.000,2023-12-10 01:50:52,3081.0,28.0,340.0,86.0,271.0,152.0,261.0,10416.0,2023-12-10 01:51:43.000,1.5.32.1,53.0,44.0,31,True,,scalene,,,561.0,561.0,https://pypi.org/project/scalene,,,25627.0,25627.0,,,,2.0,,,,,,,,,,,,,,,,, +84,pipreqs,bndr/pipreqs,dependency-managers,pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this..,,https://github.com/bndr/pipreqs,https://github.com/bndr/pipreqs,Apache-2.0,2015-04-22 16:38:14.000,2023-12-10 23:03:40.000,2023-10-08 03:21:32,337.0,1.0,365.0,56.0,176.0,180.0,108.0,5532.0,2023-04-14 07:11:09.000,0.4.13,42.0,60.0,31,True,,pipreqs,conda-forge/pipreqs,,25679.0,25292.0,https://pypi.org/project/pipreqs,2023-04-14 07:10:52.947,387.0,1164542.0,1165069.0,https://anaconda.org/conda-forge/pipreqs,2023-06-16 13:23:05.413,45871.0,3.0,,,,,,,,,,,,,,,,, +85,alive-progress,rsalmei/alive-progress,logging,"A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!.",,https://github.com/rsalmei/alive-progress,https://github.com/rsalmei/alive-progress,MIT,2019-08-05 05:54:30.000,2023-12-02 19:41:03.000,2023-12-02 19:40:58,685.0,7.0,186.0,47.0,49.0,20.0,192.0,4802.0,2023-11-08 23:23:51.000,3.1.5,34.0,7.0,31,True,,alive-progress,conda-forge/alive-progress,,2751.0,2537.0,https://pypi.org/project/alive-progress,2023-11-08 23:23:51.000,214.0,615781.0,616925.0,https://anaconda.org/conda-forge/alive-progress,2023-11-09 06:24:38.416,46944.0,2.0,,,,,,,,,,,,,,,,, +86,vulture,jendrikseipp/vulture,refactoring,Find dead Python code.,,https://github.com/jendrikseipp/vulture,https://github.com/jendrikseipp/vulture,MIT,2016-08-11 15:39:58.647,2023-12-06 06:47:55.000,2023-12-06 06:47:54,744.0,8.0,140.0,26.0,147.0,21.0,175.0,2849.0,2023-10-06 15:53:34.000,2.10,50.0,39.0,31,True,,vulture,conda-forge/vulture,,4477.0,4210.0,https://pypi.org/project/vulture,2023-10-06 15:53:22.000,267.0,514230.0,515102.0,https://anaconda.org/conda-forge/vulture,2023-06-16 13:24:21.364,76822.0,2.0,,,,,,,,,,,,,,,,, +87,tabulate,astanin/python-tabulate,logging,"Pretty-print tabular data in Python, a library and a command-line utility. Repository migrated from..",,https://github.com/astanin/python-tabulate,https://github.com/astanin/python-tabulate,MIT,2016-05-01 20:47:06.376,2023-11-18 22:45:00.000,2023-04-30 10:08:19,610.0,,141.0,20.0,95.0,83.0,133.0,1852.0,2022-10-06 17:23:25.701,0.9.0,27.0,84.0,31,True,,tabulate,conda-forge/tabulate,,8278.0,,https://pypi.org/project/tabulate,2022-10-06 17:23:25.701,8278.0,49383482.0,49450939.0,https://anaconda.org/conda-forge/tabulate,2023-06-16 13:16:13.524,6138604.0,2.0,,,,,,,,,,,,,,,,, +88,nose,nose-devs/nose,testing,nose is nicer testing for python.,,https://github.com/nose-devs/nose,https://github.com/nose-devs/nose,,2011-12-13 19:36:32.000,2023-11-06 17:25:08.000,2016-03-04 01:16:26,1004.0,,380.0,48.0,262.0,401.0,465.0,1359.0,,,1.0,95.0,31,False,,nose,conda-forge/nose,,148666.0,148666.0,https://pypi.org/project/nose,,,4987488.0,5020467.0,https://anaconda.org/conda-forge/nose,2023-06-16 13:17:32.308,3001144.0,2.0,,,,,,,,,,,,,,,,, +89,prettytable,jazzband/prettytable,logging,Display tabular data in a visually appealing ASCII table format.,,https://github.com/jazzband/prettytable,https://github.com/jazzband/prettytable,,2016-01-15 02:39:17.000,2023-12-13 13:54:47.000,2023-12-13 13:54:47,528.0,7.0,135.0,21.0,144.0,34.0,90.0,1175.0,2023-09-11 14:02:21.000,3.9.0,21.0,55.0,31,False,,prettytable,conda-forge/prettytable,,52137.0,52137.0,https://pypi.org/project/prettytable,,,11924814.0,11959354.0,https://anaconda.org/conda-forge/prettytable,2023-09-11 20:34:41.890,1278003.0,2.0,,,,,,,,,,,,,,,,, +90,colorlog,borntyping/python-colorlog,logging,A colored formatter for the python logging module.,,https://github.com/borntyping/python-colorlog,https://github.com/borntyping/python-colorlog,MIT,2012-09-05 17:57:21.000,2023-12-02 19:22:57.004,2023-12-02 16:52:58,237.0,7.0,122.0,14.0,47.0,1.0,75.0,830.0,2023-12-02 16:46:59.000,6.8.0,67.0,32.0,31,True,,colorlog,conda-forge/colorlog,,34441.0,31669.0,https://pypi.org/project/colorlog,2023-12-02 16:46:59.000,2772.0,8973698.0,9018738.0,https://anaconda.org/conda-forge/colorlog,2023-12-02 19:22:57.004,1846655.0,2.0,,,,,,,,,,,,,,,,, +91,progressbar2,WoLpH/python-progressbar,logging,Progressbar 2 - A progress bar for Python 2 and Python 3 - pip install progressbar2.,,https://github.com/wolph/python-progressbar,https://github.com/wolph/python-progressbar,BSD-3-Clause,2012-02-20 06:19:21.000,2023-12-11 00:08:12.000,2023-12-11 00:08:04,1061.0,15.0,139.0,22.0,68.0,9.0,205.0,830.0,2022-10-26 13:49:10.642,4.2.0,103.0,43.0,31,True,,progressbar2,conda-forge/progressbar2,,1592.0,,https://pypi.org/project/progressbar2,2022-11-01 15:41:03.059,1592.0,22527904.0,22540174.0,https://anaconda.org/conda-forge/progressbar2,2023-06-16 13:18:55.458,1052974.0,2.0,2099.0,,,,,,,,,,,,,,,, +92,asv,airspeed-velocity/asv,testing,Airspeed Velocity: A simple Python benchmarking tool with web-based reporting.,,https://github.com/airspeed-velocity/asv,https://github.com/airspeed-velocity/asv,BSD-3-Clause,2013-11-07 20:43:31.000,2023-11-16 14:02:24.000,2023-09-11 04:46:13,2341.0,,168.0,22.0,794.0,141.0,426.0,809.0,2023-09-11 14:23:39.000,0.6.1,20.0,76.0,31,True,,asv,conda-forge/asv,,1116.0,1031.0,https://pypi.org/project/asv,2023-09-11 05:46:09.000,85.0,83687.0,101289.0,https://anaconda.org/conda-forge/asv,2023-10-03 19:44:19.217,756885.0,2.0,160.0,,,,,,,,,,,,,,,, +93,setuptools_scm,pypa/setuptools_scm,build-tools,the blessed package to manage your versions by scm tags.,,https://github.com/pypa/setuptools_scm,https://github.com/pypa/setuptools_scm,MIT,2015-07-01 17:57:56.000,2023-12-11 18:47:44.000,2023-12-11 18:47:40,1669.0,109.0,199.0,27.0,449.0,80.0,459.0,781.0,2023-10-02 15:08:38.000,8.0.4,55.0,131.0,31,True,,setuptools_scm,conda-forge/setuptools_scm,,,,https://pypi.org/project/setuptools_scm,,,25695691.0,25743457.0,https://anaconda.org/conda-forge/setuptools_scm,2023-10-04 14:19:42.239,2053960.0,3.0,,,,,,,,,,,,,,,,, +94,mccabe,PyCQA/mccabe,code-metrics,McCabe complexity checker for Python.,,https://github.com/PyCQA/mccabe,https://github.com/PyCQA/mccabe,Saxpath,2013-02-20 22:19:04.000,2023-12-03 13:55:50.000,2023-12-03 13:55:50,149.0,1.0,56.0,17.0,60.0,14.0,45.0,610.0,2022-01-24 01:14:49.000,0.7.0,13.0,24.0,31,True,,mccabe,conda-forge/mccabe,,430876.0,414877.0,https://pypi.org/project/mccabe,2022-01-24 01:14:49.000,15999.0,31005489.0,31091435.0,https://anaconda.org/conda-forge/mccabe,2023-06-16 13:17:55.573,7735206.0,2.0,,,,,,,,,,,,,,,,, +95,pylint-django,PyCQA/pylint-django,linters,Pylint plugin for improving code analysis for when using Django.,,https://github.com/pylint-dev/pylint-django,https://github.com/pylint-dev/pylint-django,GPL-2.0,2013-10-01 06:35:15.000,2023-12-12 16:46:20.000,2023-11-04 22:55:07,654.0,25.0,119.0,16.0,198.0,57.0,169.0,574.0,2023-10-23 13:09:34.000,2.5.5,56.0,70.0,31,True,pylint-dev/pylint-django,pylint-django,conda-forge/pylint-django,['pylint'],29282.0,28100.0,https://pypi.org/project/pylint-django,2023-10-23 13:09:34.000,1182.0,1383349.0,1385341.0,https://anaconda.org/conda-forge/pylint-django,2023-06-16 13:25:11.432,174929.0,2.0,278.0,,,,,,,,,,,,,,,, +96,executing,alexmojaki/executing,ast,"Get information about what a Python frame is currently doing, particularly the AST node being executed.",,https://github.com/alexmojaki/executing,https://github.com/alexmojaki/executing,MIT,2019-05-25 08:22:26.000,2023-11-06 14:59:28.000,2023-11-06 14:59:27,469.0,33.0,29.0,10.0,42.0,11.0,25.0,285.0,2020-12-27 11:10:13.000,0.5.4,19.0,10.0,31,True,,executing,conda-forge/executing,,132372.0,132372.0,https://pypi.org/project/executing,,,21347727.0,21611498.0,https://anaconda.org/conda-forge/executing,2023-10-29 11:48:33.889,10023299.0,1.0,,,,,,,,,,,,,,,,, +97,sqlmap,sqlmapproject/sqlmap,security,Automatic SQL injection and database takeover tool.,,https://github.com/sqlmapproject/sqlmap,https://github.com/sqlmapproject/sqlmap,,2012-06-26 09:52:15.000,2023-12-14 11:53:52.000,2023-12-14 11:53:49,10122.0,22.0,5272.0,1086.0,365.0,47.0,5021.0,29303.0,2023-01-02 22:32:55.000,1.7,8.0,131.0,30,False,,sqlmap,,,21.0,21.0,https://pypi.org/project/sqlmap,,,10721.0,10721.0,,,,2.0,,,,,,,,,,,,,,,,, +98,PySnooper,cool-RR/PySnooper,debugging,Never use print for debugging again.,,https://github.com/cool-RR/PySnooper,https://github.com/cool-RR/PySnooper,MIT,2019-04-18 13:55:43.000,2023-07-27 14:52:53.379,2023-07-15 15:04:46,313.0,,935.0,235.0,117.0,26.0,105.0,16133.0,,,24.0,27.0,30,True,,pysnooper,conda-forge/pysnooper,,1637.0,1637.0,https://pypi.org/project/pysnooper,,,515165.0,517008.0,https://anaconda.org/conda-forge/pysnooper,2023-07-27 14:52:53.379,71905.0,1.0,,,,,,,,,,,,,,,,, +99,mamba,mamba-org/mamba,dependency-managers,The Fast Cross-Platform Package Manager.,,https://github.com/mamba-org/mamba,https://github.com/mamba-org/mamba,BSD-3-Clause,2019-03-05 13:05:10.000,2023-12-14 14:19:10.000,2023-12-14 14:19:06,2712.0,112.0,307.0,45.0,1515.0,443.0,1100.0,5557.0,2023-12-11 13:13:49.000,2023.12.11,117.0,144.0,30,True,,,conda-forge/mamba,,,,,,,,232040.0,https://anaconda.org/conda-forge/mamba,2023-12-11 16:52:07.515,9977721.0,3.0,,,,,,,2.0,,,,,,,,,, +100,flit,pypa/flit,build-tools,Simplified packaging of Python modules.,,https://github.com/pypa/flit,https://github.com/pypa/flit,BSD-3-Clause,2015-03-13 21:22:27.000,2023-12-09 12:48:14.000,2023-12-09 12:48:14,1182.0,17.0,124.0,33.0,275.0,108.0,276.0,2044.0,,,22.0,70.0,30,True,,flit,conda-forge/flit,,1656.0,1656.0,https://pypi.org/project/flit,,,344902.0,347019.0,https://anaconda.org/conda-forge/flit,2023-06-16 13:24:46.150,173654.0,3.0,,,,,,,,,,,,,,,,, +101,pyelftools,eliben/pyelftools,debugging,Parsing ELF and DWARF in Python.,,https://github.com/eliben/pyelftools,https://github.com/eliben/pyelftools,,2013-06-08 22:55:54.000,2023-12-13 22:55:18.000,2023-12-08 14:14:14,669.0,12.0,475.0,69.0,289.0,70.0,167.0,1804.0,,,8.0,97.0,30,False,,pyelftools,conda-forge/pyelftools,,6556.0,6556.0,https://pypi.org/project/pyelftools,,,2708335.0,2712220.0,https://anaconda.org/conda-forge/pyelftools,2023-09-23 20:45:10.696,147647.0,1.0,,,,,,,,,,,,,,,,, +102,ipdb,gotcha/ipdb,debugging,Integration of IPython pdb.,,https://github.com/gotcha/ipdb,https://github.com/gotcha/ipdb,BSD-3-Clause,2011-01-15 17:51:47.000,2023-08-03 14:30:43.000,2023-08-03 14:30:43,380.0,,147.0,28.0,84.0,62.0,130.0,1783.0,2023-03-09 15:41:00.602,0.13.13,46.0,58.0,30,True,,ipdb,conda-forge/ipdb,,60282.0,51286.0,https://pypi.org/project/ipdb,2023-03-09 15:41:00.602,8996.0,2490805.0,2495616.0,https://anaconda.org/conda-forge/ipdb,2023-06-16 13:21:31.191,428249.0,1.0,,,,,,,,,,,,,,,,, +103,Yappi,sumerc/yappi,profiling,"Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.",,https://github.com/sumerc/yappi,https://github.com/sumerc/yappi,MIT,2009-10-07 20:46:30.000,2023-12-07 11:50:22.080,2023-12-07 08:40:29,751.0,35.0,70.0,15.0,87.0,13.0,60.0,1292.0,2023-12-07 08:42:04.000,1.6.0,13.0,31.0,30,True,,yappi,conda-forge/yappi,,1072.0,1072.0,https://pypi.org/project/yappi,,,1892595.0,1896952.0,https://anaconda.org/conda-forge/yappi,2023-12-07 11:50:22.080,165580.0,2.0,,,,,,,,,,,,,,,,, +104,nox,theacodes/nox,testing,Flexible test automation for Python.,,https://github.com/wntrblm/nox,https://github.com/wntrblm/nox,Apache-2.0,2016-02-24 04:02:58.000,2023-12-12 13:42:03.000,2023-11-02 07:06:53,544.0,4.0,141.0,24.0,420.0,59.0,274.0,1152.0,2023-04-23 01:43:49.000,2023.04.22,25.0,91.0,30,True,wntrblm/nox,nox,conda-forge/nox,['pytest'],4769.0,4769.0,https://pypi.org/project/nox,,,1001004.0,1006883.0,https://anaconda.org/conda-forge/nox,2023-09-25 20:41:36.795,246928.0,2.0,,,,,,,,,,,,,,,,, +105,coveralls-python,TheKevJames/coveralls-python,testing,Show coverage stats online via coveralls.io.,,https://github.com/TheKevJames/coveralls-python,https://github.com/TheKevJames/coveralls-python,MIT,2013-02-06 20:48:39.000,2023-12-11 20:23:49.000,2023-08-14 16:01:13,475.0,,182.0,8.0,228.0,15.0,146.0,535.0,2021-11-11 20:59:17.000,3.3.1,28.0,64.0,30,True,,coveralls,conda-forge/coveralls,['pytest'],32675.0,32675.0,https://pypi.org/project/coveralls,,,633212.0,645804.0,https://anaconda.org/conda-forge/coveralls,2023-06-16 13:24:40.028,1045176.0,2.0,,,,,,,,,,,,,,,,, +106,flake8-comprehensions,adamchainz/flake8-comprehensions,linters,A flake8 plugin to help you write better list/set/dict comprehensions.,,https://github.com/adamchainz/flake8-comprehensions,https://github.com/adamchainz/flake8-comprehensions,MIT,2016-04-05 12:15:56.000,2023-12-12 22:40:58.000,2023-12-12 22:40:57,573.0,19.0,21.0,7.0,491.0,4.0,51.0,454.0,2023-07-10 12:46:08.000,3.14.0,39.0,15.0,30,True,,flake8-comprehensions,conda-forge/flake8-comprehensions,['flake8'],26380.0,25675.0,https://pypi.org/project/flake8-comprehensions,2023-07-10 12:46:08.000,705.0,961171.0,979467.0,https://anaconda.org/conda-forge/flake8-comprehensions,2023-07-17 21:11:54.892,768464.0,2.0,,,,,,,,,,,,,,,,, +107,numpydoc,numpy/numpydoc,documentation,Numpys Sphinx extensions.,,https://github.com/numpy/numpydoc,https://github.com/numpy/numpydoc,,2013-07-24 16:23:39.000,2023-12-13 16:11:36.000,2023-12-13 16:11:36,591.0,10.0,145.0,35.0,301.0,80.0,136.0,256.0,2023-09-26 00:24:32.000,1.6.0,27.0,80.0,30,False,,numpydoc,conda-forge/numpydoc,['sphinx'],46430.0,41601.0,https://pypi.org/project/numpydoc,2023-09-26 00:24:32.000,4829.0,587753.0,638905.0,https://anaconda.org/conda-forge/numpydoc,2023-12-08 17:48:59.802,2199562.0,2.0,,,,,,,,,,,,,,,,, +108,gdbgui,cs01/gdbgui,debugging,"Browser-based frontend to gdb (gnu debugger). Add breakpoints, view the stack, visualize data structures, and more in..",,https://github.com/cs01/gdbgui,https://github.com/cs01/gdbgui,GPL-3.0,2016-10-27 03:19:25.000,2023-11-22 13:56:25.000,2023-10-18 07:06:19,437.0,6.0,482.0,165.0,159.0,139.0,172.0,9527.0,2023-10-18 16:33:47.000,0.15.2.0,10.0,44.0,29,True,,gdbgui,,,338.0,338.0,https://pypi.org/project/gdbgui,,,15104.0,15505.0,,,,2.0,16445.0,,,,,,,,,,,,,,,, +109,freezegun,spulec/freezegun,testing,Let your Python tests travel through time.,,https://github.com/spulec/freezegun,https://github.com/spulec/freezegun,Apache-2.0,2012-12-11 05:11:00.000,2023-12-07 20:10:31.000,2023-12-07 09:22:04,606.0,11.0,246.0,34.0,226.0,113.0,186.0,3866.0,2023-12-04 19:43:58.000,1.3.1,17.0,112.0,29,True,,freezegun,conda-forge/freezegun,,,,https://pypi.org/project/freezegun,,,8052387.0,8091119.0,https://anaconda.org/conda-forge/freezegun,2023-12-05 02:34:44.832,1510380.0,2.0,5.0,,,,,,-6.0,,,,,,,,,, +110,detect-secrets,Yelp/detect-secrets,security,An enterprise friendly way of detecting and preventing secrets in code.,,https://github.com/Yelp/detect-secrets,https://github.com/Yelp/detect-secrets,Apache-2.0,2017-12-05 00:38:38.000,2023-12-13 14:50:46.000,2023-12-12 17:27:17,1308.0,89.0,344.0,46.0,469.0,97.0,201.0,3279.0,2022-10-05 17:13:10.000,1.4.0,8.0,73.0,29,True,,detect-secrets,,,,,https://pypi.org/project/detect-secrets,,,458334.0,458334.0,,,,3.0,,,,,,,,,,,,,,,,, +111,pex,pantsbuild/pex,packaging,"A tool for generating .pex (Python EXecutable) files, lock files and venvs.",,https://github.com/pantsbuild/pex,https://github.com/pantsbuild/pex,Apache-2.0,2014-07-21 17:06:12.000,2023-12-14 02:29:11.000,2023-12-14 02:27:58,1410.0,38.0,238.0,56.0,1191.0,148.0,929.0,2399.0,2023-12-14 02:31:22.000,2.1.154,100.0,118.0,29,True,,pex,,,,,https://pypi.org/project/pex,,,1331090.0,1480960.0,,,,2.0,3746762.0,,,,,,,,,,,,,,,, +112,pytest-testinfra,pytest-dev/pytest-testinfra,testing,Testinfra test your infrastructures.,,https://github.com/pytest-dev/pytest-testinfra,https://github.com/pytest-dev/pytest-testinfra,Apache-2.0,2015-03-15 20:49:52.000,2023-12-06 20:32:46.000,2023-11-13 17:13:13,776.0,13.0,341.0,78.0,412.0,126.0,214.0,2278.0,2023-11-13 17:17:13.000,10.0.0,15.0,136.0,29,True,,pytest-testinfra,conda-forge/pytest-testinfra,['pytest'],11.0,,https://pypi.org/project/pytest-testinfra,2023-11-13 17:17:13.000,11.0,376736.0,377152.0,https://anaconda.org/conda-forge/pytest-testinfra,2023-11-19 14:00:16.233,14562.0,2.0,,,,,,,,,,,,,,,,, +113,beartype,beartype/beartype,linters,Unbearably fast near-real-time hybrid runtime-static type-checking in pure Python.,,https://github.com/beartype/beartype,https://github.com/beartype/beartype,MIT,2020-04-03 06:06:22.000,2023-12-14 07:34:42.000,2023-12-14 07:30:10,1094.0,71.0,40.0,12.0,44.0,54.0,187.0,2157.0,2023-10-21 04:53:17.000,0.16.4,33.0,18.0,29,True,,beartype,conda-forge/beartype,,182.0,,https://pypi.org/project/beartype,2023-10-21 04:53:17.000,182.0,1598196.0,1599983.0,https://anaconda.org/conda-forge/beartype,2023-09-23 05:39:58.894,75069.0,2.0,,,,,,,,,,,,,,,,, +114,radon,rubik/radon,code-metrics,Various code metrics for Python code.,,https://github.com/rubik/radon,https://github.com/rubik/radon,MIT,2012-09-20 18:58:58.000,2023-10-14 06:39:48.000,2023-10-06 10:02:00,544.0,5.0,109.0,34.0,89.0,23.0,145.0,1557.0,2023-03-26 06:25:00.948,6.0.1,56.0,60.0,29,True,,radon,conda-forge/radon,,5246.0,4592.0,https://pypi.org/project/radon,2023-03-26 06:25:00.948,654.0,413921.0,414836.0,https://anaconda.org/conda-forge/radon,2023-06-16 13:24:51.939,67740.0,2.0,,,,,,,,,,,,,,,,, +115,pytest-asyncio,pytest-dev/pytest-asyncio,testing,Asyncio support for pytest.,,https://github.com/pytest-dev/pytest-asyncio,https://github.com/pytest-dev/pytest-asyncio,Apache-2.0,2015-04-11 00:18:05.000,2023-12-11 18:15:42.000,2023-12-09 13:10:24,589.0,121.0,126.0,38.0,431.0,35.0,244.0,1252.0,2023-12-04 07:20:33.000,0.23.2,25.0,44.0,29,True,,pytest-asyncio,conda-forge/pytest-asyncio,['pytest'],,,https://pypi.org/project/pytest-asyncio,,,9225797.0,9268666.0,https://anaconda.org/conda-forge/pytest-asyncio,2023-12-04 19:10:52.927,1843098.0,2.0,167.0,,,,,,,,,,,,,,,, +116,nose2,nose-devs/nose2,testing,"The successor to nose, based on unittest2.",,https://github.com/nose-devs/nose2,https://github.com/nose-devs/nose2,,2011-12-14 15:33:15.000,2023-12-11 16:55:38.000,2023-11-07 00:47:50,1126.0,7.0,128.0,23.0,321.0,50.0,217.0,765.0,,,5.0,77.0,29,False,,nose2,conda-forge/nose2,,24347.0,24347.0,https://pypi.org/project/nose2,,,694549.0,696396.0,https://anaconda.org/conda-forge/nose2,2023-06-16 16:08:37.386,123779.0,2.0,,,,,,,,,,,,,,,,, +117,ddt,datadriventests/ddt,testing,Data-Driven Tests for Python Unittest.,,https://github.com/datadriventests/ddt,https://github.com/datadriventests/ddt,MIT,2012-02-11 22:57:10.000,2023-11-08 14:34:43.249,2023-11-08 03:04:24,232.0,2.0,111.0,21.0,62.0,11.0,43.0,432.0,2023-11-08 03:05:41.000,1.7.0,32.0,38.0,29,True,,ddt,conda-forge/ddt,,6752.0,5408.0,https://pypi.org/project/ddt,2023-11-08 03:05:41.000,1344.0,570562.0,576586.0,https://anaconda.org/conda-forge/ddt,2023-11-08 14:34:43.249,90370.0,2.0,,,,,,,,,,,,,,,,, +118,Bpytop,aristocratos/bpytop,profiling,Linux/OSX/FreeBSD resource monitor.,,https://github.com/aristocratos/bpytop,https://github.com/aristocratos/bpytop,Apache-2.0,2020-07-01 17:41:25.000,2023-11-18 22:04:00.000,2022-03-06 14:20:17,408.0,,386.0,155.0,72.0,77.0,228.0,9685.0,2021-12-22 19:23:21.000,1.0.68,53.0,35.0,28,False,,bpytop,conda-forge/bpytop,,163.0,162.0,https://pypi.org/project/bpytop,2021-12-22 19:23:21.000,1.0,5834.0,6278.0,https://anaconda.org/conda-forge/bpytop,2023-06-16 19:24:35.135,15116.0,3.0,,,,,,,,,,,,,,,,, +119,xonsh,xonsh/xonsh,shell,"Python-powered, cross-platform, Unix-gazing shell.",,https://github.com/xonsh/xonsh,https://github.com/xonsh/xonsh,,2015-01-21 22:05:27.000,2023-12-14 10:52:12.000,2023-12-14 10:51:44,10481.0,22.0,596.0,105.0,2590.0,275.0,2203.0,7423.0,2023-12-05 15:56:43.000,0.14.3,100.0,319.0,28,False,,xonsh,,,,,https://pypi.org/project/xonsh,,,22108.0,22202.0,,,,1.0,9377.0,,,,,,,,,,,,,,,, +120,memory-profiler,pythonprofilers/memory_profiler,profiling,Monitor Memory usage of Python code.,,https://github.com/pythonprofilers/memory_profiler,https://github.com/pythonprofilers/memory_profiler,BSD-3-Clause,2011-10-14 11:56:14.000,2023-10-23 14:35:37.000,2023-10-23 14:35:37,718.0,2.0,371.0,80.0,162.0,131.0,115.0,4086.0,2022-11-15 17:59:01.069,0.61.0,59.0,103.0,28,True,,memory_profiler,conda-forge/memory_profiler,,250.0,,https://pypi.org/project/memory_profiler,2022-11-15 17:59:01.069,250.0,979092.0,983304.0,https://anaconda.org/conda-forge/memory_profiler,2023-06-16 13:17:34.885,383379.0,3.0,,,,,,,,,,,,,,,,, +121,notifiers,liiight/notifiers,logging,The easy way to send notifications.,,https://github.com/liiight/notifiers,https://github.com/liiight/notifiers,MIT,2017-06-01 10:20:18.000,2023-11-13 17:40:53.000,2022-07-14 07:40:12,517.0,,99.0,30.0,361.0,34.0,67.0,2546.0,2021-08-23 20:42:56.000,1.3.0,6.0,19.0,28,False,,notifiers,conda-forge/notifiers,,1117.0,1117.0,https://pypi.org/project/notifiers,,,559031.0,560016.0,https://anaconda.org/conda-forge/notifiers,2023-06-16 19:23:52.875,35469.0,3.0,,,,,,,,,,,,,,,,, +122,pdbpp,pdbpp/pdbpp,debugging,"pdb++, a drop-in replacement for pdb (the Python debugger).",,https://github.com/pdbpp/pdbpp,https://github.com/pdbpp/pdbpp,BSD-3-Clause,2017-06-11 13:42:16.000,2023-11-07 10:47:13.000,2022-07-14 18:31:38,706.0,,67.0,19.0,322.0,79.0,126.0,1215.0,2021-07-09 22:21:56.000,0.10.3,13.0,41.0,28,False,,pdbpp,conda-forge/pdbpp,,5286.0,5286.0,https://pypi.org/project/pdbpp,,,315576.0,316984.0,https://anaconda.org/conda-forge/pdbpp,2023-06-16 13:25:41.484,107061.0,3.0,,,,,,,,,,,,,,,,, +123,pytest-benchmark,ionelmc/pytest-benchmark,testing,py.test fixture for benchmarking code.,,https://github.com/ionelmc/pytest-benchmark,https://github.com/ionelmc/pytest-benchmark,BSD-2-Clause,2014-10-10 10:55:33.000,2023-12-14 13:51:57.000,2023-12-14 13:51:57,1010.0,6.0,107.0,19.0,75.0,90.0,88.0,1149.0,,,5.0,41.0,28,True,,pytest-benchmark,conda-forge/pytest-benchmark,['pytest'],7978.0,7978.0,https://pypi.org/project/pytest-benchmark,,,946724.0,967501.0,https://anaconda.org/conda-forge/pytest-benchmark,2023-06-16 13:15:49.392,1932333.0,3.0,,,,,,,,,,,,,,,,, +124,autoflake,myint/autoflake,refactoring,Removes unused imports and unused variables as reported by pyflakes.,,https://github.com/PyCQA/autoflake,https://github.com/PyCQA/autoflake,MIT,2012-12-27 03:40:17.000,2023-12-07 06:00:17.000,2023-12-07 06:00:16,629.0,16.0,77.0,14.0,176.0,38.0,74.0,822.0,2023-09-01 06:20:05.000,2.2.1,59.0,38.0,28,True,PyCQA/autoflake,autoflake,conda-forge/autoflake,,769.0,,https://pypi.org/project/autoflake,2023-09-01 06:19:21.000,769.0,1611384.0,1620615.0,https://anaconda.org/conda-forge/autoflake,2023-06-16 16:14:56.765,516949.0,2.0,,,,,,,,,,,,,,,,, +125,astor,berkerpeksag/astor,ast,Python AST read/write.,,https://github.com/berkerpeksag/astor,https://github.com/berkerpeksag/astor,BSD-3-Clause,2012-09-19 23:02:51.000,2023-09-06 00:31:07.000,2023-09-06 00:31:07,265.0,,98.0,24.0,109.0,40.0,78.0,752.0,2019-12-10 01:50:33.000,0.8.1,14.0,33.0,28,True,,astor,conda-forge/astor,,2206.0,,https://pypi.org/project/astor,2019-12-10 01:50:33.000,2206.0,5010591.0,5038666.0,https://anaconda.org/conda-forge/astor,2023-06-16 13:23:08.435,2246022.0,2.0,,,,,,,,,,,,,,,,, +126,PyHamcrest,hamcrest/PyHamcrest,testing,Hamcrest matchers for Python.,,https://github.com/hamcrest/PyHamcrest,https://github.com/hamcrest/PyHamcrest,,2010-12-24 02:55:56.000,2023-11-27 19:46:11.000,2023-11-27 19:46:11,647.0,8.0,106.0,25.0,160.0,21.0,65.0,727.0,2023-10-22 15:51:05.000,V2.1.0,25.0,43.0,28,False,,pyhamcrest,conda-forge/pyhamcrest,,38104.0,36254.0,https://pypi.org/project/pyhamcrest,2023-10-22 15:47:25.000,1850.0,1600211.0,1605467.0,https://anaconda.org/conda-forge/pyhamcrest,2023-06-16 13:17:20.732,478350.0,3.0,,,,,,,,,,,,,,,,, +127,buildout,buildout/buildout,build-tools,Buildout is a deployment automation tool written in and extended with Python.,,https://github.com/buildout/buildout,https://github.com/buildout/buildout,ZPL-2.1,2012-03-25 21:47:18.000,2023-10-30 05:29:50.000,2022-11-08 15:07:52,1711.0,,172.0,54.0,275.0,134.0,233.0,566.0,2023-02-03 17:52:32.253,2.13.7,125.0,93.0,28,False,,zc.buildout,conda-forge/zc.buildout,,1045.0,,https://pypi.org/project/zc.buildout,2023-02-03 17:52:32.253,1045.0,41799.0,42958.0,https://anaconda.org/conda-forge/zc.buildout,2023-06-16 19:27:31.340,31294.0,3.0,,,,,,,,,,,,,,,,, +128,python-coloredlogs,xolox/python-coloredlogs,logging,Colored terminal output for Pythons logging module.,,https://github.com/xolox/python-coloredlogs,https://github.com/xolox/python-coloredlogs,MIT,2013-05-30 18:57:12.000,2023-11-13 14:46:14.052,2021-06-11 10:22:09,273.0,,40.0,10.0,36.0,29.0,52.0,518.0,,,7.0,15.0,28,False,,coloredlogs,anaconda/coloredlogs,,32115.0,32115.0,https://pypi.org/project/coloredlogs,,,16977837.0,16977998.0,https://anaconda.org/anaconda/coloredlogs,2023-11-13 14:46:14.052,12146.0,3.0,,,,,,,,,,,,,,,,, +129,sphinx-autobuild,executablebooks/sphinx-autobuild,documentation,Watch a Sphinx directory and rebuild the documentation when a change is detected. Also includes a livereload enabled..,,https://github.com/executablebooks/sphinx-autobuild,https://github.com/executablebooks/sphinx-autobuild,MIT,2013-12-25 17:09:56.000,2023-11-21 17:00:19.000,2023-10-28 12:08:30,302.0,7.0,66.0,20.0,65.0,25.0,53.0,489.0,2022-04-20 19:59:44.000,2021.03.14,4.0,25.0,28,True,,sphinx-autobuild,conda-forge/sphinx-autobuild,['sphinx'],20974.0,20974.0,https://pypi.org/project/sphinx-autobuild,,,502404.0,505270.0,https://anaconda.org/conda-forge/sphinx-autobuild,2023-06-16 13:21:20.882,229284.0,2.0,,,,,,,,,,,,,,,,, +130,pep8-naming,PyCQA/pep8-naming,linters,Naming Convention checker for Python.,,https://github.com/PyCQA/pep8-naming,https://github.com/PyCQA/pep8-naming,Saxpath,2013-02-09 18:32:52.000,2023-11-07 04:28:34.000,2023-11-07 04:28:34,266.0,8.0,148.0,16.0,130.0,18.0,79.0,474.0,2022-12-19 20:46:55.580,0.13.3,27.0,36.0,28,False,,pep8-naming,conda-forge/pep8-naming,,52804.0,50910.0,https://pypi.org/project/pep8-naming,2022-12-19 20:46:55.580,1894.0,1638966.0,1642768.0,https://anaconda.org/conda-forge/pep8-naming,2023-06-16 13:15:30.349,357422.0,2.0,,,,,,,,,,,,,,,,, +131,astunparse,simonpercivall/astunparse,ast,An AST unparser for Python.,,https://github.com/simonpercivall/astunparse,https://github.com/simonpercivall/astunparse,BSD-3-Clause,2014-03-31 15:34:54.000,2023-08-18 23:41:57.000,2019-12-22 18:11:19,86.0,,50.0,9.0,37.0,25.0,22.0,211.0,2019-12-22 18:12:11.000,1.6.3,11.0,10.0,28,False,,astunparse,conda-forge/astunparse,,95129.0,94658.0,https://pypi.org/project/astunparse,2019-12-22 18:12:11.000,471.0,8450934.0,8477077.0,https://anaconda.org/conda-forge/astunparse,2023-06-16 13:24:50.388,2039198.0,2.0,,,,,,,,,,,,,,,,, +132,flake8-quotes,zheller/flake8-quotes,linters,Flake8 extension for checking quotes in python.,,https://github.com/zheller/flake8-quotes,https://github.com/zheller/flake8-quotes,MIT,2014-03-10 00:05:08.000,2023-11-11 14:33:43.000,2022-12-19 16:44:44,108.0,,39.0,5.0,66.0,8.0,44.0,170.0,2022-12-19 16:50:01.696,3.3.2,41.0,32.0,28,True,,flake8-quotes,conda-forge/flake8-quotes,['flake8'],21296.0,20367.0,https://pypi.org/project/flake8-quotes,2022-12-19 16:50:01.696,929.0,701105.0,708993.0,https://anaconda.org/conda-forge/flake8-quotes,2023-06-16 13:20:50.267,686329.0,2.0,,,,,,,,,,,,,,,,, +133,flake8-isort,gforcada/flake8-isort,linters,flake8 plugin that integrates isort.,,https://github.com/gforcada/flake8-isort,https://github.com/gforcada/flake8-isort,GPL-2.0,2015-09-12 19:25:34.000,2023-11-03 12:57:59.437,2023-11-03 11:07:13,382.0,16.0,97.0,8.0,95.0,1.0,56.0,158.0,,,14.0,38.0,28,True,,flake8-isort,conda-forge/flake8-isort,['flake8'],24745.0,24745.0,https://pypi.org/project/flake8-isort,,,1193232.0,1194612.0,https://anaconda.org/conda-forge/flake8-isort,2023-11-03 12:57:59.437,56591.0,2.0,,,,,,,,,,,,,,,,, +134,gast,serge-sans-paille/gast,ast,Python AST that abstracts the underlying Python version.,,https://github.com/serge-sans-paille/gast,https://github.com/serge-sans-paille/gast,BSD-3-Clause,2016-07-18 10:39:07.000,2023-11-15 19:55:05.000,2023-11-15 19:55:04,103.0,6.0,31.0,12.0,47.0,3.0,32.0,128.0,2023-04-29 19:44:01.995,0.5.4,21.0,10.0,28,True,,gast,conda-forge/gast,,141801.0,139839.0,https://pypi.org/project/gast,2023-04-29 19:44:01.995,1962.0,13928101.0,13991692.0,https://anaconda.org/conda-forge/gast,2023-07-03 07:21:35.215,2543670.0,2.0,,,,,,,,,,,,,,,,, +135,icecream,gruns/icecream,debugging,Never use print() to debug again.,,https://github.com/gruns/icecream,https://github.com/gruns/icecream,MIT,2018-02-13 18:56:12.000,2023-11-25 15:03:54.000,2022-12-04 22:09:17,262.0,,162.0,48.0,51.0,49.0,71.0,7949.0,2022-07-21 09:20:01.329,2.1.3,17.0,21.0,27,True,,icecream,conda-forge/icecream,,184.0,21.0,https://pypi.org/project/icecream,2022-07-21 09:20:01.329,163.0,290244.0,291133.0,https://anaconda.org/conda-forge/icecream,2023-06-16 19:25:30.341,28461.0,3.0,,,,,,,,,,,,,,,,, +136,PyOxidizer,indygreg/PyOxidizer,packaging,A modern Python application packaging and distribution tool.,,https://github.com/indygreg/PyOxidizer,https://github.com/indygreg/PyOxidizer,MPL-2.0,2018-12-18 23:32:13.000,2023-12-07 18:19:12.000,2023-01-21 22:38:30,6697.0,,209.0,62.0,130.0,309.0,236.0,4977.0,2022-12-30 01:38:05.000,pyoxidizer/0.24.0,22.0,54.0,27,True,,pyoxidizer,,,150.0,150.0,https://pypi.org/project/pyoxidizer,,,10143.0,10413.0,,,,2.0,12711.0,,,,,,,,,,,,,,,, +137,pytype,google/pytype,type-checkers,A static type analyzer for Python code.,,https://github.com/google/pytype,https://github.com/google/pytype,,2015-03-18 20:52:08.000,2023-12-09 05:36:01.161,2023-12-08 19:42:17,6400.0,209.0,262.0,57.0,883.0,143.0,521.0,4428.0,,,79.0,100.0,27,False,,pytype,conda-forge/pytype,,,,https://pypi.org/project/pytype,,,448466.0,452811.0,https://anaconda.org/conda-forge/pytype,2023-12-09 05:36:01.161,182497.0,3.0,,,,,,,-6.0,,,,,,,,,, +138,coala,coala/coala,linters,"coala provides a unified command-line interface for linting and fixing all your code, regardless of the programming..",,https://github.com/coala/coala,https://github.com/coala/coala,AGPL-3.0,2014-05-15 11:35:34.000,2022-07-03 04:03:12.000,2021-06-11 17:11:55,4487.0,,1294.0,101.0,3152.0,657.0,2374.0,3500.0,2017-05-22 15:58:37.000,0.11.0,17.0,483.0,27,False,,coala-bears,,,12.0,12.0,https://pypi.org/project/coala-bears,,,2691.0,2692.0,,,,2.0,176.0,,,,,,,,,,,,,,,, +139,pytest-sugar,Teemu/pytest-sugar,testing,"a plugin for py.test that changes the default look and feel of py.test (e.g. progressbar, show tests that fail..",,https://github.com/Teemu/pytest-sugar,https://github.com/Teemu/pytest-sugar,,2013-06-25 21:09:27.000,2023-08-12 17:17:17.000,2023-08-08 07:31:15,426.0,,70.0,18.0,161.0,23.0,91.0,1182.0,2023-04-10 11:18:29.000,0.9.7,8.0,50.0,27,False,,pytest-sugar,conda-forge/pytest-sugar,['pytest'],23625.0,23625.0,https://pypi.org/project/pytest-sugar,,,1085229.0,1090989.0,https://anaconda.org/conda-forge/pytest-sugar,2023-07-02 12:36:24.393,224627.0,3.0,11.0,,,,,,,,,,,,,,,, +140,cx_Freeze,marcelotduarte/cx_Freeze,packaging,"Create standalone executables from Python scripts, with the same performance and is cross-platform.",,https://github.com/marcelotduarte/cx_Freeze,https://github.com/marcelotduarte/cx_Freeze,,2017-01-22 04:25:52.000,2023-12-13 18:10:50.000,2023-12-13 18:10:43,1794.0,86.0,200.0,28.0,1142.0,43.0,847.0,1176.0,2023-11-29 01:18:22.000,6.15.11,67.0,108.0,27,True,,cx_freeze,conda-forge/cx_freeze,,,,https://pypi.org/project/cx_freeze,,,122517.0,129050.0,https://anaconda.org/conda-forge/cx_freeze,2023-11-29 02:52:55.784,280945.0,2.0,,,,,,,,,,,,,,,,, +141,wily,tonybaloney/wily,code-metrics,"A Python application for tracking, reporting on timing and complexity in Python code.",,https://github.com/tonybaloney/wily,https://github.com/tonybaloney/wily,Apache-2.0,2018-10-11 22:12:25.000,2023-11-05 11:39:24.000,2023-10-11 03:48:44,905.0,9.0,56.0,25.0,123.0,35.0,73.0,1148.0,2023-10-11 03:48:57.000,1.25.0,52.0,24.0,27,True,,wily,,,209.0,200.0,https://pypi.org/project/wily,2023-10-11 03:48:57.000,9.0,16545.0,16545.0,,,,3.0,,,,,,,,,,,,,,,,, +142,pympler,pympler/pympler,profiling,"Development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.",,https://github.com/pympler/pympler,https://github.com/pympler/pympler,Apache-2.0,2012-10-04 23:35:16.000,2023-11-15 19:49:03.000,2022-07-24 14:45:54,478.0,,86.0,10.0,61.0,56.0,53.0,1105.0,2021-12-22 16:55:15.000,1.0.1,17.0,29.0,27,False,,pympler,conda-forge/pympler,,358.0,,https://pypi.org/project/pympler,2021-12-22 16:55:15.000,358.0,1290159.0,1295009.0,https://anaconda.org/conda-forge/pympler,2023-06-16 13:20:11.899,392893.0,3.0,,,,,,,,,,,,,,,,, +143,pytest-testmon,tarpas/pytest-testmon,testing,Selects tests affected by changed files. Executes the right tests first. Continuous test runner when used with pytest-..,,https://github.com/tarpas/pytest-testmon,https://github.com/tarpas/pytest-testmon,MIT,2015-02-02 14:21:10.000,2023-12-05 07:38:40.000,2023-11-23 12:41:05,375.0,9.0,49.0,17.0,79.0,24.0,126.0,742.0,2023-11-07 09:57:34.000,2.1.0,50.0,24.0,27,True,,pytest-testmon,conda-forge/pytest-testmon,['pytest'],1192.0,1192.0,https://pypi.org/project/pytest-testmon,,,171213.0,171793.0,https://anaconda.org/conda-forge/pytest-testmon,2023-06-16 16:09:13.484,40623.0,3.0,,,,,,,,,,,,,,,,, +144,breathe,michaeljones/breathe,documentation,ReStructuredText and Sphinx bridge to Doxygen.,,https://github.com/breathe-doc/breathe,https://github.com/breathe-doc/breathe,,2009-02-03 18:52:25.000,2023-12-08 18:42:20.000,2023-10-24 08:23:51,1761.0,1.0,185.0,19.0,366.0,177.0,399.0,703.0,2023-03-31 19:07:42.000,4.35.0,42.0,107.0,27,False,breathe-doc/breathe,breathe,conda-forge/breathe,,11731.0,11731.0,https://pypi.org/project/breathe,,,303017.0,315499.0,https://anaconda.org/conda-forge/breathe,2023-07-04 04:52:22.769,523552.0,3.0,556.0,,,,,,,,,,,,,,,, +145,pytest-randomly,pytest-dev/pytest-randomly,testing,Pytest plugin to randomly order tests and control random.seed.,,https://github.com/pytest-dev/pytest-randomly,https://github.com/pytest-dev/pytest-randomly,MIT,2016-04-08 15:48:10.000,2023-12-12 22:41:01.000,2023-12-12 22:41:00,605.0,21.0,28.0,5.0,533.0,6.0,54.0,555.0,,,8.0,20.0,27,True,,pytest-randomly,conda-forge/pytest-randomly,,7628.0,7628.0,https://pypi.org/project/pytest-randomly,,,1208285.0,1214804.0,https://anaconda.org/conda-forge/pytest-randomly,2023-08-15 20:36:31.270,169494.0,3.0,,,,,,,,,,,,,,,,, +146,wasabi,ines/wasabi,logging,A lightweight console printing and formatting toolkit.,,https://github.com/explosion/wasabi,https://github.com/explosion/wasabi,MIT,2018-11-17 14:40:55.000,2023-11-03 14:34:37.000,2023-11-03 14:34:37,258.0,1.0,25.0,15.0,35.0,4.0,5.0,431.0,2023-06-07 07:37:46.000,1.1.2,41.0,14.0,27,True,explosion/wasabi,wasabi,conda-forge/wasabi,,38371.0,38046.0,https://pypi.org/project/wasabi,2023-06-07 07:36:02.865,325.0,5871312.0,5892912.0,https://anaconda.org/conda-forge/wasabi,2023-06-07 10:00:19.970,1252811.0,3.0,,,,,,,,,,,,,,,,, +147,nitpick,andreoliwa/nitpick,linters,Enforce the same settings on multiple projects.,,https://github.com/andreoliwa/nitpick,https://github.com/andreoliwa/nitpick,MIT,2018-03-23 14:25:24.000,2023-12-11 19:44:06.000,2023-11-20 21:25:51,861.0,43.0,21.0,4.0,508.0,47.0,82.0,371.0,2023-08-19 01:46:45.000,0.34.0,52.0,16.0,27,True,,nitpick,,['flake8'],1285.0,1272.0,https://pypi.org/project/nitpick,2023-08-19 01:46:40.000,13.0,31892.0,31892.0,,,,2.0,5.0,,,,,,,,,,,,,,,, +148,factory_boy,FactoryBoy/factory_boy,testing,A test fixtures replacement for Python.,,https://github.com/FactoryBoy/factory_boy,https://github.com/FactoryBoy/factory_boy,MIT,2011-05-11 08:26:59.000,2023-12-11 11:13:27.000,2023-11-29 13:56:25,994.0,7.0,363.0,42.0,491.0,168.0,395.0,3253.0,,,11.0,129.0,26,True,,factory_boy,conda-forge/factory_boy,,,,https://pypi.org/project/factory_boy,,,3429687.0,3433264.0,https://anaconda.org/conda-forge/factory_boy,2023-07-19 13:42:09.417,139503.0,3.0,,,,,,,,,,,,,,,,, +149,pybuilder,pybuilder/pybuilder,build-tools,Software build automation tool for Python.,,https://github.com/pybuilder/pybuilder,https://github.com/pybuilder/pybuilder,Apache-2.0,2012-07-23 11:38:06.000,2023-10-05 20:40:10.000,2023-07-10 03:17:08,1424.0,,237.0,91.0,385.0,87.0,424.0,1596.0,2023-07-10 03:25:42.000,0.13.10,11.0,39.0,26,True,,pybuilder,conda-forge/pybuilder,,,,https://pypi.org/project/pybuilder,,,26139.0,28543.0,https://anaconda.org/conda-forge/pybuilder,2023-09-26 20:19:01.834,60103.0,3.0,,,,,,,,,,,,,,,,, +150,stackprinter,cknd/stackprinter,logging,Debugging-friendly exceptions for Python.,,https://github.com/cknd/stackprinter,https://github.com/cknd/stackprinter,MIT,2018-09-05 10:58:47.000,2023-11-27 07:51:58.000,2023-11-24 20:16:12,210.0,6.0,36.0,8.0,36.0,6.0,24.0,1256.0,2023-11-24 20:11:45.000,0.2.11,8.0,7.0,26,True,,stackprinter,conda-forge/stackprinter,,320.0,320.0,https://pypi.org/project/stackprinter,,,287871.0,288036.0,https://anaconda.org/conda-forge/stackprinter,2023-06-16 16:15:48.838,8922.0,3.0,,,,,,,,,,,,,,,,, +151,pdoc3,pdoc3/pdoc,documentation,Auto-generate API documentation for Python projects.,,https://github.com/pdoc3/pdoc,https://github.com/pdoc3/pdoc,AGPL-3.0,2019-01-02 02:32:40.000,2023-11-27 00:42:20.000,2022-12-21 03:55:00,575.0,,142.0,8.0,119.0,107.0,205.0,1046.0,2019-01-24 16:15:02.000,0.3.11,5.0,58.0,26,True,,pdoc3,anaconda/pdoc3,,3754.0,3754.0,https://pypi.org/project/pdoc3,,,170187.0,170223.0,https://anaconda.org/anaconda/pdoc3,2023-06-16 16:19:13.966,1769.0,3.0,,,,,,,,,,,,,,,,, +152,Mamba Test Runner,nestorsalceda/mamba,testing,The definitive testing tool for Python. Born under the banner of Behavior Driven Development (BDD).,,https://github.com/nestorsalceda/mamba,https://github.com/nestorsalceda/mamba,MIT,2013-03-12 18:53:42.000,2023-11-09 15:31:43.000,2023-11-09 15:30:55,473.0,5.0,64.0,24.0,86.0,28.0,52.0,510.0,2023-11-09 15:31:52.000,0.11.3,8.0,23.0,26,True,,mamba,,,888.0,888.0,https://pypi.org/project/mamba,,,6613.0,6613.0,,,,3.0,,,,,,,,,,,,,,,,, +153,darglint,terrencepreilly/darglint,linters,A python documentation linter which checks that the docstring description matches the definition.,,https://github.com/terrencepreilly/darglint,https://github.com/terrencepreilly/darglint,MIT,2017-09-25 14:11:21.000,2023-06-16 16:17:00.951,2021-10-18 03:34:23,504.0,,42.0,7.0,61.0,56.0,95.0,482.0,,,18.0,22.0,26,False,,darglint,conda-forge/darglint,,20031.0,20031.0,https://pypi.org/project/darglint,,,404381.0,405994.0,https://anaconda.org/conda-forge/darglint,2023-06-16 16:17:00.951,82302.0,3.0,,,,,,,,,,,,,,,,, +154,docformatter,myint/docformatter,formatters,Formats docstrings to follow PEP 257.,,https://github.com/PyCQA/docformatter,https://github.com/PyCQA/docformatter,MIT,2012-05-26 21:40:48.000,2023-11-04 10:33:24.000,2023-10-15 16:08:38,586.0,2.0,57.0,9.0,122.0,18.0,129.0,473.0,2023-07-12 01:47:02.331,1.7.5,62.0,30.0,26,True,PyCQA/docformatter,docformatter,conda-forge/docformatter,,3403.0,3246.0,https://pypi.org/project/docformatter,2023-07-12 01:47:02.331,157.0,386560.0,389294.0,https://anaconda.org/conda-forge/docformatter,2023-07-18 03:59:16.364,106620.0,3.0,11.0,,,,,,,,,,,,,,,, +155,flake8-eradicate,wemake-services/flake8-eradicate,linters,Flake8 plugin to find commented out or dead code.,,https://github.com/wemake-services/flake8-eradicate,https://github.com/wemake-services/flake8-eradicate,MIT,2018-09-21 06:58:51.000,2023-06-01 15:43:14.086,2023-05-31 09:56:43,371.0,,14.0,5.0,256.0,19.0,31.0,304.0,2023-05-31 09:59:03.360,1.5.0,16.0,16.0,26,True,,flake8-eradicate,conda-forge/flake8-eradicate,['flake8'],17939.0,17819.0,https://pypi.org/project/flake8-eradicate,2023-05-31 09:59:03.360,120.0,581958.0,582368.0,https://anaconda.org/conda-forge/flake8-eradicate,2023-06-01 15:43:14.086,13140.0,3.0,,,,,,,,,,,,,,,,, +156,check-manifest,mgedmin/check-manifest,linters,Tool to check the completeness of MANIFEST.in for Python packages.,,https://github.com/mgedmin/check-manifest,https://github.com/mgedmin/check-manifest,MIT,2013-03-05 15:27:20.000,2023-10-04 13:12:44.000,2023-10-04 13:12:43,568.0,3.0,39.0,6.0,71.0,20.0,76.0,282.0,,,43.0,22.0,26,True,,check-manifest,conda-forge/check-manifest,,12947.0,9729.0,https://pypi.org/project/check-manifest,2022-12-05 08:17:08.785,3218.0,197883.0,199691.0,https://anaconda.org/conda-forge/check-manifest,2023-06-16 16:12:23.756,108524.0,3.0,,,,,,,,,,,,,,,,, +157,MonkeyType,Instagram/MonkeyType,refactoring,A Python library that generates static type annotations by collecting runtime types.,,https://github.com/Instagram/MonkeyType,https://github.com/Instagram/MonkeyType,BSD-3-Clause,2017-07-11 00:19:00.000,2023-12-10 20:49:12.000,2023-09-21 19:22:19,335.0,2.0,162.0,54.0,136.0,42.0,135.0,4427.0,2023-03-20 14:10:04.829,23.3.0,23.0,47.0,25,True,,monkeytype,conda-forge/monkeytype,,28.0,,https://pypi.org/project/monkeytype,2023-03-20 14:10:04.829,28.0,88687.0,89475.0,https://anaconda.org/conda-forge/monkeytype,2023-06-16 16:09:34.593,56011.0,2.0,,,,,,,,,,,,,,,,, +158,uiautomator,xiaocong/uiautomator,testing,Python wrapper of Android uiautomator test tool.,,https://github.com/xiaocong/uiautomator,https://github.com/xiaocong/uiautomator,MIT,2013-08-18 03:38:50.000,2023-02-28 00:25:02.000,2020-11-16 01:36:32,316.0,,621.0,157.0,35.0,166.0,119.0,1971.0,2017-02-20 12:00:41.000,0.2.7,1.0,13.0,25,False,,uiautomator,,,257.0,257.0,https://pypi.org/project/uiautomator,,,25641.0,25641.0,,,,3.0,,,,,,,,,,,,,,,,, +159,dephell,dephell/dephell,dependency-managers,"Python project management. Manage packages: convert between formats, lock, install, resolve, isolate, test, build..",,https://github.com/dephell/dephell,https://github.com/dephell/dephell,MIT,2018-08-31 17:39:18.000,2021-01-11 21:31:40.000,2021-01-11 21:31:39,2145.0,,113.0,26.0,221.0,100.0,161.0,1758.0,2020-04-28 06:31:17.000,.0.8.3,11.0,37.0,25,False,,dephell,,,824.0,824.0,https://pypi.org/project/dephell,,,2859.0,2863.0,,,,3.0,253.0,,,,,,,,,,,,,,,, +160,Diamond,python-diamond/Diamond,profiling,Diamond is a python daemon that collects system metrics and publishes them to Graphite (and others). It is capable of..,,https://github.com/python-diamond/Diamond,https://github.com/python-diamond/Diamond,MIT,2013-10-11 23:32:13.000,2023-11-01 17:50:44.000,2023-11-01 17:50:44,3337.0,1.0,573.0,92.0,534.0,66.0,170.0,1723.0,,,,387.0,25,True,,diamond,,,159.0,159.0,https://pypi.org/project/diamond,,,7112.0,7112.0,,,,3.0,,,,,,,,,,,,,,,,, +161,safety,pyupio/safety,security,Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for..,,https://github.com/pyupio/safety,https://github.com/pyupio/safety,MIT,2016-10-19 13:22:56.000,2023-11-27 10:30:19.000,2023-11-15 15:09:44,591.0,1.0,128.0,32.0,307.0,55.0,119.0,1564.0,2022-12-08 19:08:48.000,2.3.5,18.0,41.0,25,True,,safety,conda-forge/safety,,29.0,29.0,https://pypi.org/project/safety,,,1094130.0,1105465.0,https://anaconda.org/conda-forge/safety,2023-06-16 16:15:06.955,87704.0,3.0,438354.0,,,,,,,,,,,,,,,, +162,pylama,klen/pylama,linters,Code audit tool for python.,,https://github.com/klen/pylama,https://github.com/klen/pylama,MIT,2012-08-17 10:10:10.000,2023-10-26 13:50:09.000,2022-08-08 11:25:05,700.0,,96.0,20.0,98.0,51.0,95.0,1030.0,,,,46.0,25,False,,pylama,,,6199.0,6199.0,https://pypi.org/project/pylama,,,193477.0,193477.0,,,,3.0,,,,,,,,,,,,,,,,, +163,redbaron,pycqa/redbaron,refactoring,Bottom-up approach to refactoring in python.,,https://github.com/PyCQA/redbaron,https://github.com/PyCQA/redbaron,LGPL-3.0+,2014-03-23 05:34:39.000,2022-01-29 21:54:37.000,2021-12-09 03:12:36,1672.0,,74.0,28.0,106.0,80.0,48.0,677.0,2019-03-17 19:03:54.000,0.9.2,15.0,34.0,25,False,,redbaron,,,749.0,614.0,https://pypi.org/project/redbaron,2019-03-17 18:59:01.000,135.0,61179.0,61179.0,,,,2.0,,,,,,,,,,,,,,,,, +164,paver,paver/paver,build-tools,Python-based project scripting.,,https://github.com/paver/paver,https://github.com/paver/paver,BSD-3-Clause,2010-11-11 09:43:52.000,2023-11-23 17:26:08.000,2023-04-16 21:21:14,535.0,,83.0,13.0,86.0,41.0,93.0,456.0,2017-12-31 01:13:41.000,1.3.4,28.0,46.0,25,True,,paver,conda-forge/paver,,961.0,,https://pypi.org/project/paver,2017-12-31 01:13:41.000,961.0,53331.0,53660.0,https://anaconda.org/conda-forge/paver,2023-06-16 13:19:05.560,28036.0,3.0,,,,,,,,,,,,,,,,, +165,pytest-lazy-fixture,tvorog/pytest-lazy-fixture,testing,It helps to use fixtures in pytest.mark.parametrize.,,https://github.com/TvoroG/pytest-lazy-fixture,https://github.com/TvoroG/pytest-lazy-fixture,MIT,2016-09-29 23:52:48.000,2023-10-02 21:31:31.000,2022-01-27 10:32:34,98.0,,24.0,8.0,23.0,20.0,21.0,353.0,2020-02-01 18:04:00.000,0.6.3,12.0,9.0,25,False,,pytest-lazy-fixture,conda-forge/pytest-lazy-fixture,['pytest'],2373.0,2202.0,https://pypi.org/project/pytest-lazy-fixture,2020-02-01 18:04:00.000,171.0,567521.0,574579.0,https://anaconda.org/conda-forge/pytest-lazy-fixture,2023-06-16 13:24:44.425,564671.0,3.0,,,,,,,,,,,,,,,,, +166,py2app,ronaldoussoren/py2app,packaging,py2app is a Python setuptools command which will allow you to make standalone Mac OS X application bundles and plugins..,,https://github.com/ronaldoussoren/py2app,https://github.com/ronaldoussoren/py2app,,2020-01-14 11:27:41.000,2023-12-11 16:46:42.000,2023-04-16 08:34:06,854.0,,31.0,13.0,30.0,178.0,307.0,289.0,2022-12-28 12:12:07.000,0.28.5,7.0,31.0,25,False,,py2app,,,4613.0,4613.0,https://pypi.org/project/py2app,,,22791.0,22791.0,,,,3.0,,,,,,,,,,,,,,,,, +167,xenon,rubik/xenon,code-metrics,Monitoring tool based on radon.,,https://github.com/rubik/xenon,https://github.com/rubik/xenon,MIT,2014-02-14 14:19:20.000,2023-11-07 20:23:38.000,2023-08-12 17:19:26,116.0,,21.0,6.0,17.0,8.0,28.0,229.0,2023-08-12 17:24:35.000,0.9.1,22.0,10.0,25,True,,xenon,conda-forge/xenon,,1246.0,1160.0,https://pypi.org/project/xenon,2023-08-12 17:24:35.000,86.0,153165.0,153461.0,https://anaconda.org/conda-forge/xenon,2023-06-16 13:23:09.938,21926.0,3.0,,,,,,,,,,,,,,,,, +168,pytest-datadir,gabrielcnr/pytest-datadir,testing,pytest plugin for manipulating test data directories and files.,,https://github.com/gabrielcnr/pytest-datadir,https://github.com/gabrielcnr/pytest-datadir,MIT,2015-07-02 21:41:44.000,2023-11-13 19:52:08.000,2023-11-13 19:51:32,136.0,13.0,22.0,7.0,55.0,5.0,14.0,222.0,2023-10-03 12:20:54.000,1.5.0,11.0,11.0,25,True,,pytest-datadir,conda-forge/pytest-datadir,['pytest'],1685.0,1556.0,https://pypi.org/project/pytest-datadir,2023-10-03 12:20:51.000,129.0,316890.0,333663.0,https://anaconda.org/conda-forge/pytest-datadir,2023-10-03 20:24:49.695,234812.0,3.0,2.0,,,,,,,,,,,,,,,, +169,data-science-types,predictive-analytics-lab/data-science-types,linters,"Mypy stubs, i.e., type information, for numpy, pandas and matplotlib.",,https://github.com/wearepal/data-science-types,https://github.com/wearepal/data-science-types,Apache-2.0,2019-09-20 11:45:49.000,2023-06-16 19:24:01.290,2021-02-16 17:29:00,446.0,,52.0,10.0,171.0,33.0,23.0,198.0,2021-02-16 16:47:31.000,0.2.23,26.0,44.0,25,False,wearepal/data-science-types,data-science-types,conda-forge/data-science-types,,1163.0,1114.0,https://pypi.org/project/data-science-types,2021-02-16 16:45:03.000,49.0,65696.0,65986.0,https://anaconda.org/conda-forge/data-science-types,2023-06-16 19:24:01.290,10457.0,3.0,,,,,,,,,,,,,,,,, +170,asteval,newville/asteval,ast,minimalistic evaluator of python expression using ast module.,,https://github.com/newville/asteval,https://github.com/newville/asteval,MIT,2012-03-31 22:10:33.000,2023-11-06 14:59:15.000,2023-11-06 14:59:10,539.0,4.0,39.0,10.0,58.0,4.0,61.0,165.0,2023-07-16 18:33:22.000,0.9.31,32.0,24.0,25,True,,asteval,conda-forge/asteval,,182.0,,https://pypi.org/project/asteval,2023-07-16 18:25:02.803,182.0,280835.0,291025.0,https://anaconda.org/conda-forge/asteval,2023-07-16 20:56:29.139,346460.0,3.0,,,,,,,,,,,,,,,,, +171,flake8-commas,PyCQA/flake8-commas,linters,Flake8 extension for enforcing trailing commas in python.,,https://github.com/PyCQA/flake8-commas,https://github.com/PyCQA/flake8-commas,MIT,2015-12-16 09:25:13.000,2021-10-13 19:25:52.000,2021-10-13 19:25:45,176.0,,28.0,4.0,38.0,5.0,26.0,127.0,2021-10-13 19:25:39.000,2.1.0,20.0,12.0,25,False,,flake8-commas,,['flake8'],17294.0,16898.0,https://pypi.org/project/flake8-commas,2021-10-13 19:25:39.000,396.0,379645.0,379645.0,,,,3.0,,,,,,,,,,,,,,,,, +172,flake8-builtins,gforcada/flake8-builtins,linters,Check for python builtins being used as variables or parameters.,,https://github.com/gforcada/flake8-builtins,https://github.com/gforcada/flake8-builtins,GPL-2.0,2016-03-02 00:26:51.000,2023-12-09 22:44:55.000,2023-12-09 22:44:55,325.0,40.0,22.0,4.0,73.0,1.0,45.0,107.0,,,20.0,18.0,25,True,,flake8-builtins,conda-forge/flake8-builtins,['flake8'],9938.0,9938.0,https://pypi.org/project/flake8-builtins,,,712644.0,729155.0,https://anaconda.org/conda-forge/flake8-builtins,2023-11-03 15:56:08.359,231167.0,3.0,,,,,,,,,,,,,,,,, +173,better-exceptions,Qix-/better-exceptions,logging,"Pretty and useful exceptions in Python, automatically.",,https://github.com/Qix-/better-exceptions,https://github.com/Qix-/better-exceptions,MIT,2017-03-12 11:23:04.000,2023-03-23 11:09:43.000,2023-01-05 00:12:47,102.0,,207.0,70.0,56.0,32.0,46.0,4488.0,2021-01-29 16:48:55.000,0.3.3,16.0,17.0,24,True,,better-exceptions,,,90.0,,https://pypi.org/project/better-exceptions,2021-01-29 16:48:55.000,90.0,120809.0,120809.0,,,,3.0,,,,,,,,,,,,,,,,, +174,Bowler,facebookincubator/Bowler,refactoring,Safe code refactoring for modern Python.,,https://github.com/facebookincubator/Bowler,https://github.com/facebookincubator/Bowler,MIT,2018-06-07 21:44:17.000,2023-09-26 20:28:23.000,2023-01-20 18:08:14,186.0,,96.0,34.0,76.0,44.0,34.0,1490.0,2020-09-17 01:55:39.000,0.9.0,8.0,27.0,24,True,,bowler,conda-forge/bowler,,15.0,,https://pypi.org/project/bowler,2020-09-17 01:55:39.000,15.0,73196.0,73489.0,https://anaconda.org/conda-forge/bowler,2023-06-16 16:11:48.791,17929.0,3.0,,,,,,,,,,,,,,,,, +175,pytest-watch,joeyespo/pytest-watch,testing,Local continuous test runner with pytest and watchdog.,,https://github.com/joeyespo/pytest-watch,https://github.com/joeyespo/pytest-watch,MIT,2015-01-12 02:08:20.000,2023-09-28 21:11:23.665,2019-06-15 20:36:43,183.0,,55.0,12.0,49.0,40.0,44.0,710.0,,,1.0,16.0,24,False,,pytest-watch,conda-forge/pytest-watch,['pytest'],9032.0,9032.0,https://pypi.org/project/pytest-watch,,,472813.0,475267.0,https://anaconda.org/conda-forge/pytest-watch,2023-09-28 21:11:23.665,95719.0,3.0,,,,,,,,,,,,,,,,, +176,Fixit,Instagram/Fixit,linters,Advanced Python linting framework with auto-fixes and hierarchical configuration that makes it easy to write custom..,,https://github.com/Instagram/Fixit,https://github.com/Instagram/Fixit,,2020-02-20 19:09:01.000,2023-12-01 12:16:40.000,2023-11-15 22:32:55,324.0,17.0,58.0,27.0,307.0,27.0,82.0,621.0,2023-10-26 02:37:12.000,2.1.0,11.0,41.0,24,False,,fixit,,,57.0,54.0,https://pypi.org/project/fixit,2023-10-26 02:37:12.000,3.0,55069.0,55069.0,,,,3.0,,,,,,,,,,,,,,,,, +177,blacken-docs,asottile/blacken-docs,documentation,Run `black` on python code blocks in documentation files.,,https://github.com/adamchainz/blacken-docs,https://github.com/adamchainz/blacken-docs,MIT,2018-06-03 02:48:01.000,2023-12-12 22:40:52.000,2023-12-12 22:40:51,383.0,17.0,38.0,9.0,234.0,12.0,63.0,577.0,,,13.0,19.0,24,True,adamchainz/blacken-docs,blacken-docs,conda-forge/blacken-docs,,793.0,793.0,https://pypi.org/project/blacken-docs,,,128679.0,129479.0,https://anaconda.org/conda-forge/blacken-docs,2023-08-16 10:40:14.275,32801.0,3.0,,,,,,,,,,,,,,,,, +178,interrogate,econchick/interrogate,documentation,Explain yourself! Interrogate a codebase for docstring coverage.,,https://github.com/econchick/interrogate,https://github.com/econchick/interrogate,MIT,2020-04-24 02:33:25.000,2023-12-04 20:45:07.000,2023-09-07 20:35:16,182.0,,42.0,5.0,108.0,29.0,27.0,513.0,,,,12.0,24,True,,interrogate,,,5574.0,5574.0,https://pypi.org/project/interrogate,,,85130.0,85130.0,,,,3.0,,,,,,,,,,,,,,,,, +179,mkdocs-awesome-pages-plugin,lukasgeiter/mkdocs-awesome-pages-plugin,documentation,An MkDocs plugin that simplifies configuring page titles and their order.,,https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin,https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin,MIT,2018-02-06 21:09:24.000,2023-12-06 02:10:10.000,2023-11-11 20:57:26,97.0,1.0,30.0,7.0,18.0,16.0,59.0,392.0,2023-08-19 21:31:54.000,2.9.2,24.0,7.0,24,True,,mkdocs-awesome-pages-plugin,,['mkdocs'],3565.0,3565.0,https://pypi.org/project/mkdocs-awesome-pages-plugin,,,189627.0,189627.0,,,,3.0,,,,,,,,,,,,,,,,, +180,baron,PyCQA/baron,refactoring,"IDE allow you to refactor code, Baron allows you to write refactoring code.",,https://github.com/PyCQA/baron,https://github.com/PyCQA/baron,LGPL-3.0,2013-03-21 12:19:00.000,2021-12-09 03:34:37.000,2021-12-09 03:33:22,1505.0,,52.0,15.0,100.0,46.0,30.0,283.0,2021-12-09 03:33:32.000,0.10.1,21.0,33.0,24,False,,baron,,,393.0,334.0,https://pypi.org/project/baron,2021-12-09 03:33:32.000,59.0,61291.0,61291.0,,,,3.0,,,,,,,,,,,,,,,,, +181,flake8-import-order,PyCQA/flake8-import-order,linters,Flake8 plugin that checks import order against various Python Style Guides.,,https://github.com/PyCQA/flake8-import-order,https://github.com/PyCQA/flake8-import-order,LGPL-3.0,2014-03-16 12:46:09.000,2023-09-13 20:26:49.000,2023-09-13 20:26:49,293.0,,71.0,10.0,101.0,12.0,90.0,276.0,2022-11-26 20:15:35.517,0.18.2,35.0,46.0,24,True,,flake8-import-order,conda-forge/flake8-import-order,['flake8'],1259.0,,https://pypi.org/project/flake8-import-order,2022-11-26 20:15:35.517,1259.0,432416.0,435281.0,https://anaconda.org/conda-forge/flake8-import-order,2023-06-16 13:24:07.930,243609.0,3.0,,,,,,,,,,,,,,,,, +182,pytest-mypy,dbader/pytest-mypy,testing,Mypy static type checker plugin for Pytest.,,https://github.com/realpython/pytest-mypy,https://github.com/realpython/pytest-mypy,MIT,2016-09-29 14:39:23.000,2023-07-16 21:30:01.000,2023-05-08 06:33:29,274.0,,33.0,9.0,97.0,10.0,53.0,233.0,2022-12-18 18:46:32.000,0.10.3,13.0,16.0,24,True,realpython/pytest-mypy,pytest-mypy,conda-forge/pytest-mypy,['pytest'],3821.0,3821.0,https://pypi.org/project/pytest-mypy,,,340750.0,342754.0,https://anaconda.org/conda-forge/pytest-mypy,2023-06-16 19:18:02.883,92227.0,3.0,,,,,,,,,,,,,,,,, +183,xdoctest,Erotemic/xdoctest,testing,A rewrite of Pythons builtin doctest module (with pytest plugin integration) with AST instead of REGEX.,,https://github.com/Erotemic/xdoctest,https://github.com/Erotemic/xdoctest,Apache-2.0,2017-09-24 01:59:02.000,2023-11-04 20:51:43.000,2023-10-26 00:20:56,853.0,22.0,10.0,5.0,105.0,19.0,27.0,196.0,2023-10-26 00:45:49.000,1.1.2,68.0,9.0,24,True,,xdoctest,conda-forge/xdoctest,,115.0,,https://pypi.org/project/xdoctest,2023-10-26 00:45:49.000,115.0,174539.0,179430.0,https://anaconda.org/conda-forge/xdoctest,2023-10-26 04:48:19.232,195673.0,3.0,,,,,,,,,,,,,,,,,conda-forge/xdoctest +184,flake8-black,peterjc/flake8-black,linters,flake8 plugin to run black for checking Python coding style.,,https://github.com/peterjc/flake8-black,https://github.com/peterjc/flake8-black,MIT,2019-01-10 14:40:26.000,2023-12-04 16:26:06.000,2023-11-07 13:52:10,172.0,4.0,10.0,2.0,54.0,6.0,23.0,162.0,,,12.0,10.0,24,True,,flake8-black,conda-forge/flake8-black,['flake8'],7420.0,7420.0,https://pypi.org/project/flake8-black,,,797814.0,806318.0,https://anaconda.org/conda-forge/flake8-black,2023-06-16 16:15:31.454,459225.0,3.0,,,,,,,,,,,,,,,,, +185,pytkdocs,mkdocstrings/pytkdocs,documentation,Load Python objects documentation.,,https://github.com/mkdocstrings/pytkdocs,https://github.com/mkdocstrings/pytkdocs,ISC,2020-02-04 21:18:34.000,2023-06-16 19:23:18.580,2022-03-07 18:48:36,240.0,,33.0,3.0,45.0,21.0,80.0,48.0,2022-03-07 18:50:03.302,0.16.1,26.0,23.0,24,False,,pytkdocs,conda-forge/pytkdocs,,1352.0,1341.0,https://pypi.org/project/pytkdocs,2022-03-07 18:50:03.302,11.0,75522.0,78097.0,https://anaconda.org/conda-forge/pytkdocs,2023-06-16 19:23:18.580,97880.0,3.0,,,,,,,,,,,,,,,,, +186,xxh,xxh/xxh,shell,"Bring your favorite shell wherever you go through the ssh. Xonsh shell, fish, zsh, osquery and so on.",,https://github.com/xxh/xxh,https://github.com/xxh/xxh,BSD-2-Clause,2019-11-03 12:04:13.000,2023-11-05 13:14:04.000,2023-11-05 13:14:04,772.0,4.0,97.0,43.0,58.0,22.0,62.0,4749.0,2022-09-29 10:18:30.000,0.8.12,89.0,26.0,23,True,,xxh-xxh,,,79.0,79.0,https://pypi.org/project/xxh-xxh,,,244.0,287.0,,,,3.0,2011.0,,,,,,,,,,,,,,,, +187,shiv,linkedin/shiv,packaging,"shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all..",,https://github.com/linkedin/shiv,https://github.com/linkedin/shiv,BSD-2-Clause,2018-03-13 18:46:23.000,2023-10-20 14:34:56.000,2023-09-07 16:41:57,207.0,,86.0,28.0,119.0,42.0,77.0,1654.0,2023-09-07 16:49:17.000,1.0.4,19.0,39.0,23,True,,shiv,,,,,https://pypi.org/project/shiv,,,26392.0,26403.0,,,,3.0,622.0,,,,,,,,,,,,,,,, +188,snoop,alexmojaki/snoop,debugging,"A powerful set of Python debugging tools, based on PySnooper.",,https://github.com/alexmojaki/snoop,https://github.com/alexmojaki/snoop,MIT,2019-05-13 18:45:35.000,2023-12-12 06:18:06.000,2022-12-22 13:48:56,431.0,,33.0,20.0,17.0,22.0,28.0,1024.0,2022-12-22 13:51:11.775,0.4.3,14.0,22.0,23,True,,snoop,conda-forge/snoop,,25.0,,https://pypi.org/project/snoop,2022-12-22 13:51:11.775,25.0,62847.0,63031.0,https://anaconda.org/conda-forge/snoop,2023-06-16 19:27:40.699,4787.0,3.0,,,,,,,,,,,,,,,,, +189,python-devtools,samuelcolvin/python-devtools,logging,Dev tools for python.,,https://github.com/samuelcolvin/python-devtools,https://github.com/samuelcolvin/python-devtools,MIT,2017-08-20 15:30:06.000,2023-12-03 14:25:58.000,2023-09-03 16:50:32,132.0,,48.0,11.0,97.0,21.0,39.0,901.0,2023-09-03 16:53:31.000,0.12.2,18.0,12.0,23,True,,python-devtools,conda-forge/python-devtools,,2489.0,2488.0,https://pypi.org/project/python-devtools,2017-08-21 10:32:25.000,1.0,832.0,1467.0,https://anaconda.org/conda-forge/python-devtools,2023-09-06 00:26:02.432,20320.0,3.0,,,,,,,,,,,,,,,,, +190,pycco,pycco-docs/pycco,documentation,Literate-style documentation generator.,,https://github.com/pycco-docs/pycco,https://github.com/pycco-docs/pycco,MIT,2010-06-29 07:02:31.000,2023-06-12 20:15:00.000,2019-12-20 19:59:49,222.0,,149.0,16.0,66.0,32.0,28.0,838.0,2018-07-25 01:44:55.232,0.6.0,11.0,36.0,23,False,,pycco,,,438.0,323.0,https://pypi.org/project/pycco,2018-07-25 01:44:55.232,115.0,2432.0,2432.0,,,,3.0,,,,,,,,,,,,,,,,, +191,green,CleanCut/green,testing,"Green is a clean, colorful, fast python test runner.",,https://github.com/CleanCut/green,https://github.com/CleanCut/green,MIT,2014-04-01 20:08:18.000,2023-12-07 06:36:29.000,2023-12-05 02:58:34,1101.0,10.0,74.0,26.0,80.0,7.0,174.0,781.0,,,9.0,39.0,23,True,,green,conda-forge/green,,,,https://pypi.org/project/green,,,19931.0,23163.0,https://anaconda.org/conda-forge/green,2023-09-28 06:00:07.530,132532.0,3.0,,,,,,,,,,,,,,,,, +192,py2exe,py2exe/py2exe,packaging,Create standalone Windows programs from Python code.,,https://github.com/py2exe/py2exe,https://github.com/py2exe/py2exe,,2019-03-11 13:16:35.000,2023-10-08 20:35:10.000,2023-10-08 14:56:10,1090.0,13.0,86.0,20.0,35.0,12.0,142.0,689.0,2023-10-07 21:15:17.000,0.13.0.1,18.0,20.0,23,False,,py2exe,,,1906.0,1906.0,https://pypi.org/project/py2exe,,,18315.0,18587.0,,,,3.0,15509.0,,,,,,,,,,,,,,,, +193,eradicate,myint/eradicate,refactoring,Removes commented-out code from Python files.,,https://github.com/PyCQA/eradicate,https://github.com/PyCQA/eradicate,,2012-12-23 04:39:48.000,2023-06-12 14:15:35.396,2023-06-12 09:19:41,183.0,,23.0,5.0,25.0,7.0,16.0,191.0,2023-06-09 06:29:34.000,2.3.0,4.0,13.0,23,False,PyCQA/eradicate,eradicate,conda-forge/eradicate,,14879.0,14879.0,https://pypi.org/project/eradicate,,,662454.0,662771.0,https://anaconda.org/conda-forge/eradicate,2023-06-12 14:15:35.396,10147.0,3.0,,,,,,,,,,,,,,,,, +194,pyenv-virtualenv,pyenv/pyenv-virtualenv,virtual-envs,a pyenv plugin to manage virtualenv (a.k.a. python-virtualenv).,,https://github.com/pyenv/pyenv-virtualenv,https://github.com/pyenv/pyenv-virtualenv,MIT,2013-02-18 12:59:17.000,2023-12-06 03:56:52.000,2023-12-06 03:56:52,505.0,2.0,376.0,74.0,134.0,104.0,229.0,5818.0,2023-07-30 13:52:49.000,1.2.2,10.0,60.0,22,True,,,,,21.0,21.0,,,,,,,,,3.0,,,,,,,,,,,,,,,,, +195,rebound,shobrook/rebound,logging,Command-line tool that instantly fetches Stack Overflow results when an exception is thrown.,,https://github.com/shobrook/rebound,https://github.com/shobrook/rebound,,2018-02-28 04:47:03.000,2023-11-14 14:07:08.706,2022-02-16 05:16:40,168.0,,372.0,77.0,41.0,14.0,38.0,4040.0,2018-12-04 10:11:53.000,2.0.0,52.0,16.0,22,False,,rebound,conda-forge/rebound,,24.0,24.0,https://pypi.org/project/rebound,,,12788.0,20246.0,https://anaconda.org/conda-forge/rebound,2023-11-14 14:07:08.706,320602.0,3.0,235.0,,,,,,,,,,,,,,,, +196,vprof,nvdv/vprof,profiling,Visual profiler for Python.,,https://github.com/nvdv/vprof,https://github.com/nvdv/vprof,BSD-2-Clause,2015-06-29 03:59:39.000,2022-07-15 07:43:03.000,2022-07-15 07:43:03,620.0,,153.0,71.0,32.0,29.0,57.0,3938.0,,,19.0,17.0,22,False,,vprof,,,116.0,116.0,https://pypi.org/project/vprof,,,3387.0,3387.0,,,,3.0,,,,,,,,,,,,,,,,, +197,line_profiler,pyutils/line_profiler,profiling,Line-by-line profiling for Python.,,https://github.com/pyutils/line_profiler,https://github.com/pyutils/line_profiler,,2019-12-10 22:26:33.000,2023-12-08 01:18:26.000,2023-12-05 18:58:24,421.0,25.0,110.0,14.0,158.0,38.0,52.0,2264.0,2023-11-02 23:39:51.000,4.1.2,16.0,43.0,22,False,,line_profiler,conda-forge/line_profiler,,,,https://pypi.org/project/line_profiler,,,334174.0,346384.0,https://anaconda.org/conda-forge/line_profiler,2023-09-27 21:27:52.775,451775.0,3.0,,,,,,,,,,,,,,,,, +198,pyt,python-security/pyt,security,A Static Analysis Tool for Detecting Security Vulnerabilities in Python Web Applications.,,https://github.com/python-security/pyt,https://github.com/python-security/pyt,GPL-2.0,2016-10-26 15:34:48.000,2020-12-25 03:47:37.000,2020-03-08 21:43:06,1576.0,,232.0,69.0,116.0,22.0,78.0,2155.0,2018-11-01 16:02:57.000,0.42,1.0,22.0,22,False,,python-taint,,,94.0,94.0,https://pypi.org/project/python-taint,,,3147.0,3148.0,,,,3.0,116.0,,,,,,,,,,,,,,,, +199,constructor,conda/constructor,packaging,tool for creating installers from conda packages.,,https://github.com/conda/constructor,https://github.com/conda/constructor,,2016-02-12 06:52:50.000,2023-12-14 14:04:32.000,2023-10-16 12:13:27,1136.0,9.0,157.0,33.0,404.0,31.0,298.0,424.0,2023-10-16 12:14:37.000,3.5.0,44.0,70.0,22,False,,,constructor,,16.0,16.0,,,,,108.0,https://anaconda.org/anaconda/constructor,2023-12-12 17:15:44.014,9727.0,3.0,276.0,,,,,,,,,,,,,,,, +200,mkdocs-with-pdf,orzih/mkdocs-with-pdf,documentation,Generate a single PDF file from MkDocs repository.,,https://github.com/orzih/mkdocs-with-pdf,https://github.com/orzih/mkdocs-with-pdf,MIT,2020-02-23 16:34:46.000,2023-06-08 09:34:08.000,2021-10-14 20:29:54,188.0,,68.0,10.0,50.0,55.0,44.0,277.0,2021-07-03 02:09:02.000,0.9.3,27.0,6.0,22,False,,mkdocs-with-pdf,,['mkdocs'],440.0,440.0,https://pypi.org/project/mkdocs-with-pdf,,,32857.0,32857.0,,,,3.0,,,,,,,,,,,,,,,,, +201,releases,bitprophet/releases,documentation,A powerful Sphinx changelog-generating extension.,,https://github.com/bitprophet/releases,https://github.com/bitprophet/releases,BSD-2-Clause,2013-09-16 03:56:37.000,2023-12-01 19:08:01.000,2023-12-01 19:07:59,597.0,6.0,36.0,7.0,27.0,28.0,46.0,174.0,,,5.0,10.0,22,True,,releases,conda-forge/sphinx-releases,['sphinx'],609.0,609.0,https://pypi.org/project/releases,,,17933.0,18679.0,https://anaconda.org/conda-forge/sphinx-releases,2023-06-16 16:08:54.259,49989.0,3.0,,,,,,,,,,,,,,,,, +202,pandas-vet,deppen8/pandas-vet,linters,A plugin for Flake8 that checks pandas code.,,https://github.com/deppen8/pandas-vet,https://github.com/deppen8/pandas-vet,MIT,2019-02-25 05:19:51.000,2023-08-11 17:41:30.000,2023-08-11 15:07:51,233.0,,17.0,6.0,83.0,10.0,41.0,162.0,2023-08-11 15:10:29.000,2023.8.2,7.0,14.0,22,True,,pandas-vet,conda-forge/pandas-vet,['flake8'],412.0,412.0,https://pypi.org/project/pandas-vet,,,31525.0,32300.0,https://anaconda.org/conda-forge/pandas-vet,2023-08-11 17:40:05.281,17042.0,3.0,71.0,,,,,,,,,,,,,,,, +203,lazydocs,ml-tooling/lazydocs,documentation,Generate markdown API documentation from Google-style Python docstring. The lazy alternative to Sphinx.,,https://github.com/ml-tooling/lazydocs,https://github.com/ml-tooling/lazydocs,MIT,2020-11-10 00:31:46.000,2023-11-28 21:10:01.000,2023-06-11 00:08:52,155.0,,34.0,8.0,38.0,6.0,25.0,159.0,2021-07-27 09:00:22.000,0.4.8,18.0,10.0,22,True,,lazydocs,,,211.0,189.0,https://pypi.org/project/lazydocs,2021-07-27 08:05:42.000,22.0,7911.0,7911.0,,,,3.0,,,,,,,,,,,,,,,,, +204,Profiling,what-studio/profiling,profiling,Was an interactive continuous Python profiler.,,https://github.com/what-studio/profiling,https://github.com/what-studio/profiling,BSD-3-Clause,2014-09-03 10:35:57.000,2020-08-24 01:31:58.000,2020-08-24 01:31:58,433.0,,114.0,74.0,25.0,15.0,20.0,2961.0,2015-12-25 11:58:18.000,0.1.1,2.0,18.0,21,False,,profiling,,,65.0,65.0,https://pypi.org/project/profiling,,,1928.0,1928.0,,,,3.0,,,,,,,,,,,,,,,,, +205,pyrasite,lmacken/pyrasite,debugging,Inject code into running Python processes.,,https://github.com/lmacken/pyrasite,https://github.com/lmacken/pyrasite,GPL-3.0,2011-09-10 06:01:20.000,2023-10-08 18:16:39.000,2023-10-08 18:16:39,353.0,2.0,200.0,57.0,44.0,41.0,16.0,2743.0,,,,24.0,21,True,,pyrasite,,,54.0,54.0,https://pypi.org/project/pyrasite,,,31192.0,31192.0,,,,3.0,,,,,,,,,,,,,,,,, +206,sixpack,sixpack/sixpack,testing,Sixpack is a language-agnostic a/b-testing framework.,,https://github.com/sixpack/sixpack,https://github.com/sixpack/sixpack,BSD-2-Clause,2012-11-15 00:01:06.000,2022-08-21 18:43:32.000,2020-08-26 00:32:16,828.0,,183.0,71.0,170.0,67.0,128.0,1756.0,2017-07-24 08:26:03.000,2.5.0,13.0,56.0,21,False,,sixpack,,,11.0,11.0,https://pypi.org/project/sixpack,,,130.0,130.0,,,,3.0,,,,,,,,,,,,,,,,, +207,Birdseye,alexmojaki/birdseye,debugging,Graphical Python debugger which lets you easily view the values of all evaluated expressions.,,https://github.com/alexmojaki/birdseye,https://github.com/alexmojaki/birdseye,MIT,2017-07-22 18:49:20.000,2023-10-16 20:29:11.000,2023-10-16 20:22:41,416.0,1.0,74.0,42.0,48.0,20.0,36.0,1592.0,2023-10-16 20:29:11.000,0.9.5,41.0,10.0,21,True,,birdseye,,,4.0,,https://pypi.org/project/birdseye,2023-10-16 20:29:11.000,4.0,1348.0,1348.0,,,,3.0,,,,,,,,,,,,,,,,, +208,pyannotate,dropbox/pyannotate,refactoring,Auto-generate PEP-484 annotations.,,https://github.com/dropbox/pyannotate,https://github.com/dropbox/pyannotate,Apache-2.0,2017-11-13 20:18:08.000,2022-07-03 08:24:17.000,2021-10-12 20:53:49,95.0,,62.0,28.0,63.0,34.0,33.0,1401.0,2019-09-16 15:37:03.000,1.2.0,9.0,17.0,21,False,,pyannotate,,,160.0,128.0,https://pypi.org/project/pyannotate,2019-09-16 15:37:03.000,32.0,4363.0,4363.0,,,,3.0,,,,,,,,,,,,,,,,, +209,pyflow,David-OConnor/pyflow,dependency-managers,An installation and dependency system for Python.,,https://github.com/David-OConnor/pyflow,https://github.com/David-OConnor/pyflow,MIT,2019-07-15 09:40:29.000,2023-03-07 21:30:59.000,2022-03-11 18:31:51,368.0,,45.0,24.0,55.0,63.0,73.0,1296.0,2021-07-02 13:10:00.000,0.3.1,26.0,28.0,21,False,,pyflow,,,42.0,42.0,https://pypi.org/project/pyflow,,,256.0,381.0,,,,3.0,6502.0,,,,,,,,,,,,,,,, +210,python-hunter,ionelmc/python-hunter,debugging,Hunter is a flexible code tracing toolkit.,,https://github.com/ionelmc/python-hunter,https://github.com/ionelmc/python-hunter,BSD-2-Clause,2015-03-16 18:03:16.000,2023-09-30 00:54:39.787,2023-04-26 09:11:54,1074.0,,43.0,14.0,21.0,42.0,54.0,766.0,2022-09-11 00:45:22.000,3.3.5,51.0,9.0,21,True,,hunter,conda-forge/hunter,,161.0,161.0,https://pypi.org/project/hunter,,,7662.0,9548.0,https://anaconda.org/conda-forge/hunter,2023-09-30 00:54:39.787,54719.0,3.0,,,,,,,,,,,,,,,,, +211,mypy-protobuf,dropbox/mypy-protobuf,linters,open source tools to generate mypy stubs from protobufs.,,https://github.com/nipunn1313/mypy-protobuf,https://github.com/nipunn1313/mypy-protobuf,Apache-2.0,2017-12-11 21:55:05.000,2023-10-25 08:57:33.000,2023-08-03 07:40:25,478.0,,72.0,19.0,455.0,12.0,111.0,601.0,,,11.0,37.0,21,True,nipunn1313/mypy-protobuf,mypy-protobuf,conda-forge/mypy-protobuf,,,,https://pypi.org/project/mypy-protobuf,,,2405729.0,2408987.0,https://anaconda.org/conda-forge/mypy-protobuf,2023-08-20 18:57:58.024,120549.0,3.0,,,,,,,,,,,,,,,,, +212,python-manhole,ionelmc/python-manhole,debugging,Debugging manhole for python applications.,,https://github.com/ionelmc/python-manhole,https://github.com/ionelmc/python-manhole,BSD-2-Clause,2013-06-26 21:49:34.000,2023-06-16 19:26:54.777,2022-12-17 09:19:54,492.0,,23.0,10.0,44.0,7.0,15.0,357.0,2021-03-24 19:56:29.000,1.7.0,14.0,11.0,21,True,,manhole,conda-forge/manhole,,268.0,268.0,https://pypi.org/project/manhole,,,16603.0,17246.0,https://anaconda.org/conda-forge/manhole,2023-06-16 19:26:54.777,18653.0,3.0,,,,,,,,,,,,,,,,, +213,mkdocs-pdf-export-plugin,zhaoterryy/mkdocs-pdf-export-plugin,documentation,An MkDocs plugin to export content pages as PDF files.,,https://github.com/zhaoterryy/mkdocs-pdf-export-plugin,https://github.com/zhaoterryy/mkdocs-pdf-export-plugin,MIT,2018-02-20 15:06:51.000,2023-07-28 19:56:59.000,2021-10-05 01:31:10,72.0,,43.0,19.0,32.0,41.0,46.0,297.0,2020-07-23 01:35:39.000,0.5.8,5.0,11.0,21,False,,mkdocs-pdf-export-plugin,,['mkdocs'],592.0,592.0,https://pypi.org/project/mkdocs-pdf-export-plugin,,,22508.0,22508.0,,,,3.0,,,,,,,,,,,,,,,,, +214,unimport,hakancelik96/unimport,refactoring,The ultimate linter and formatter for removing unused import statements in your code.,,https://github.com/hakancelikdev/unimport,https://github.com/hakancelikdev/unimport,MIT,2019-09-08 09:49:24.000,2023-12-03 13:57:29.000,2023-12-03 13:57:17,487.0,12.0,22.0,5.0,183.0,12.0,103.0,237.0,2023-11-17 20:59:20.000,1.1.0,34.0,16.0,21,True,hakancelikdev/unimport,unimport,,,,,https://pypi.org/project/unimport,,,25913.0,25913.0,,,,3.0,,,,,,,,,,,,,,,,, +215,mkdocs-print-site-plugin,timvink/mkdocs-print-site-plugin,documentation,"MkDocs Plugin that adds an additional page that combines all pages, allowing easy exports to PDF and standalone HTML.",,https://github.com/timvink/mkdocs-print-site-plugin,https://github.com/timvink/mkdocs-print-site-plugin,MIT,2020-08-15 12:02:33.000,2023-10-25 17:48:31.000,2023-10-25 17:48:31,229.0,2.0,14.0,3.0,11.0,10.0,72.0,102.0,2023-08-28 07:28:44.000,2.3.6,41.0,5.0,21,True,,mkdocs-print-site-plugin,,['mkdocs'],265.0,265.0,https://pypi.org/project/mkdocs-print-site-plugin,,,19771.0,19771.0,,,,3.0,,,,,,,,,,,,,,,,, +216,reloadium,reloadware/reloadium,debugging,"Hot Reloading, Profiling and AI debugging for Python.",,https://github.com/reloadware/reloadium,https://github.com/reloadware/reloadium,Apache-2.0,2022-01-15 03:01:41.000,2023-11-09 14:09:59.000,2023-11-09 14:09:58,52.0,3.0,54.0,24.0,28.0,15.0,108.0,2600.0,2023-11-09 12:24:37.000,1.3.3,45.0,3.0,20,True,,reloadium,,,,,https://pypi.org/project/reloadium,2023-11-09 12:24:37.000,,2307.0,2307.0,,,,3.0,,,,,,,,,,,,,,,,, +217,portray,timothycrosley/portray,documentation,Your Project with Great Documentation.,,https://github.com/timothycrosley/portray,https://github.com/timothycrosley/portray,MIT,2019-08-21 05:14:04.000,2023-09-19 11:00:56.000,2023-01-03 00:40:56,266.0,,73.0,17.0,43.0,31.0,32.0,854.0,,,,20.0,20,True,,portray,,,812.0,812.0,https://pypi.org/project/portray,,,11449.0,11449.0,,,,3.0,,,,,,,,,,,,,,,,, +218,sphinx-bootstrap-theme,ryan-roemer/sphinx-bootstrap-theme,documentation,Sphinx Bootstrap Theme.,,https://github.com/ryan-roemer/sphinx-bootstrap-theme,https://github.com/ryan-roemer/sphinx-bootstrap-theme,MIT,2011-12-07 14:53:00.000,2022-02-28 16:14:56.000,2022-02-03 20:25:55,403.0,,188.0,24.0,95.0,49.0,83.0,587.0,,,,39.0,20,False,,sphinx-bootstrap-theme,,['sphinx'],,,https://pypi.org/project/sphinx-bootstrap-theme,,,95126.0,95126.0,,,,3.0,,,,,,,,,,,,,,,,, +219,pytest-docker,avast/pytest-docker,testing,Docker-based integration tests.,,https://github.com/avast/pytest-docker,https://github.com/avast/pytest-docker,MIT,2017-03-07 04:51:13.000,2023-11-15 10:32:32.000,2023-09-01 07:48:02,73.0,,60.0,8.0,58.0,10.0,34.0,365.0,2023-09-01 07:51:04.000,2.0.1,13.0,18.0,20,True,,pytest-docker,,['pytest'],,,https://pypi.org/project/pytest-docker,,,152341.0,152343.0,,,,3.0,132.0,,,,,,,,,,,,,,,, +220,hacking,openstack/hacking,linters,OpenStack Hacking Style Checks. Mirror of code maintained at opendev.org.,,https://github.com/openstack/hacking,https://github.com/openstack/hacking,Apache-2.0,2013-03-26 21:09:28.000,2023-12-08 14:08:46.000,2023-12-06 17:49:22,1073.0,4.0,47.0,33.0,7.0,,,233.0,,,,187.0,20,True,,hacking,,['flake8'],,,https://pypi.org/project/hacking,,,75804.0,75804.0,,,,3.0,,,,,,,-8.0,,,,,,,,,, +221,pip-run,jaraco/pip-run,dependency-managers,pip-run - dynamic dependency loader for Python.,,https://github.com/jaraco/pip-run,https://github.com/jaraco/pip-run,MIT,2016-01-25 01:59:13.000,2023-12-07 05:34:23.000,2023-12-06 16:49:37,835.0,26.0,18.0,8.0,23.0,4.0,64.0,116.0,2023-10-08 23:51:28.000,12.4.0,59.0,20.0,20,True,,pip-run,,,3.0,,https://pypi.org/project/pip-run,2023-10-08 23:51:10.000,3.0,9281.0,9281.0,,,,3.0,,,,,,,,,,,,,,,,, +222,autoimport,lyz-code/autoimport,formatters,Autoimport automatically fixes wrong import statements.,,https://github.com/lyz-code/autoimport,https://github.com/lyz-code/autoimport,GPL-3.0,2020-10-16 22:43:09.000,2023-11-23 11:10:59.000,2023-11-23 11:09:40,546.0,8.0,24.0,3.0,206.0,13.0,32.0,80.0,2023-11-23 11:09:50.000,1.4.0,41.0,15.0,20,True,,autoimport,,,130.0,122.0,https://pypi.org/project/autoimport,2023-11-23 11:09:50.000,8.0,4213.0,4213.0,,,,3.0,,,,,,,,,,,,,,,,, +223,heartrate,alexmojaki/heartrate,profiling,Simple real time visualisation of the execution of a Python program.,,https://github.com/alexmojaki/heartrate,https://github.com/alexmojaki/heartrate,MIT,2019-04-24 17:02:28.000,2023-06-16 19:26:36.247,2021-11-13 14:58:04,27.0,,123.0,33.0,4.0,5.0,5.0,1673.0,2021-11-13 14:58:19.000,0.2.2,4.0,3.0,19,False,,heartrate,conda-forge/heartrate,,57.0,54.0,https://pypi.org/project/heartrate,2021-11-13 14:58:19.000,3.0,370.0,470.0,https://anaconda.org/conda-forge/heartrate,2023-06-16 19:26:36.247,3014.0,3.0,,,,,,,,,,,,,,,,, +224,xar,facebookincubator/xar,packaging,executable archive format.,,https://github.com/facebookincubator/xar,https://github.com/facebookincubator/xar,,2017-06-29 18:15:26.000,2023-12-06 17:38:11.000,2023-12-06 17:31:58,103.0,3.0,54.0,43.0,22.0,7.0,25.0,1561.0,2020-12-02 20:33:26.000,20.12.2,3.0,43.0,19,False,,xar,,,28.0,28.0,https://pypi.org/project/xar,,,492.0,492.0,,,,3.0,,,,,,,,,,,,,,,,, +225,pynsist,takluyver/pynsist,packaging,Build Windows installers for Python applications.,,https://github.com/takluyver/pynsist,https://github.com/takluyver/pynsist,,2014-03-30 19:11:21.000,2022-11-04 09:45:28.000,2022-04-21 14:15:55,556.0,,117.0,33.0,90.0,26.0,144.0,860.0,,,,30.0,19,False,,pynsist,,,207.0,207.0,https://pypi.org/project/pynsist,,,1629.0,1629.0,,,,3.0,,,,,,,,,,,,,,,,, +226,pytest-plugins,man-group/pytest-plugins,testing,A grab-bag of nifty pytest plugins.,,https://github.com/man-group/pytest-plugins,https://github.com/man-group/pytest-plugins,MIT,2015-08-14 07:52:32.000,2023-08-30 11:53:48.000,2022-11-03 10:04:57,807.0,,76.0,23.0,116.0,48.0,58.0,532.0,,,4.0,62.0,19,False,,pytest-virtualenv,conda-forge/pytest-shutil,,,,https://pypi.org/project/pytest-virtualenv,,,55981.0,56918.0,https://anaconda.org/conda-forge/pytest-shutil,2023-06-16 16:13:53.097,60932.0,3.0,,,,,,,,,,,,,,,,, +227,assertpy,ActivisionGameScience/assertpy,testing,Simple assertion library for unit testing in python with a fluent API.,,https://github.com/ActivisionGameScience/assertpy,https://github.com/ActivisionGameScience/assertpy,BSD-3-Clause,2019-11-17 15:47:15.000,2023-09-10 22:29:17.739,2019-10-30 17:50:10,279.0,,61.0,1.0,,,,433.0,,,13.0,10.0,19,False,,assertpy,conda-forge/assertpy,,113.0,,https://pypi.org/project/assertpy,2020-07-19 14:39:02.000,113.0,419041.0,419615.0,https://anaconda.org/conda-forge/assertpy,2023-09-10 22:29:17.739,23562.0,3.0,,,,,,,,,,,,,,,,, +228,vex,sashahart/vex,virtual-envs,Run a command in the named virtualenv.,,https://github.com/sashahart/vex,https://github.com/sashahart/vex,MIT,2014-05-09 03:20:02.000,2021-10-30 20:12:27.000,2019-05-10 19:18:48,200.0,,24.0,14.0,24.0,2.0,40.0,372.0,2019-05-10 19:21:38.000,0.0.19,18.0,3.0,19,False,,vex,,,39.0,29.0,https://pypi.org/project/vex,2019-05-10 19:21:38.000,10.0,4155.0,4155.0,,,,3.0,,,,,,,,,,,,,,,,, +229,flakehell,life4/flakehell,linters,"Flake8 wrapper to make it nice, legacy-friendly, configurable.",,https://github.com/life4/flakehell,https://github.com/life4/flakehell,MIT,2019-08-06 11:37:21.000,2021-01-11 21:35:41.000,2021-01-11 21:35:40,368.0,,47.0,5.0,68.0,4.0,,232.0,2021-01-11 18:41:10.489,0.9.0,28.0,16.0,19,False,,flakehell,,['flake8'],18.0,,https://pypi.org/project/flakehell,2021-01-11 18:41:10.489,18.0,20076.0,20077.0,,,,3.0,72.0,,,,,,,,,,,,,,,, +230,typed_ast,python/typed_ast,ast,Modified fork of CPythons ast module that parses `# type:` comments.,,https://github.com/python/typed_ast,https://github.com/python/typed_ast,,2016-02-16 22:40:09.000,2023-09-22 19:48:21.052,2023-07-03 22:55:34,205.0,,56.0,20.0,109.0,1.0,86.0,225.0,,,17.0,26.0,19,False,,typed_ast,conda-forge/typed-ast,,,,https://pypi.org/project/typed_ast,,,7339392.0,7503142.0,https://anaconda.org/conda-forge/typed-ast,2023-09-22 19:48:21.052,6222512.0,3.0,,,,,,,-10.0,,,,,,,,,, +231,flake8-simplify,MartinThoma/flake8-simplify,linters,A flake8 plugin that helps you to simplify code.,,https://github.com/MartinThoma/flake8-simplify,https://github.com/MartinThoma/flake8-simplify,MIT,2020-09-19 16:59:41.000,2023-12-07 03:43:04.000,2023-09-24 09:24:40,143.0,12.0,18.0,5.0,70.0,47.0,72.0,171.0,2022-07-28 16:33:54.000,0.19.3,21.0,14.0,19,True,,flake8-simplify,conda-forge/flake8-simplify,,,,https://pypi.org/project/flake8-simplify,,,289859.0,290853.0,https://anaconda.org/conda-forge/flake8-simplify,2023-09-26 17:41:17.851,35800.0,3.0,,,,,,,,,,,,,,,,, +232,dodgy,landscapeio/dodgy,security,Looks at Python code to search for things which look dodgy such as passwords or diffs.,,https://github.com/landscapeio/dodgy,https://github.com/landscapeio/dodgy,MIT,2013-12-25 12:22:20.000,2023-06-16 13:16:51.618,2021-03-21 11:36:52,70.0,,19.0,6.0,14.0,9.0,3.0,117.0,,,2.0,14.0,19,False,,dodgy,conda-forge/dodgy,,2630.0,2630.0,https://pypi.org/project/dodgy,,,398333.0,399285.0,https://anaconda.org/conda-forge/dodgy,2023-06-16 13:16:51.618,83787.0,3.0,,,,,,,,,,,,,,,,, +233,flake8-mypy,ambv/flake8-mypy,linters,A plugin for flake8 integrating Mypy.,,https://github.com/ambv/flake8-mypy,https://github.com/ambv/flake8-mypy,MIT,2017-02-26 02:27:33.000,2020-06-19 16:51:36.000,2020-06-19 16:51:00,50.0,,15.0,5.0,13.0,19.0,3.0,103.0,2017-08-31 23:17:01.000,17.8.0,6.0,8.0,19,False,,flake8-mypy,,['flake8'],1774.0,1647.0,https://pypi.org/project/flake8-mypy,2017-08-31 23:17:01.000,127.0,37293.0,37293.0,,,,3.0,,,,,,,,,,,,,,,,, +234,pyformat,myint/pyformat,formatters,Formats Python code to follow a consistent style.,,https://github.com/myint/pyformat,https://github.com/myint/pyformat,Saxpath,2013-03-24 21:45:30.000,2021-10-29 14:54:42.000,2019-05-24 17:17:56,199.0,,9.0,8.0,6.0,4.0,3.0,94.0,2014-09-07 13:57:37.000,0.5.7,23.0,3.0,19,False,,pyformat,,,1864.0,1838.0,https://pypi.org/project/pyformat,2017-01-04 02:31:11.000,26.0,24482.0,24482.0,,,,3.0,,,,,,,,,,,,,,,,, +235,pylint-flask,jschaf/pylint-flask,linters,A Pylint plugin to analyze Flask applications.,,https://github.com/jschaf/pylint-flask,https://github.com/jschaf/pylint-flask,GPL-2.0,2015-06-27 20:11:12.000,2023-06-16 13:25:29.031,2022-07-19 20:45:38,40.0,,9.0,3.0,8.0,8.0,6.0,64.0,,,5.0,7.0,19,False,,pylint-flask,conda-forge/pylint-flask,['pylint'],8117.0,7760.0,https://pypi.org/project/pylint-flask,2019-01-30 19:26:02.000,357.0,366986.0,368286.0,https://anaconda.org/conda-forge/pylint-flask,2023-06-16 13:25:29.031,114478.0,3.0,,,,,,,,,,,,,,,,, +236,mkdocs-git-revision-date-plugin,zhaoterryy/mkdocs-git-revision-date-plugin,documentation,MkDocs plugin for setting revision date from git per markdown file.,,https://github.com/zhaoterryy/mkdocs-git-revision-date-plugin,https://github.com/zhaoterryy/mkdocs-git-revision-date-plugin,MIT,2018-12-03 04:29:33.000,2023-03-28 19:19:30.000,2022-03-08 14:42:57,26.0,,9.0,5.0,9.0,5.0,9.0,54.0,2022-03-08 14:43:59.000,0.3.2,2.0,7.0,19,False,,mkdocs-git-revision-date-plugin,,['mkdocs'],1688.0,1688.0,https://pypi.org/project/mkdocs-git-revision-date-plugin,,,39369.0,39369.0,,,,3.0,,,,,,,,,,,,,,,,, +237,PrettyErrors,onelivesleft/PrettyErrors,logging,Prettify Python exception output to make it legible.,,https://github.com/onelivesleft/PrettyErrors,https://github.com/onelivesleft/PrettyErrors,MIT,2018-11-15 16:02:27.000,2023-06-16 19:23:41.476,2021-11-24 14:32:14,130.0,,82.0,31.0,10.0,7.0,38.0,2678.0,,,8.0,5.0,18,False,,pretty_errors,conda-forge/pretty_errors,,,,https://pypi.org/project/pretty_errors,,,27087.0,27458.0,https://anaconda.org/conda-forge/pretty_errors,2023-06-16 19:23:41.476,13743.0,3.0,,,,,,,,,,,,,,,,, +238,fake2db,emirozer/fake2db,testing,create custom test databases that are populated with fake data.,,https://github.com/emirozer/fake2db,https://github.com/emirozer/fake2db,GPL-2.0,2014-02-18 19:14:28.000,2019-11-25 09:19:01.000,2019-11-25 09:19:00,242.0,,119.0,68.0,29.0,7.0,15.0,2237.0,2019-03-09 13:53:12.000,1.0.0,2.0,18.0,18,False,,fake2db,,,25.0,25.0,https://pypi.org/project/fake2db,,,463.0,463.0,,,,3.0,,,,,,,,,,,,,,,,, +239,add-trailing-comma,asottile/add-trailing-comma,refactoring,A tool (and pre-commit hook) to automatically add trailing commas to calls and literals.,,https://github.com/asottile/add-trailing-comma,https://github.com/asottile/add-trailing-comma,MIT,2017-07-10 00:55:50.000,2023-11-27 22:54:49.000,2023-11-27 22:54:48,475.0,18.0,21.0,6.0,205.0,,56.0,319.0,,,,11.0,18,True,,add-trailing-comma,,,,,https://pypi.org/project/add-trailing-comma,,,28316.0,28316.0,,,,3.0,,,,,,,,,,,,,,,,, +240,bellybutton,hchasestevens/bellybutton,linters,Custom Python linting through AST expressions.,,https://github.com/hchasestevens/bellybutton,https://github.com/hchasestevens/bellybutton,MIT,2018-02-17 06:31:44.000,2023-07-27 15:15:12.000,2023-07-27 15:12:07,35.0,,15.0,6.0,23.0,11.0,6.0,259.0,2023-07-27 15:15:12.000,0.3.2,12.0,6.0,18,True,,bellybutton,,,42.0,41.0,https://pypi.org/project/bellybutton,2023-07-27 15:15:12.000,1.0,13902.0,13902.0,,,,3.0,,,,,,,,,,,,,,,,, +241,pynt,rags/pynt,build-tools,A pynt of Python build.,,https://github.com/rags/pynt,https://github.com/rags/pynt,MIT,2012-11-17 13:12:49.000,2022-05-13 18:18:48.000,2019-10-04 19:05:46,128.0,,18.0,11.0,10.0,6.0,13.0,156.0,2018-06-24 06:23:48.000,0.8.2,7.0,10.0,18,False,,pynt,,,145.0,117.0,https://pypi.org/project/pynt,2018-06-24 06:23:48.000,28.0,11745.0,11745.0,,,,3.0,,,,,,,,,,,,,,,,, +242,unify,myint/unify,refactoring,Modifies strings to all use the same quote where possible.,,https://github.com/myint/unify,https://github.com/myint/unify,MIT,2013-03-24 18:02:19.000,2023-06-16 19:26:39.293,2019-08-07 13:44:00,69.0,,15.0,7.0,10.0,10.0,3.0,90.0,,,1.0,5.0,18,False,,unify,conda-forge/unify,,1263.0,1263.0,https://pypi.org/project/unify,,,76171.0,76229.0,https://anaconda.org/conda-forge/unify,2023-06-16 19:26:39.293,1749.0,3.0,,,,,,,,,,,,,,,,, +243,imhotep,justinabrahms/imhotep,linters,A static-analysis bot for Github.,,https://github.com/justinabrahms/imhotep,https://github.com/justinabrahms/imhotep,MIT,2012-12-17 01:26:32.000,2023-06-17 04:37:59.000,2023-06-17 04:37:59,400.0,,36.0,9.0,68.0,20.0,26.0,222.0,2022-02-20 06:09:19.000,2.0.0,10.0,17.0,17,True,,imhotep,,,17.0,11.0,https://pypi.org/project/imhotep,2022-02-20 06:09:19.000,6.0,70.0,70.0,,,,3.0,,,,,,,,,,,,,,,,, +244,sphinx-markdown-builder,clayrisser/sphinx-markdown-builder,documentation,DISCONTINUED: sphinx builder that outputs markdown files. The active version of this project is now being maintained..,,https://github.com/clayrisser/sphinx-markdown-builder,https://github.com/clayrisser/sphinx-markdown-builder,MIT,2018-11-11 00:07:58.000,2023-06-24 21:25:39.000,2023-06-24 21:25:38,106.0,,41.0,7.0,27.0,,39.0,162.0,2019-10-11 01:01:17.000,0.5.3,4.0,19.0,17,True,,sphinx-markdown-builder,,['sphinx'],,,https://pypi.org/project/sphinx-markdown-builder,,,52695.0,52695.0,,,,3.0,,,,,,,,,,,,,,,,, +245,massedit,elmotec/massedit,refactoring,Programmatically edit text files with Python. Useful for source to source transformations.,,https://github.com/elmotec/massedit,https://github.com/elmotec/massedit,MIT,2012-03-11 16:18:30.000,2023-09-12 01:27:09.000,2023-09-12 01:27:09,194.0,,16.0,5.0,17.0,1.0,7.0,111.0,2023-09-11 03:03:54.000,0.70.1,10.0,9.0,17,True,,massedit,,,41.0,41.0,https://pypi.org/project/massedit,,,6335.0,6335.0,,,,3.0,23.0,,,,,,,,,,,,,,,, +246,mkdocs-versioning,zayd62/mkdocs-versioning,documentation,A tool that allows for versioning sites built with mkdocs.,,https://github.com/zayd62/mkdocs-versioning,https://github.com/zayd62/mkdocs-versioning,MIT,2019-07-20 18:09:56.000,2021-08-01 15:51:53.000,2021-08-01 15:51:53,133.0,,6.0,3.0,39.0,3.0,22.0,40.0,2021-02-11 10:24:03.000,0.4.0,2.0,5.0,17,False,,mkdocs-versioning,,['mkdocs'],66.0,66.0,https://pypi.org/project/mkdocs-versioning,,,3001.0,3001.0,,,,3.0,,,,,,,,,,,,,,,,, +247,pyenv-installer,pyenv/pyenv-installer,virtual-envs,This tool is used to install `pyenv` and friends.,,https://github.com/pyenv/pyenv-installer,https://github.com/pyenv/pyenv-installer,MIT,2013-06-01 03:48:07.000,2023-06-10 12:37:58.000,2023-06-10 12:37:58,149.0,,409.0,74.0,60.0,6.0,76.0,3777.0,,,,39.0,16,True,,,,,,,,,,,,,,,3.0,,,,,,,,,,,,,,,,, +248,dh-virtualenv,spotify/dh-virtualenv,virtual-envs,Python virtualenvs in Debian packages.,,https://github.com/spotify/dh-virtualenv,https://github.com/spotify/dh-virtualenv,GPL-2.0,2013-10-09 19:03:43.000,2023-05-18 15:24:11.000,2023-01-03 15:31:24,422.0,,177.0,41.0,154.0,34.0,172.0,1583.0,,,,60.0,16,True,,,,,,,,,,,,,,,3.0,,,,,,,,,,,,,,,,, +249,pyheat,csurfer/pyheat,profiling,pprofile + matplotlib = Python program profiled as an awesome heatmap!.,,https://github.com/csurfer/pyheat,https://github.com/csurfer/pyheat,MIT,2017-02-04 22:56:02.000,2023-07-04 11:25:43.000,2021-09-18 20:16:24,55.0,,41.0,12.0,8.0,6.0,9.0,774.0,,,,5.0,16,False,,py-heat,,,60.0,60.0,https://pypi.org/project/py-heat,,,4158.0,4158.0,,,,3.0,,,,,,,,,,,,,,,,, +250,tbvaccine,skorokithakis/tbvaccine,logging,A small utility to pretty-print Python tracebacks.,,https://github.com/skorokithakis/tbvaccine,https://github.com/skorokithakis/tbvaccine,MIT,2016-08-27 17:31:59.000,2020-03-01 19:24:46.000,2020-03-01 19:24:44,80.0,,12.0,6.0,18.0,7.0,13.0,367.0,2017-07-27 16:45:20.000,0.2.2,8.0,12.0,16,False,,tbvaccine,,,11.0,11.0,https://pypi.org/project/tbvaccine,,,2310.0,2310.0,,,,3.0,,,,,,,,,,,,,,,,, +251,dlint,dlint-py/dlint,security,Dlint is a tool for encouraging best coding practices and helping ensure Python code is secure.,,https://github.com/dlint-py/dlint,https://github.com/dlint-py/dlint,BSD-3-Clause,2020-01-08 15:53:36.000,2023-06-16 19:27:52.099,2023-04-10 19:27:15,234.0,,16.0,2.0,16.0,22.0,21.0,161.0,,,4.0,16.0,16,True,,dlint,conda-forge/dlint,,,,https://pypi.org/project/dlint,,,99503.0,99664.0,https://anaconda.org/conda-forge/dlint,2023-06-16 19:27:52.099,4035.0,3.0,,,,,,,,,,,,,,,,, +252,com2ann,ilevkivskyi/com2ann,refactoring,Tool for translation type comments to type annotations in Python.,,https://github.com/ilevkivskyi/com2ann,https://github.com/ilevkivskyi/com2ann,MIT,2016-09-09 07:17:02.000,2023-08-29 08:53:47.000,2023-08-29 08:53:43,44.0,,11.0,7.0,31.0,7.0,21.0,135.0,,,,7.0,16,True,,com2ann,,,58.0,58.0,https://pypi.org/project/com2ann,,,16519.0,16519.0,,,,3.0,,,,,,,,,,,,,,,,, +253,pycycle,bndr/pycycle,linters,Tool for pinpointing circular imports in Python. Find cyclic imports in any project.,,https://github.com/bndr/pycycle,https://github.com/bndr/pycycle,MIT,2017-01-28 17:22:00.000,2022-01-15 20:44:01.000,2017-02-13 18:07:04,26.0,,20.0,6.0,6.0,15.0,2.0,323.0,2017-02-13 18:07:58.000,0.0.8,8.0,2.0,15,False,,pycycle,,,87.0,78.0,https://pypi.org/project/pycycle,2017-02-13 18:07:58.000,9.0,3540.0,3540.0,,,,3.0,,,,,,,,,,,,,,,,, +254,cohesion,mschwager/cohesion,code-metrics,A tool for measuring Python class cohesion.,,https://github.com/mschwager/cohesion,https://github.com/mschwager/cohesion,GPL-3.0,2016-08-11 21:09:32.000,2023-06-16 19:27:52.015,2023-03-08 16:15:03,84.0,,4.0,10.0,2.0,5.0,12.0,216.0,2023-03-08 16:22:18.671,1.1.0,10.0,3.0,15,True,,cohesion,conda-forge/cohesion,,11.0,,https://pypi.org/project/cohesion,2019-07-10 16:08:05.000,11.0,5607.0,5688.0,https://anaconda.org/conda-forge/cohesion,2023-06-16 19:27:52.015,2031.0,3.0,,,,,,,,,,,,,,,,, +255,flake8-bandit,tylerwince/flake8-bandit,linters,Automated security testing using bandit and flake8.,,https://github.com/tylerwince/flake8-bandit,https://github.com/tylerwince/flake8-bandit,MIT,2017-10-28 23:19:09.000,2023-09-13 06:38:29.000,2022-08-29 13:45:55,70.0,,27.0,5.0,18.0,10.0,17.0,109.0,,,,12.0,15,False,,flake8-bandit,,['flake8'],,,https://pypi.org/project/flake8-bandit,,,459386.0,459386.0,,,,3.0,,,,,,,,,,,,,,,,, +256,memory_profiler,fabianp/memory_profiler,profiling,Monitor Memory usage of Python code.,,https://github.com/fabianp/memory_profiler,https://github.com/fabianp/memory_profiler,,2016-05-26 17:45:08.632,2023-06-16 13:17:34.885,2018-06-28 13:35:12,500.0,,13.0,5.0,1.0,,,85.0,,,12.0,62.0,15,False,,memory_profiler,conda-forge/memory_profiler,,,,https://pypi.org/project/memory_profiler,,,979092.0,983304.0,https://anaconda.org/conda-forge/memory_profiler,2023-06-16 13:17:34.885,383379.0,3.0,,,,,,,-11.0,,,,,,,,,, +257,pytest-play,pytest-dev/pytest-play,testing,pytest plugin that let you automate actions and assertions with test metrics reporting executing plain YAML files.,,https://github.com/pytest-dev/pytest-play,https://github.com/pytest-dev/pytest-play,Apache-2.0,2017-12-14 09:08:26.000,2019-08-20 15:57:27.000,2019-06-12 11:57:28,382.0,,4.0,9.0,62.0,4.0,25.0,67.0,2019-06-12 11:59:29.000,2.3.1,23.0,3.0,15,False,,pytest-play,,['pytest'],10.0,,https://pypi.org/project/pytest-play,2019-06-12 11:59:29.000,10.0,115.0,115.0,,,,3.0,,,,,,,,,,,,,,,,, +258,yala,cemsbr/yala,linters,Yet Another Linter Aggregator.,,https://github.com/cemsbr/yala,https://github.com/cemsbr/yala,MIT,2017-06-02 22:45:50.000,2023-10-17 23:50:57.000,2023-01-30 07:50:18,198.0,,5.0,2.0,142.0,1.0,11.0,14.0,2023-01-30 07:57:23.000,3.2.0,29.0,4.0,15,False,,yala,,"['flake8', 'pylint']",60.0,50.0,https://pypi.org/project/yala,2021-11-15 05:05:38.000,10.0,821.0,821.0,,,,3.0,,,,,,,,,,,,,,,,, +259,freshenv,raiyanyahya/freshenv,virtual-envs,"Provision, share, manage local and cloud developer environments.",,https://github.com/raiyanyahya/freshenv,https://github.com/raiyanyahya/freshenv,MPL-2.0,2021-12-19 21:38:32.000,2023-12-13 19:32:54.000,2023-10-13 18:07:34,192.0,4.0,3.0,2.0,214.0,,3.0,169.0,2022-08-09 15:40:30.000,3.0.0,5.0,3.0,14,True,,freshenv,raiyanyahya/freshenv,,,,https://pypi.org/project/freshenv,,,168.0,168.0,https://anaconda.org/raiyanyahya/freshenv,,,3.0,,,,,,,,,,,,,,,,, +260,pep8ify,spulec/pep8ify,refactoring,A library that modifies python source code to conform to pep8.,,https://github.com/spulec/pep8ify,https://github.com/spulec/pep8ify,Apache-2.0,2012-06-03 03:31:33.000,2019-03-08 03:06:14.000,2014-10-24 20:36:38,154.0,,12.0,6.0,7.0,7.0,12.0,117.0,,,,6.0,14,False,,pep8ify,,,46.0,46.0,https://pypi.org/project/pep8ify,,,295.0,295.0,,,,3.0,,,,,,,,,,,,,,,,, +261,subpar,google/subpar,packaging,Subpar is a utility for creating self-contained python executables. It is designed to work well with Bazel.,,https://github.com/google/subpar,https://github.com/google/subpar,Apache-2.0,2016-08-03 20:11:35.000,2022-12-27 14:53:53.000,2022-12-19 19:23:19,95.0,,66.0,18.0,75.0,34.0,30.0,563.0,2019-05-14 20:14:05.000,2.0.0,5.0,16.0,13,True,,,,,,,,,,,,,,,3.0,,,,,,,,,,,,,,,,, +262,pipenv-pipes,gtalarico/pipenv-pipes,virtual-envs,A PipEnv Environment Switcher.,,https://github.com/gtalarico/pipenv-pipes,https://github.com/gtalarico/pipenv-pipes,MIT,2018-05-02 03:56:41.000,2023-10-01 17:28:23.000,2019-06-27 03:42:48,285.0,,20.0,5.0,22.0,7.0,10.0,134.0,2018-11-08 03:05:43.000,0.7.1,25.0,5.0,13,False,,pipenv-pipes,,,,,https://pypi.org/project/pipenv-pipes,2018-11-08 03:05:43.000,,107.0,107.0,,,,3.0,,,,,,,,,,,,,,,,, +263,universal-build,ml-tooling/universal-build,build-tools,Universal build utilities for containerized build pipelines.,,https://github.com/ml-tooling/universal-build,https://github.com/ml-tooling/universal-build,MIT,2020-10-19 14:57:21.000,2022-11-09 08:14:25.000,2022-09-15 18:19:20,395.0,,7.0,5.0,34.0,,3.0,20.0,2021-11-17 16:59:34.000,0.6.18,28.0,5.0,13,True,,universal-build,,,12.0,12.0,https://pypi.org/project/universal-build,,,121.0,121.0,,,,3.0,19.0,,,,,,,,,,,,,,,, +264,livepython,agermanidis/livepython,profiling,Visually trace Python code in real-time.,,https://github.com/agermanidis/livepython,https://github.com/agermanidis/livepython,MIT,2017-10-03 00:19:59.000,2019-01-22 17:39:55.000,2017-11-14 21:27:52,20.0,,168.0,77.0,4.0,11.0,15.0,2551.0,,,,3.0,12,False,,,,,2.0,2.0,,,,,,,,,3.0,,,,,,,,,,,,,,,,, +265,linty_fresh,lyft/linty_fresh,linters,Surface lint errors during code review.,,https://github.com/lyft/linty_fresh,https://github.com/lyft/linty_fresh,Apache-2.0,2015-12-19 02:37:26.000,2023-06-23 23:37:25.000,2022-12-13 04:09:02,54.0,,21.0,19.0,61.0,8.0,1.0,184.0,2018-12-12 19:47:05.000,0.7.0,10.0,18.0,12,True,,linty-fresh,,"['flake8', 'mypy']",,,https://pypi.org/project/linty-fresh,2018-12-12 19:47:05.000,,30.0,30.0,,,,3.0,,,,,,,,,,,,,,,,, +266,retype,ambv/retype,refactoring,Re-apply type annotations from .pyi stubs to your codebase.,,https://github.com/ambv/retype,https://github.com/ambv/retype,MIT,2017-03-11 07:54:58.000,2023-06-16 16:07:40.909,2022-08-14 07:12:06,109.0,,17.0,6.0,28.0,,15.0,136.0,2022-08-14 07:05:53.000,22.8.0,7.0,9.0,12,False,,retype,conda-forge/retype,,,,https://pypi.org/project/retype,,,501.0,845.0,https://anaconda.org/conda-forge/retype,2023-06-16 16:07:40.909,24492.0,3.0,,,,,,,,,,,,,,,,, +267,pyship,jamesabel/pyship,packaging,pyship - ship Python desktop apps to end users.,,https://github.com/jamesabel/pyship,https://github.com/jamesabel/pyship,MIT,2020-04-23 04:45:03.000,2023-06-06 05:02:28.000,2023-06-06 05:02:21,291.0,,3.0,4.0,6.0,6.0,,36.0,,,,2.0,9,False,,pyship,,,,,https://pypi.org/project/pyship,,,70.0,70.0,,,,3.0,,,,,,,,,,,,,,,,, diff --git a/latest-changes.md b/latest-changes.md index 41401d1..9431614 100644 --- a/latest-changes.md +++ b/latest-changes.md @@ -2,19 +2,19 @@ _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ -- invoke (πŸ₯ˆ36 Β· ⭐ 4.1K Β· πŸ“ˆ) - Pythonic task management & command execution. BSD-2 -- freezegun (πŸ₯ˆ35 Β· ⭐ 3.9K Β· πŸ“ˆ) - Let your Python tests travel through time. Apache-2 -- pytest-mock (πŸ₯ˆ35 Β· ⭐ 1.7K Β· πŸ“ˆ) - Thin-wrapper around the mock package for easier use with.. MIT -- Yappi (πŸ₯ˆ30 Β· ⭐ 1.3K Β· πŸ“ˆ) - Yet Another Python Profiler, but this time multithreading, asyncio and.. MIT -- green (πŸ₯‰28 Β· ⭐ 780 Β· πŸ“ˆ) - Green is a clean, colorful, fast python test runner. MIT +- isort (πŸ₯ˆ42 Β· ⭐ 6.2K Β· πŸ“ˆ) - A Python utility / library to sort imports. MIT +- bandit (πŸ₯‡38 Β· ⭐ 5.7K Β· πŸ“ˆ) - Bandit is a tool designed to find common security issues in.. Apache-2 +- twine (πŸ₯‡37 Β· ⭐ 1.5K Β· πŸ“ˆ) - Utilities for interacting with PyPI. Apache-2 +- python-json-logger (πŸ₯ˆ34 Β· ⭐ 1.6K Β· πŸ’€) - Json Formatter for the standard python logger. BSD-2 +- mamba (πŸ₯‰30 Β· ⭐ 5.6K Β· πŸ“ˆ) - The Fast Cross-Platform Package Manager. BSD-3 ## πŸ“‰ Trending Down _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ -- sentry-sdk (πŸ₯ˆ36 Β· ⭐ 1.7K Β· πŸ“‰) - The official Python SDK for Sentry.io. MIT -- pyflakes (πŸ₯ˆ36 Β· ⭐ 1.3K Β· πŸ“‰) - A simple program which checks Python source files for errors. MIT -- prospector (πŸ₯‡33 Β· ⭐ 1.9K Β· πŸ“‰) - Inspects Python source files and provides information about.. ❗️GPL-2.0 -- nose2 (πŸ₯ˆ33 Β· ⭐ 760 Β· πŸ“‰) - The successor to nose, based on unittest2. BSD-2 -- tabulate (πŸ₯ˆ31 Β· ⭐ 1.8K Β· πŸ’€) - Pretty-print tabular data in Python, a library and a command-line.. MIT +- freezegun (πŸ₯ˆ29 Β· ⭐ 3.9K Β· πŸ“‰) - Let your Python tests travel through time. Apache-2 +- pytype (πŸ₯‰27 Β· ⭐ 4.4K Β· πŸ“‰) - A static type analyzer for Python code. ❗Unlicensed +- hacking (πŸ₯‰20 Β· ⭐ 230 Β· πŸ“‰) - OpenStack Hacking Style Checks. Mirror of code maintained at.. Apache-2 +- typed_ast (πŸ₯‰19 Β· ⭐ 220 Β· πŸ“‰) - Modified fork of CPythons ast module that parses `# type:`.. ❗Unlicensed +- memory_profiler (πŸ₯‰15 Β· ⭐ 85 Β· πŸ’€) - Monitor Memory usage of Python code. ❗Unlicensed