black

The uncompromising Python code formatter

https://github.com/psf/black

Science Score: 54.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    12 of 473 committers (2.5%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (17.4%) to scientific vocabulary

Keywords

autopep8 code codeformatter formatter gofmt hacktoberfest pre-commit-hook python yapf

Keywords from Contributors

parsing hints json-schema pydantic python310 python311 python312 python313 python39 property-based-testing
Last synced: 4 months ago · JSON representation ·

Repository

The uncompromising Python code formatter

Basic Info
Statistics
  • Stars: 40,865
  • Watchers: 235
  • Forks: 2,616
  • Open Issues: 360
  • Releases: 46
Topics
autopep8 code codeformatter formatter gofmt hacktoberfest pre-commit-hook python yapf
Created almost 8 years ago · Last pushed 4 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Security Authors

README.md

Black Logo

The Uncompromising Code Formatter

Actions Status Documentation Status Coverage Status License: MIT PyPI Downloads conda-forge Code style: black

“Any color you like.”

Black is the uncompromising Python code formatter. By using it, you agree to cede control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.

Blackened code looks the same regardless of the project you're reading. Formatting becomes transparent after a while and you can focus on the content instead.

Black makes code review faster by producing the smallest diffs possible.

Try it out now using the Black Playground. Watch the PyCon 2019 talk to learn more.


Read the documentation on ReadTheDocs!


Installation and usage

Installation

Black can be installed by running pip install black. It requires Python 3.9+ to run. If you want to format Jupyter Notebooks, install with pip install "black[jupyter]".

If you can't wait for the latest hotness and want to install from GitHub, use:

pip install git+https://github.com/psf/black

Usage

To get started right away with sensible defaults:

sh black {source_file_or_directory}

You can run Black as a package if running it as a script doesn't work:

sh python -m black {source_file_or_directory}

Further information can be found in our docs:

Black is already successfully used by many projects, small and big. Black has a comprehensive test suite, with efficient parallel tests, and our own auto formatting and parallel Continuous Integration runner. Now that we have become stable, you should not expect large formatting changes in the future. Stylistic changes will mostly be responses to bug reports and support for new Python syntax. For more information please refer to The Black Code Style.

Also, as a safety measure which slows down processing, Black will check that the reformatted code still produces a valid AST that is effectively equivalent to the original (see the Pragmatism section for details). If you're feeling confident, use --fast.

The Black code style

Black is a PEP 8 compliant opinionated formatter. Black reformats entire files in place. Style configuration options are deliberately limited and rarely added. It doesn't take previous formatting into account (see Pragmatism for exceptions).

Our documentation covers the current Black code style, but planned changes to it are also documented. They're both worth taking a look at:

Changes to the Black code style are bound by the Stability Policy:

Please refer to this document before submitting an issue. What seems like a bug might be intended behaviour.

Pragmatism

Early versions of Black used to be absolutist in some respects. They took after its initial author. This was fine at the time as it made the implementation simpler and there were not many users anyway. Not many edge cases were reported. As a mature tool, Black does make some exceptions to rules it otherwise holds.

Please refer to this document before submitting an issue just like with the document above. What seems like a bug might be intended behaviour.

Configuration

Black is able to read project-specific default values for its command line options from a pyproject.toml file. This is especially useful for specifying custom --include and --exclude/--force-exclude/--extend-exclude patterns for your project.

You can find more details in our documentation:

And if you're looking for more general configuration documentation:

Pro-tip: If you're asking yourself "Do I need to configure anything?" the answer is "No". Black is all about sensible defaults. Applying those defaults will have your code in compliance with many other Black formatted projects.

Used by

The following notable open-source projects trust Black with enforcing a consistent code style: pytest, tox, Pyramid, Django, Django Channels, Hypothesis, attrs, SQLAlchemy, Poetry, PyPA applications (Warehouse, Bandersnatch, Pipenv, virtualenv), pandas, Pillow, Twisted, LocalStack, every Datadog Agent Integration, Home Assistant, Zulip, Kedro, OpenOA, FLORIS, ORBIT, WOMBAT, and many more.

The following organizations use Black: Dropbox, KeepTruckin, Lyft, Mozilla, Quora, Duolingo, QuantumBlack, Tesla, Archer Aviation.

Are we missing anyone? Let us know.

Testimonials

Mike Bayer, author of SQLAlchemy:

I can't think of any single tool in my entire programming career that has given me a bigger productivity increase by its introduction. I can now do refactorings in about 1% of the keystrokes that it would have taken me previously when we had no way for code to format itself.

Dusty Phillips, writer:

Black is opinionated so you don't have to be.

Hynek Schlawack, creator of attrs, core developer of Twisted and CPython:

An auto-formatter that doesn't suck is all I want for Xmas!

Carl Meyer, Django core developer:

At least the name is good.

Kenneth Reitz, creator of requests and pipenv:

This vastly improves the formatting of our code. Thanks a ton!

Show your style

Use the badge in your project's README.md:

md [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

Using the badge in README.rst:

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg :target: https://github.com/psf/black

Looks like this: Code style: black

License

MIT

Contributing

Welcome! Happy to see you willing to make the project better. You can get started by reading this:

You can also take a look at the rest of the contributing docs or talk with the developers:

Change log

The log has become rather long. It moved to its own file.

See CHANGES.

Authors

The author list is quite long nowadays, so it lives in its own file.

See AUTHORS.md

Code of Conduct

Everyone participating in the Black project, and in particular in the issue tracker, pull requests, and social media activity, is expected to treat other people with respect and more generally to follow the guidelines articulated in the Python Community Code of Conduct.

At the same time, humor is encouraged. In fact, basic familiarity with Monty Python's Flying Circus is expected. We are not savages.

And if you really need to slap somebody, do it with a fish while dancing.

Owner

  • Name: Python Software Foundation
  • Login: psf
  • Kind: organization

Citation (CITATION.cff)

cff-version: 1.2.0
title: "Black: The uncompromising Python code formatter"
message: >-
  If you use this software, please cite it using the metadata from this file.
type: software
authors:
  - family-names: Langa
    given-names: Łukasz
  - name: "contributors to Black"
repository-code: "https://github.com/psf/black"
url: "https://black.readthedocs.io/en/stable/"
abstract: >-
  Black is the uncompromising Python code formatter. By using it, you agree to cede
  control over minutiae of hand-formatting. In return, Black gives you speed,
  determinism, and freedom from pycodestyle nagging about formatting. You will save time
  and mental energy for more important matters.

  Blackened code looks the same regardless of the project you're reading. Formatting
  becomes transparent after a while and you can focus on the content instead.

  Black makes code review faster by producing the smallest diffs possible.
license: MIT

Committers

Last synced: 5 months ago

All Time
  • Total Commits: 2,008
  • Total Committers: 473
  • Avg Commits per committer: 4.245
  • Development Distribution Score (DDS): 0.815
Past Year
  • Commits: 114
  • Committers: 34
  • Avg Commits per committer: 3.353
  • Development Distribution Score (DDS): 0.789
Top Committers
Name Email Commits
Łukasz Langa l****z@l****l 372
Jelle Zijlstra j****a@g****m 193
Richard Si 6****6 131
dependabot[bot] 4****] 120
Shantanu 1****a 104
Zsolt Dollenstein z****l@g****m 78
Cooper Lees me@c****m 70
Hugo van Kemenade h****k 51
Yilei "Dolee" Yang y****g@g****m 42
Batuhan Taskaya i****l@g****m 25
Felix Hildén f****n@g****m 25
GiGaGon 1****n 24
Marco Edward Gorelli m****i@p****m 21
James Addison j****y@j****t 16
cobalt 6****2 14
Bryan Bugyi b****4@g****m 14
Michael J. Sullivan s****y@m****t 12
Jon Dufresne j****e@g****m 11
Tushar Sadhwani t****0@g****m 11
pre-commit-ci[bot] 6****] 11
Henri Holopainen h****n@g****m 10
Joe Young 8****t 10
rdrll 1****l 9
Anthony Sottile a****e@u****u 9
cobalt 6****7 8
Nipunn Koorapati n****3@g****m 8
Sagi Shadur s****2@g****m 7
Alex Waygood A****d@G****m 7
Yurii Karabas 1****o@g****m 6
Shivansh-007 s****7@o****m 6
and 443 more...

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 687
  • Total pull requests: 874
  • Average time to close issues: 8 months
  • Average time to close pull requests: 24 days
  • Total issue authors: 538
  • Total pull request authors: 189
  • Average comments per issue: 4.15
  • Average comments per pull request: 1.6
  • Merged pull requests: 605
  • Bot issues: 0
  • Bot pull requests: 131
Past Year
  • Issues: 110
  • Pull requests: 312
  • Average time to close issues: 9 days
  • Average time to close pull requests: 8 days
  • Issue authors: 89
  • Pull request authors: 59
  • Average comments per issue: 1.52
  • Average comments per pull request: 0.84
  • Merged pull requests: 168
  • Bot issues: 0
  • Bot pull requests: 40
Top Authors
Issue Authors
  • JelleZijlstra (31)
  • hauntsaninja (14)
  • 15r10nk (13)
  • yilei (13)
  • MichaReiser (11)
  • cooperlees (8)
  • MeGaGiGaGon (6)
  • Zac-HD (5)
  • st-pasha (5)
  • konstin (5)
  • sumezulike (3)
  • ambv (3)
  • Conchylicultor (3)
  • felix-hilden (3)
  • KotlinIsland (3)
Pull Request Authors
  • dependabot[bot] (115)
  • hauntsaninja (106)
  • JelleZijlstra (99)
  • MeGaGiGaGon (49)
  • abdeliibrahim (26)
  • RedGuy12 (20)
  • tusharsadhwani (18)
  • yilei (18)
  • cooperlees (17)
  • cobaltt7 (17)
  • pre-commit-ci[bot] (16)
  • AleksMat (10)
  • Pedro-Muller29 (10)
  • henriholopainen (9)
  • ichard26 (9)
Top Labels
Issue Labels
T: bug (343) T: style (135) T: enhancement (99) C: preview style (40) T: documentation (35) F: comments (34) F: strings (32) F: linebreak (31) S: accepted (24) C: integrations (18) C: crash (18) F: linetoolong (18) F: empty lines (18) C: configuration (17) C: parser (15) F: parentheses (15) F: docstrings (13) S: needs discussion (12) help wanted (11) F: fmtskip (10) C: maintenance (9) R: rejected (9) C: file collection (8) F: fmtoff (7) good first issue (6) F: trailing comma (6) C: vim (6) C: invalid code (6) S: needs repro (5) C: packaging (5)
Pull Request Labels
skip news (424) C: dependencies (118) T: documentation (52) C: maintenance (12) C: cleanup (9) F: empty lines (3) C: integrations (2) C: configuration (2) S: awaiting response (1) R: invalid (1) C: packaging (1) T: enhancement (1) F: parentheses (1) C: file collection (1) C: performance (1)

Packages

  • Total packages: 59
  • Total downloads:
    • pypi 74,595,264 last-month
  • Total docker downloads: 3,659,163,538
  • Total dependent packages: 9,954
    (may contain duplicates)
  • Total dependent repositories: 123,643
    (may contain duplicates)
  • Total versions: 523
  • Total maintainers: 30
  • Total advisories: 1
pypi.org: black

The uncompromising code formatter.

  • Versions: 64
  • Dependent Packages: 9,489
  • Dependent Repositories: 105,588
  • Downloads: 74,129,423 Last month
  • Docker Downloads: 2,799,398,979
Rankings
Dependent packages count: 0.0%
Dependent repos count: 0.0%
Downloads: 0.0%
Docker downloads count: 0.0%
Stargazers count: 0.1%
Average: 0.1%
Forks count: 0.5%
Last synced: 4 months ago
github actions: psf/black

The uncompromising Python code formatter.

  • Versions: 63
  • Dependent Packages: 0
  • Dependent Repositories: 2,364
  • Docker Downloads: 834,583,193
Rankings
Dependent packages count: 0.0%
Stargazers count: 0.0%
Forks count: 0.0%
Average: 0.1%
Dependent repos count: 0.5%
Last synced: 12 months ago
pypi.org: gym

Gym: A universal API for reinforcement learning environments

  • Versions: 108
  • Dependent Packages: 389
  • Dependent Repositories: 13,519
  • Downloads: 462,810 Last month
  • Docker Downloads: 25,181,366
Rankings
Dependent packages count: 0.1%
Dependent repos count: 0.1%
Average: 0.3%
Downloads: 0.5%
Docker downloads count: 0.7%
Last synced: 12 months ago
alpine-v3.18: black-zsh-completion

Zsh completions for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 0.4%
Stargazers count: 0.6%
Forks count: 0.9%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.18: black-pyc

Precompiled Python bytecode for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 0.4%
Stargazers count: 0.6%
Forks count: 0.9%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.18: black-bash-completion

Bash completions for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 0.4%
Stargazers count: 0.6%
Forks count: 0.9%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.18: black-fish-completion

Fish completions for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 0.4%
Stargazers count: 0.6%
Forks count: 0.9%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.18: black

The uncompromising Python code formatter

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 0.4%
Stargazers count: 0.7%
Forks count: 1.0%
Maintainers (1)
Last synced: 4 months ago
conda-forge.org: black

Black is the uncompromising Python code formatter. By using it, you agree to cease control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.

  • Versions: 26
  • Dependent Packages: 61
  • Dependent Repositories: 1,069
Rankings
Stargazers count: 0.4%
Dependent repos count: 0.7%
Dependent packages count: 1.2%
Average: 1.3%
Forks count: 2.7%
Last synced: 4 months ago
spack.io: py-black

Black is the uncompromising Python code formatter. By using it, you agree to cede control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting.

  • Versions: 33
  • Dependent Packages: 6
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 0.2%
Forks count: 1.8%
Average: 2.6%
Dependent packages count: 8.4%
Maintainers (1)
Last synced: 4 months ago
alpine-edge: black-pyc

Precompiled Python bytecode for black

  • Versions: 18
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 0.6%
Forks count: 0.9%
Average: 3.9%
Dependent packages count: 14.1%
Maintainers (1)
Last synced: 4 months ago
alpine-edge: black-zsh-completion

Zsh completions for black

  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 0.6%
Forks count: 0.9%
Average: 4.0%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: 4 months ago
alpine-edge: black

The uncompromising Python code formatter

  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 0.6%
Forks count: 0.9%
Average: 4.0%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: 4 months ago
alpine-edge: black-fish-completion

Fish completions for black

  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 0.6%
Forks count: 0.9%
Average: 4.0%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: 4 months ago
alpine-edge: black-bash-completion

Bash completions for black

  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 0.6%
Forks count: 0.9%
Average: 4.0%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: 4 months ago
anaconda.org: black

Black is the uncompromising Python code formatter. By using it, you agree to cease control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.

  • Versions: 10
  • Dependent Packages: 8
  • Dependent Repositories: 1,069
Rankings
Stargazers count: 1.1%
Dependent repos count: 4.3%
Average: 4.9%
Dependent packages count: 7.0%
Forks count: 7.3%
Last synced: 5 months ago
alpine-v3.13: black

The uncompromising Python code formatter

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 0.7%
Forks count: 0.9%
Average: 5.3%
Dependent packages count: 19.5%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.14: black

The uncompromising Python code formatter

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 0.6%
Forks count: 0.9%
Average: 5.8%
Dependent packages count: 21.7%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.15: black

The uncompromising Python code formatter

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 0.7%
Forks count: 0.9%
Average: 6.8%
Dependent packages count: 25.6%
Maintainers (1)
Last synced: 4 months ago
pypi.org: black-but-with-tabs-instead-of-spaces

The --compromising code formatter.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 5
  • Downloads: 142 Last month
Rankings
Stargazers count: 0.0%
Forks count: 0.3%
Dependent repos count: 6.8%
Average: 6.9%
Dependent packages count: 7.4%
Downloads: 20.0%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.16: black

The uncompromising Python code formatter

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 0.7%
Forks count: 0.9%
Average: 7.2%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.17: black

The uncompromising Python code formatter

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 0.7%
Forks count: 1.0%
Average: 7.2%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 4 months ago
pypi.org: black-with-tabs

The somewhat compromised code formatter.

  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 1,820 Last month
Rankings
Stargazers count: 0.0%
Forks count: 0.3%
Dependent packages count: 7.4%
Average: 7.7%
Downloads: 8.6%
Dependent repos count: 22.2%
Maintainers (2)
Last synced: 4 months ago
conda-forge.org: black-jupyter

Black is the uncompromising Python code formatter. By using it, you agree to cease control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.

  • Versions: 10
  • Dependent Packages: 1
  • Dependent Repositories: 17
Rankings
Stargazers count: 0.4%
Forks count: 2.7%
Dependent repos count: 8.5%
Average: 10.1%
Dependent packages count: 28.9%
Last synced: 4 months ago
pypi.org: blacksin

The uncompromising code formatter.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 26 Last month
Rankings
Stargazers count: 0.0%
Forks count: 0.3%
Dependent packages count: 7.4%
Average: 15.4%
Dependent repos count: 22.2%
Downloads: 46.9%
Maintainers (1)
Last synced: 4 months ago
pypi.org: blackest

The uncompromising code formatter.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 19 Last month
Rankings
Stargazers count: 0.1%
Forks count: 0.6%
Dependent packages count: 9.8%
Average: 16.4%
Dependent repos count: 55.0%
Maintainers (1)
Last synced: 4 months ago
pypi.org: pydantic-argparse-builder

Build ArgumentParser from pydantic model.

  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 17 Last month
Rankings
Dependent packages count: 6.6%
Downloads: 12.8%
Average: 16.7%
Dependent repos count: 30.6%
Maintainers (1)
Last synced: about 1 year ago
pypi.org: pyalert

a framework to help you stay on top of what data is flowing through your code.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 58 Last month
Rankings
Dependent packages count: 6.6%
Average: 18.6%
Dependent repos count: 30.6%
Maintainers (1)
Last synced: 4 months ago
conda-forge.org: blackd

Black is the uncompromising Python code formatter. By using it, you agree to cease control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.

  • Versions: 19
  • Dependent Packages: 0
  • Dependent Repositories: 1
Rankings
Stargazers count: 0.4%
Forks count: 2.7%
Average: 19.7%
Dependent repos count: 24.1%
Dependent packages count: 51.5%
Last synced: 4 months ago
pypi.org: keygen-licensing-tools

Python tools for Keygen.sh licensing

  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 373 Last month
Rankings
Dependent packages count: 10.1%
Average: 19.8%
Dependent repos count: 21.6%
Downloads: 27.8%
Maintainers (1)
Last synced: 9 months ago
conda-forge.org: black-colorama

Black is the uncompromising Python code formatter. By using it, you agree to cease control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.

  • Versions: 18
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Stargazers count: 0.4%
Forks count: 2.6%
Average: 22.0%
Dependent repos count: 34.0%
Dependent packages count: 51.2%
Last synced: 4 months ago
pypi.org: nero

The uncompromising code formatter. Single Quotes version.

  • Versions: 7
  • Dependent Packages: 0
  • Dependent Repositories: 8
  • Downloads: 94 Last month
Rankings
Dependent repos count: 5.2%
Dependent packages count: 10.1%
Average: 22.6%
Downloads: 29.5%
Forks count: 29.8%
Stargazers count: 38.8%
Maintainers (1)
Last synced: 4 months ago
pypi.org: monochromatic

The uncompromising* code formatter.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 25 Last month
Rankings
Dependent packages count: 9.0%
Average: 30.0%
Dependent repos count: 50.9%
Maintainers (1)
Last synced: 4 months ago
pypi.org: api-utils

API utils simplify life when creating or consuming APIs

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 259 Last month
Rankings
Dependent packages count: 10.1%
Downloads: 22.1%
Average: 33.2%
Dependent repos count: 67.3%
Maintainers (1)
Last synced: 12 months ago
pypi.org: tingetone

ANSI color formatting for output in terminal

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 92 Last month
Rankings
Dependent packages count: 10.1%
Average: 33.3%
Dependent repos count: 56.6%
Maintainers (1)
Last synced: about 1 year ago
pypi.org: nh-rs2v-dataset
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent packages count: 10.3%
Average: 34.1%
Dependent repos count: 57.9%
Last synced: about 1 year ago
pypi.org: coinpaprika-async-client

An asynchronous library for interacting with the Coinpaprika.com API, written with httpx in Python.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent packages count: 9.6%
Average: 36.4%
Dependent repos count: 63.1%
Last synced: about 1 year ago
pypi.org: council-scrapers
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 106 Last month
Rankings
Dependent packages count: 9.8%
Average: 37.1%
Dependent repos count: 64.5%
Maintainers (1)
Last synced: about 1 year ago
pypi.org: pyoma2

Software for Structural Health Monitoring with Advanced Signal Processing Techniques

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent packages count: 10.0%
Average: 37.9%
Dependent repos count: 65.8%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.20: black-pyc

Precompiled Python bytecode for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.20: black-bash-completion

Bash completions for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.19: black-fish-completion

Fish completions for black

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.19: black

The uncompromising Python code formatter

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.19: black-zsh-completion

Zsh completions for black

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.20: black

The uncompromising Python code formatter

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.20: black-fish-completion

Fish completions for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.21: black-zsh-completion

Zsh completions for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.22: black-zsh-completion

Zsh completions for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.20: black-zsh-completion

Zsh completions for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.22: black-fish-completion

Fish completions for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.22: black-bash-completion

Bash completions for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.22: black-pyc

Precompiled Python bytecode for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.21: black-pyc

Precompiled Python bytecode for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.22: black

The uncompromising Python code formatter

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.19: black-bash-completion

Bash completions for black

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.21: black

The uncompromising Python code formatter

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.21: black-bash-completion

Bash completions for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.19: black-pyc

Precompiled Python bytecode for black

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago
alpine-v3.21: black-fish-completion

Fish completions for black

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 4 months ago