{ "info": { "author": null, "author_email": "\u0141ukasz Langa ", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Quality Assurance" ], "description": "[![Black Logo](https://raw.githubusercontent.com/psf/black/main/docs/_static/logo2-readme.png)](https://black.readthedocs.io/en/stable/)\n\n

The Uncompromising Code Formatter

\n\n

\n\"Actions\n\"Documentation\n\"Coverage\n\"License:\n\"PyPI\"\n\"Downloads\"\n\"conda-forge\"\n\"Code\n

\n\n> \u201cAny color you like.\u201d\n\n_Black_ is the uncompromising Python code formatter. By using it, you agree to cede\ncontrol over minutiae of hand-formatting. In return, _Black_ gives you speed,\ndeterminism, and freedom from `pycodestyle` nagging about formatting. You will save time\nand mental energy for more important matters.\n\nBlackened code looks the same regardless of the project you're reading. Formatting\nbecomes transparent after a while and you can focus on the content instead.\n\n_Black_ makes code review faster by producing the smallest diffs possible.\n\nTry it out now using the [Black Playground](https://black.vercel.app). Watch the\n[PyCon 2019 talk](https://youtu.be/esZLCuWs_2Y) to learn more.\n\n---\n\n**[Read the documentation on ReadTheDocs!](https://black.readthedocs.io/en/stable)**\n\n---\n\n## Installation and usage\n\n### Installation\n\n_Black_ can be installed by running `pip install black`. It requires Python 3.8+ to run.\nIf you want to format Jupyter Notebooks, install with `pip install \"black[jupyter]\"`.\n\nIf you can't wait for the latest _hotness_ and want to install from GitHub, use:\n\n`pip install git+https://github.com/psf/black`\n\n### Usage\n\nTo get started right away with sensible defaults:\n\n```sh\nblack {source_file_or_directory}\n```\n\nYou can run _Black_ as a package if running it as a script doesn't work:\n\n```sh\npython -m black {source_file_or_directory}\n```\n\nFurther information can be found in our docs:\n\n- [Usage and Configuration](https://black.readthedocs.io/en/stable/usage_and_configuration/index.html)\n\n_Black_ is already [successfully used](https://github.com/psf/black#used-by) by many\nprojects, small and big. _Black_ has a comprehensive test suite, with efficient parallel\ntests, and our own auto formatting and parallel Continuous Integration runner. Now that\nwe have become stable, you should not expect large formatting changes in the future.\nStylistic changes will mostly be responses to bug reports and support for new Python\nsyntax. For more information please refer to\n[The Black Code Style](https://black.readthedocs.io/en/stable/the_black_code_style/index.html).\n\nAlso, as a safety measure which slows down processing, _Black_ will check that the\nreformatted code still produces a valid AST that is effectively equivalent to the\noriginal (see the\n[Pragmatism](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#ast-before-and-after-formatting)\nsection for details). If you're feeling confident, use `--fast`.\n\n## The _Black_ code style\n\n_Black_ is a PEP 8 compliant opinionated formatter. _Black_ reformats entire files in\nplace. Style configuration options are deliberately limited and rarely added. It doesn't\ntake previous formatting into account (see\n[Pragmatism](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#pragmatism)\nfor exceptions).\n\nOur documentation covers the current _Black_ code style, but planned changes to it are\nalso documented. They're both worth taking a look at:\n\n- [The _Black_ Code Style: Current style](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html)\n- [The _Black_ Code Style: Future style](https://black.readthedocs.io/en/stable/the_black_code_style/future_style.html)\n\nChanges to the _Black_ code style are bound by the Stability Policy:\n\n- [The _Black_ Code Style: Stability Policy](https://black.readthedocs.io/en/stable/the_black_code_style/index.html#stability-policy)\n\nPlease refer to this document before submitting an issue. What seems like a bug might be\nintended behaviour.\n\n### Pragmatism\n\nEarly versions of _Black_ used to be absolutist in some respects. They took after its\ninitial author. This was fine at the time as it made the implementation simpler and\nthere were not many users anyway. Not many edge cases were reported. As a mature tool,\n_Black_ does make some exceptions to rules it otherwise holds.\n\n- [The _Black_ code style: Pragmatism](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#pragmatism)\n\nPlease refer to this document before submitting an issue just like with the document\nabove. What seems like a bug might be intended behaviour.\n\n## Configuration\n\n_Black_ is able to read project-specific default values for its command line options\nfrom a `pyproject.toml` file. This is especially useful for specifying custom\n`--include` and `--exclude`/`--force-exclude`/`--extend-exclude` patterns for your\nproject.\n\nYou can find more details in our documentation:\n\n- [The basics: Configuration via a file](https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-via-a-file)\n\nAnd if you're looking for more general configuration documentation:\n\n- [Usage and Configuration](https://black.readthedocs.io/en/stable/usage_and_configuration/index.html)\n\n**Pro-tip**: If you're asking yourself \"Do I need to configure anything?\" the answer is\n\"No\". _Black_ is all about sensible defaults. Applying those defaults will have your\ncode in compliance with many other _Black_ formatted projects.\n\n## Used by\n\nThe following notable open-source projects trust _Black_ with enforcing a consistent\ncode style: pytest, tox, Pyramid, Django, Django Channels, Hypothesis, attrs,\nSQLAlchemy, Poetry, PyPA applications (Warehouse, Bandersnatch, Pipenv, virtualenv),\npandas, Pillow, Twisted, LocalStack, every Datadog Agent Integration, Home Assistant,\nZulip, Kedro, OpenOA, FLORIS, ORBIT, WOMBAT, and many more.\n\nThe following organizations use _Black_: Facebook, Dropbox, KeepTruckin, Lyft, Mozilla,\nQuora, Duolingo, QuantumBlack, Tesla, Archer Aviation.\n\nAre we missing anyone? Let us know.\n\n## Testimonials\n\n**Mike Bayer**, [author of `SQLAlchemy`](https://www.sqlalchemy.org/):\n\n> I can't think of any single tool in my entire programming career that has given me a\n> bigger productivity increase by its introduction. I can now do refactorings in about\n> 1% of the keystrokes that it would have taken me previously when we had no way for\n> code to format itself.\n\n**Dusty Phillips**,\n[writer](https://smile.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=dusty+phillips):\n\n> _Black_ is opinionated so you don't have to be.\n\n**Hynek Schlawack**, [creator of `attrs`](https://www.attrs.org/), core developer of\nTwisted and CPython:\n\n> An auto-formatter that doesn't suck is all I want for Xmas!\n\n**Carl Meyer**, [Django](https://www.djangoproject.com/) core developer:\n\n> At least the name is good.\n\n**Kenneth Reitz**, creator of [`requests`](https://requests.readthedocs.io/en/latest/)\nand [`pipenv`](https://readthedocs.org/projects/pipenv/):\n\n> This vastly improves the formatting of our code. Thanks a ton!\n\n## Show your style\n\nUse the badge in your project's README.md:\n\n```md\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n```\n\nUsing the badge in README.rst:\n\n```\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :target: https://github.com/psf/black\n```\n\nLooks like this:\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n## License\n\nMIT\n\n## Contributing\n\nWelcome! Happy to see you willing to make the project better. You can get started by\nreading this:\n\n- [Contributing: The basics](https://black.readthedocs.io/en/latest/contributing/the_basics.html)\n\nYou can also take a look at the rest of the contributing docs or talk with the\ndevelopers:\n\n- [Contributing documentation](https://black.readthedocs.io/en/latest/contributing/index.html)\n- [Chat on Discord](https://discord.gg/RtVdv86PrH)\n\n## Change log\n\nThe log has become rather long. It moved to its own file.\n\nSee [CHANGES](https://black.readthedocs.io/en/latest/change_log.html).\n\n## Authors\n\nThe author list is quite long nowadays, so it lives in its own file.\n\nSee [AUTHORS.md](./AUTHORS.md)\n\n## Code of Conduct\n\nEveryone participating in the _Black_ project, and in particular in the issue tracker,\npull requests, and social media activity, is expected to treat other people with respect\nand more generally to follow the guidelines articulated in the\n[Python Community Code of Conduct](https://www.python.org/psf/codeofconduct/).\n\nAt the same time, humor is encouraged. In fact, basic familiarity with Monty Python's\nFlying Circus is expected. We are not savages.\n\nAnd if you _really_ need to slap somebody, do it with a fish while dancing.\n# Change Log\n\n## 24.8.0\n\n### Stable style\n\n- Fix crash when `# fmt: off` is used before a closing parenthesis or bracket. (#4363)\n\n### Packaging\n\n- Packaging metadata updated: docs are explictly linked, the issue tracker is now also\n linked. This improves the PyPI listing for Black. (#4345)\n\n### Parser\n\n- Fix regression where Black failed to parse a multiline f-string containing another\n multiline string (#4339)\n- Fix regression where Black failed to parse an escaped single quote inside an f-string\n (#4401)\n- Fix bug with Black incorrectly parsing empty lines with a backslash (#4343)\n- Fix bugs with Black's tokenizer not handling `\\{` inside f-strings very well (#4422)\n- Fix incorrect line numbers in the tokenizer for certain tokens within f-strings\n (#4423)\n\n### Performance\n\n- Improve performance when a large directory is listed in `.gitignore` (#4415)\n\n### _Blackd_\n\n- Fix blackd (and all extras installs) for docker container (#4357)\n\n## 24.4.2\n\nThis is a bugfix release to fix two regressions in the new f-string parser introduced in\n24.4.1.\n\n### Parser\n\n- Fix regression where certain complex f-strings failed to parse (#4332)\n\n### Performance\n\n- Fix bad performance on certain complex string literals (#4331)\n\n## 24.4.1\n\n### Highlights\n\n- Add support for the new Python 3.12 f-string syntax introduced by PEP 701 (#3822)\n\n### Stable style\n\n- Fix crash involving indented dummy functions containing newlines (#4318)\n\n### Parser\n\n- Add support for type parameter defaults, a new syntactic feature added to Python 3.13\n by PEP 696 (#4327)\n\n### Integrations\n\n- Github Action now works even when `git archive` is skipped (#4313)\n\n## 24.4.0\n\n### Stable style\n\n- Fix unwanted crashes caused by AST equivalency check (#4290)\n\n### Preview style\n\n- `if` guards in `case` blocks are now wrapped in parentheses when the line is too long.\n (#4269)\n- Stop moving multiline strings to a new line unless inside brackets (#4289)\n\n### Integrations\n\n- Add a new option `use_pyproject` to the GitHub Action `psf/black`. This will read the\n Black version from `pyproject.toml`. (#4294)\n\n## 24.3.0\n\n### Highlights\n\nThis release is a milestone: it fixes Black's first CVE security vulnerability. If you\nrun Black on untrusted input, or if you habitually put thousands of leading tab\ncharacters in your docstrings, you are strongly encouraged to upgrade immediately to fix\n[CVE-2024-21503](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21503).\n\nThis release also fixes a bug in Black's AST safety check that allowed Black to make\nincorrect changes to certain f-strings that are valid in Python 3.12 and higher.\n\n### Stable style\n\n- Don't move comments along with delimiters, which could cause crashes (#4248)\n- Strengthen AST safety check to catch more unsafe changes to strings. Previous versions\n of Black would incorrectly format the contents of certain unusual f-strings containing\n nested strings with the same quote type. Now, Black will crash on such strings until\n support for the new f-string syntax is implemented. (#4270)\n- Fix a bug where line-ranges exceeding the last code line would not work as expected\n (#4273)\n\n### Performance\n\n- Fix catastrophic performance on docstrings that contain large numbers of leading tab\n characters. This fixes\n [CVE-2024-21503](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21503).\n (#4278)\n\n### Documentation\n\n- Note what happens when `--check` is used with `--quiet` (#4236)\n\n## 24.2.0\n\n### Stable style\n\n- Fixed a bug where comments where mistakenly removed along with redundant parentheses\n (#4218)\n\n### Preview style\n\n- Move the `hug_parens_with_braces_and_square_brackets` feature to the unstable style\n due to an outstanding crash and proposed formatting tweaks (#4198)\n- Fixed a bug where base expressions caused inconsistent formatting of \\*\\* in tenary\n expression (#4154)\n- Checking for newline before adding one on docstring that is almost at the line limit\n (#4185)\n- Remove redundant parentheses in `case` statement `if` guards (#4214).\n\n### Configuration\n\n- Fix issue where _Black_ would ignore input files in the presence of symlinks (#4222)\n- _Black_ now ignores `pyproject.toml` that is missing a `tool.black` section when\n discovering project root and configuration. Since _Black_ continues to use version\n control as an indicator of project root, this is expected to primarily change behavior\n for users in a monorepo setup (desirably). If you wish to preserve previous behavior,\n simply add an empty `[tool.black]` to the previously discovered `pyproject.toml`\n (#4204)\n\n### Output\n\n- Black will swallow any `SyntaxWarning`s or `DeprecationWarning`s produced by the `ast`\n module when performing equivalence checks (#4189)\n\n### Integrations\n\n- Add a JSONSchema and provide a validate-pyproject entry-point (#4181)\n\n## 24.1.1\n\nBugfix release to fix a bug that made Black unusable on certain file systems with strict\nlimits on path length.\n\n### Preview style\n\n- Consistently add trailing comma on typed parameters (#4164)\n\n### Configuration\n\n- Shorten the length of the name of the cache file to fix crashes on file systems that\n do not support long paths (#4176)\n\n## 24.1.0\n\n### Highlights\n\nThis release introduces the new 2024 stable style (#4106), stabilizing the following\nchanges:\n\n- Add parentheses around `if`-`else` expressions (#2278)\n- Dummy class and function implementations consisting only of `...` are formatted more\n compactly (#3796)\n- If an assignment statement is too long, we now prefer splitting on the right-hand side\n (#3368)\n- Hex codes in Unicode escape sequences are now standardized to lowercase (#2916)\n- Allow empty first lines at the beginning of most blocks (#3967, #4061)\n- Add parentheses around long type annotations (#3899)\n- Enforce newline after module docstrings (#3932, #4028)\n- Fix incorrect magic trailing comma handling in return types (#3916)\n- Remove blank lines before class docstrings (#3692)\n- Wrap multiple context managers in parentheses if combined in a single `with` statement\n (#3489)\n- Fix bug in line length calculations for power operations (#3942)\n- Add trailing commas to collection literals even if there's a comment after the last\n entry (#3393)\n- When using `--skip-magic-trailing-comma` or `-C`, trailing commas are stripped from\n subscript expressions with more than 1 element (#3209)\n- Add extra blank lines in stubs in a few cases (#3564, #3862)\n- Accept raw strings as docstrings (#3947)\n- Split long lines in case blocks (#4024)\n- Stop removing spaces from walrus operators within subscripts (#3823)\n- Fix incorrect formatting of certain async statements (#3609)\n- Allow combining `# fmt: skip` with other comments (#3959)\n\nThere are already a few improvements in the `--preview` style, which are slated for the\n2025 stable style. Try them out and\n[share your feedback](https://github.com/psf/black/issues). In the past, the preview\nstyle has included some features that we were not able to stabilize. This year, we're\nadding a separate `--unstable` style for features with known problems. Now, the\n`--preview` style only includes features that we actually expect to make it into next\nyear's stable style.\n\n### Stable style\n\nSeveral bug fixes were made in features that are moved to the stable style in this\nrelease:\n\n- Fix comment handling when parenthesising conditional expressions (#4134)\n- Fix bug where spaces were not added around parenthesized walruses in subscripts,\n unlike other binary operators (#4109)\n- Remove empty lines before docstrings in async functions (#4132)\n- Address a missing case in the change to allow empty lines at the beginning of all\n blocks, except immediately before a docstring (#4130)\n- For stubs, fix logic to enforce empty line after nested classes with bodies (#4141)\n\n### Preview style\n\n- Add `--unstable` style, covering preview features that have known problems that would\n block them from going into the stable style. Also add the `--enable-unstable-feature`\n flag; for example, use\n `--enable-unstable-feature hug_parens_with_braces_and_square_brackets` to apply this\n preview feature throughout 2024, even if a later Black release downgrades the feature\n to unstable (#4096)\n- Format module docstrings the same as class and function docstrings (#4095)\n- Fix crash when using a walrus in a dictionary (#4155)\n- Fix unnecessary parentheses when wrapping long dicts (#4135)\n- Stop normalizing spaces before `# fmt: skip` comments (#4146)\n\n### Configuration\n\n- Print warning when configuration in `pyproject.toml` contains an invalid key (#4165)\n- Fix symlink handling, properly ignoring symlinks that point outside of root (#4161)\n- Fix cache mtime logic that resulted in false positive cache hits (#4128)\n- Remove the long-deprecated `--experimental-string-processing` flag. This feature can\n currently be enabled with `--preview --enable-unstable-feature string_processing`.\n (#4096)\n\n### Integrations\n\n- Revert the change to run Black's pre-commit integration only on specific git hooks\n (#3940) for better compatibility with older versions of pre-commit (#4137)\n\n## 23.12.1\n\n### Packaging\n\n- Fixed a bug that included dependencies from the `d` extra by default (#4108)\n\n## 23.12.0\n\n### Highlights\n\nIt's almost 2024, which means it's time for a new edition of _Black_'s stable style!\nTogether with this release, we'll put out an alpha release 24.1a1 showcasing the draft\n2024 stable style, which we'll finalize in the January release. Please try it out and\n[share your feedback](https://github.com/psf/black/issues/4042).\n\nThis release (23.12.0) will still produce the 2023 style. Most but not all of the\nchanges in `--preview` mode will be in the 2024 stable style.\n\n### Stable style\n\n- Fix bug where `# fmt: off` automatically dedents when used with the `--line-ranges`\n option, even when it is not within the specified line range. (#4084)\n- Fix feature detection for parenthesized context managers (#4104)\n\n### Preview style\n\n- Prefer more equal signs before a break when splitting chained assignments (#4010)\n- Standalone form feed characters at the module level are no longer removed (#4021)\n- Additional cases of immediately nested tuples, lists, and dictionaries are now\n indented less (#4012)\n- Allow empty lines at the beginning of all blocks, except immediately before a\n docstring (#4060)\n- Fix crash in preview mode when using a short `--line-length` (#4086)\n- Keep suites consisting of only an ellipsis on their own lines if they are not\n functions or class definitions (#4066) (#4103)\n\n### Configuration\n\n- `--line-ranges` now skips _Black_'s internal stability check in `--safe` mode. This\n avoids a crash on rare inputs that have many unformatted same-content lines. (#4034)\n\n### Packaging\n\n- Upgrade to mypy 1.7.1 (#4049) (#4069)\n- Faster compiled wheels are now available for CPython 3.12 (#4070)\n\n### Integrations\n\n- Enable 3.12 CI (#4035)\n- Build docker images in parallel (#4054)\n- Build docker images with 3.12 (#4055)\n\n## 23.11.0\n\n### Highlights\n\n- Support formatting ranges of lines with the new `--line-ranges` command-line option\n (#4020)\n\n### Stable style\n\n- Fix crash on formatting bytes strings that look like docstrings (#4003)\n- Fix crash when whitespace followed a backslash before newline in a docstring (#4008)\n- Fix standalone comments inside complex blocks crashing Black (#4016)\n- Fix crash on formatting code like `await (a ** b)` (#3994)\n- No longer treat leading f-strings as docstrings. This matches Python's behaviour and\n fixes a crash (#4019)\n\n### Preview style\n\n- Multiline dicts and lists that are the sole argument to a function are now indented\n less (#3964)\n- Multiline unpacked dicts and lists as the sole argument to a function are now also\n indented less (#3992)\n- In f-string debug expressions, quote types that are visible in the final string are\n now preserved (#4005)\n- Fix a bug where long `case` blocks were not split into multiple lines. Also enable\n general trailing comma rules on `case` blocks (#4024)\n- Keep requiring two empty lines between module-level docstring and first function or\n class definition (#4028)\n- Add support for single-line format skip with other comments on the same line (#3959)\n\n### Configuration\n\n- Consistently apply force exclusion logic before resolving symlinks (#4015)\n- Fix a bug in the matching of absolute path names in `--include` (#3976)\n\n### Performance\n\n- Fix mypyc builds on arm64 on macOS (#4017)\n\n### Integrations\n\n- Black's pre-commit integration will now run only on git hooks appropriate for a code\n formatter (#3940)\n\n## 23.10.1\n\n### Highlights\n\n- Maintenance release to get a fix out for GitHub Action edge case (#3957)\n\n### Preview style\n\n- Fix merging implicit multiline strings that have inline comments (#3956)\n- Allow empty first line after block open before a comment or compound statement (#3967)\n\n### Packaging\n\n- Change Dockerfile to hatch + compile black (#3965)\n\n### Integrations\n\n- The summary output for GitHub workflows is now suppressible using the `summary`\n parameter. (#3958)\n- Fix the action failing when Black check doesn't pass (#3957)\n\n### Documentation\n\n- It is known Windows documentation CI is broken\n https://github.com/psf/black/issues/3968\n\n## 23.10.0\n\n### Stable style\n\n- Fix comments getting removed from inside parenthesized strings (#3909)\n\n### Preview style\n\n- Fix long lines with power operators getting split before the line length (#3942)\n- Long type hints are now wrapped in parentheses and properly indented when split across\n multiple lines (#3899)\n- Magic trailing commas are now respected in return types. (#3916)\n- Require one empty line after module-level docstrings. (#3932)\n- Treat raw triple-quoted strings as docstrings (#3947)\n\n### Configuration\n\n- Fix cache versioning logic when `BLACK_CACHE_DIR` is set (#3937)\n\n### Parser\n\n- Fix bug where attributes named `type` were not accepted inside `match` statements\n (#3950)\n- Add support for PEP 695 type aliases containing lambdas and other unusual expressions\n (#3949)\n\n### Output\n\n- Black no longer attempts to provide special errors for attempting to format Python 2\n code (#3933)\n- Black will more consistently print stacktraces on internal errors in verbose mode\n (#3938)\n\n### Integrations\n\n- The action output displayed in the job summary is now wrapped in Markdown (#3914)\n\n## 23.9.1\n\nDue to various issues, the previous release (23.9.0) did not include compiled mypyc\nwheels, which make Black significantly faster. These issues have now been fixed, and\nthis release should come with compiled wheels once again.\n\nThere will be no wheels for Python 3.12 due to a bug in mypyc. We will provide 3.12\nwheels in a future release as soon as the mypyc bug is fixed.\n\n### Packaging\n\n- Upgrade to mypy 1.5.1 (#3864)\n\n### Performance\n\n- Store raw tuples instead of NamedTuples in Black's cache, improving performance and\n decreasing the size of the cache (#3877)\n\n## 23.9.0\n\n### Preview style\n\n- More concise formatting for dummy implementations (#3796)\n- In stub files, add a blank line between a statement with a body (e.g an\n `if sys.version_info > (3, x):`) and a function definition on the same level (#3862)\n- Fix a bug whereby spaces were removed from walrus operators within subscript(#3823)\n\n### Configuration\n\n- Black now applies exclusion and ignore logic before resolving symlinks (#3846)\n\n### Performance\n\n- Avoid importing `IPython` if notebook cells do not contain magics (#3782)\n- Improve caching by comparing file hashes as fallback for mtime and size (#3821)\n\n### _Blackd_\n\n- Fix an issue in `blackd` with single character input (#3558)\n\n### Integrations\n\n- Black now has an\n [official pre-commit mirror](https://github.com/psf/black-pre-commit-mirror). Swapping\n `https://github.com/psf/black` to `https://github.com/psf/black-pre-commit-mirror` in\n your `.pre-commit-config.yaml` will make Black about 2x faster (#3828)\n- The `.black.env` folder specified by `ENV_PATH` will now be removed on the completion\n of the GitHub Action (#3759)\n\n## 23.7.0\n\n### Highlights\n\n- Runtime support for Python 3.7 has been removed. Formatting 3.7 code will still be\n supported until further notice (#3765)\n\n### Stable style\n\n- Fix a bug where an illegal trailing comma was added to return type annotations using\n PEP 604 unions (#3735)\n- Fix several bugs and crashes where comments in stub files were removed or mishandled\n under some circumstances (#3745)\n- Fix a crash with multi-line magic comments like `type: ignore` within parentheses\n (#3740)\n- Fix error in AST validation when _Black_ removes trailing whitespace in a type comment\n (#3773)\n\n### Preview style\n\n- Implicitly concatenated strings used as function args are no longer wrapped inside\n parentheses (#3640)\n- Remove blank lines between a class definition and its docstring (#3692)\n\n### Configuration\n\n- The `--workers` argument to _Black_ can now be specified via the `BLACK_NUM_WORKERS`\n environment variable (#3743)\n- `.pytest_cache`, `.ruff_cache` and `.vscode` are now excluded by default (#3691)\n- Fix _Black_ not honouring `pyproject.toml` settings when running `--stdin-filename`\n and the `pyproject.toml` found isn't in the current working directory (#3719)\n- _Black_ will now error if `exclude` and `extend-exclude` have invalid data types in\n `pyproject.toml`, instead of silently doing the wrong thing (#3764)\n\n### Packaging\n\n- Upgrade mypyc from 0.991 to 1.3 (#3697)\n- Remove patching of Click that mitigated errors on Python 3.6 with `LANG=C` (#3768)\n\n### Parser\n\n- Add support for the new PEP 695 syntax in Python 3.12 (#3703)\n\n### Performance\n\n- Speed up _Black_ significantly when the cache is full (#3751)\n- Avoid importing `IPython` in a case where we wouldn't need it (#3748)\n\n### Output\n\n- Use aware UTC datetimes internally, avoids deprecation warning on Python 3.12 (#3728)\n- Change verbose logging to exactly mirror _Black_'s logic for source discovery (#3749)\n\n### _Blackd_\n\n- The `blackd` argument parser now shows the default values for options in their help\n text (#3712)\n\n### Integrations\n\n- Black is now tested with\n [`PYTHONWARNDEFAULTENCODING = 1`](https://docs.python.org/3/library/io.html#io-encoding-warning)\n (#3763)\n- Update GitHub Action to display black output in the job summary (#3688)\n\n### Documentation\n\n- Add a CITATION.cff file to the root of the repository, containing metadata on how to\n cite this software (#3723)\n- Update the _classes_ and _exceptions_ documentation in Developer reference to match\n the latest code base (#3755)\n\n## 23.3.0\n\n### Highlights\n\nThis release fixes a longstanding confusing behavior in Black's GitHub action, where the\nversion of the action did not determine the version of Black being run (issue #3382). In\naddition, there is a small bug fix around imports and a number of improvements to the\npreview style.\n\nPlease try out the\n[preview style](https://black.readthedocs.io/en/stable/the_black_code_style/future_style.html#preview-style)\nwith `black --preview` and tell us your feedback. All changes in the preview style are\nexpected to become part of Black's stable style in January 2024.\n\n### Stable style\n\n- Import lines with `# fmt: skip` and `# fmt: off` no longer have an extra blank line\n added when they are right after another import line (#3610)\n\n### Preview style\n\n- Add trailing commas to collection literals even if there's a comment after the last\n entry (#3393)\n- `async def`, `async for`, and `async with` statements are now formatted consistently\n compared to their non-async version. (#3609)\n- `with` statements that contain two context managers will be consistently wrapped in\n parentheses (#3589)\n- Let string splitters respect [East Asian Width](https://www.unicode.org/reports/tr11/)\n (#3445)\n- Now long string literals can be split after East Asian commas and periods (`\u3001` U+3001\n IDEOGRAPHIC COMMA, `\u3002` U+3002 IDEOGRAPHIC FULL STOP, & `\uff0c` U+FF0C FULLWIDTH COMMA)\n besides before spaces (#3445)\n- For stubs, enforce one blank line after a nested class with a body other than just\n `...` (#3564)\n- Improve handling of multiline strings by changing line split behavior (#1879)\n\n### Parser\n\n- Added support for formatting files with invalid type comments (#3594)\n\n### Integrations\n\n- Update GitHub Action to use the version of Black equivalent to action's version if\n version input is not specified (#3543)\n- Fix missing Python binary path in autoload script for vim (#3508)\n\n### Documentation\n\n- Document that only the most recent release is supported for security issues;\n vulnerabilities should be reported through Tidelift (#3612)\n\n## 23.1.0\n\n### Highlights\n\nThis is the first release of 2023, and following our\n[stability policy](https://black.readthedocs.io/en/stable/the_black_code_style/index.html#stability-policy),\nit comes with a number of improvements to our stable style, including improvements to\nempty line handling, removal of redundant parentheses in several contexts, and output\nthat highlights implicitly concatenated strings better.\n\nThere are also many changes to the preview style; try out `black --preview` and give us\nfeedback to help us set the stable style for next year.\n\nIn addition to style changes, Black now automatically infers the supported Python\nversions from your `pyproject.toml` file, removing the need to set Black's target\nversions separately.\n\n### Stable style\n\n- Introduce the 2023 stable style, which incorporates most aspects of last year's\n preview style (#3418). Specific changes:\n - Enforce empty lines before classes and functions with sticky leading comments\n (#3302) (22.12.0)\n - Reformat empty and whitespace-only files as either an empty file (if no newline is\n present) or as a single newline character (if a newline is present) (#3348)\n (22.12.0)\n - Implicitly concatenated strings used as function args are now wrapped inside\n parentheses (#3307) (22.12.0)\n - Correctly handle trailing commas that are inside a line's leading non-nested parens\n (#3370) (22.12.0)\n - `--skip-string-normalization` / `-S` now prevents docstring prefixes from being\n normalized as expected (#3168) (since 22.8.0)\n - When using `--skip-magic-trailing-comma` or `-C`, trailing commas are stripped from\n subscript expressions with more than 1 element (#3209) (22.8.0)\n - Implicitly concatenated strings inside a list, set, or tuple are now wrapped inside\n parentheses (#3162) (22.8.0)\n - Fix a string merging/split issue when a comment is present in the middle of\n implicitly concatenated strings on its own line (#3227) (22.8.0)\n - Docstring quotes are no longer moved if it would violate the line length limit\n (#3044, #3430) (22.6.0)\n - Parentheses around return annotations are now managed (#2990) (22.6.0)\n - Remove unnecessary parentheses around awaited objects (#2991) (22.6.0)\n - Remove unnecessary parentheses in `with` statements (#2926) (22.6.0)\n - Remove trailing newlines after code block open (#3035) (22.6.0)\n - Code cell separators `#%%` are now standardised to `# %%` (#2919) (22.3.0)\n - Remove unnecessary parentheses from `except` statements (#2939) (22.3.0)\n - Remove unnecessary parentheses from tuple unpacking in `for` loops (#2945) (22.3.0)\n - Avoid magic-trailing-comma in single-element subscripts (#2942) (22.3.0)\n- Fix a crash when a colon line is marked between `# fmt: off` and `# fmt: on` (#3439)\n\n### Preview style\n\n- Format hex codes in unicode escape sequences in string literals (#2916)\n- Add parentheses around `if`-`else` expressions (#2278)\n- Improve performance on large expressions that contain many strings (#3467)\n- Fix a crash in preview style with assert + parenthesized string (#3415)\n- Fix crashes in preview style with walrus operators used in function return annotations\n and except clauses (#3423)\n- Fix a crash in preview advanced string processing where mixed implicitly concatenated\n regular and f-strings start with an empty span (#3463)\n- Fix a crash in preview advanced string processing where a standalone comment is placed\n before a dict's value (#3469)\n- Fix an issue where extra empty lines are added when a decorator has `# fmt: skip`\n applied or there is a standalone comment between decorators (#3470)\n- Do not put the closing quotes in a docstring on a separate line, even if the line is\n too long (#3430)\n- Long values in dict literals are now wrapped in parentheses; correspondingly\n unnecessary parentheses around short values in dict literals are now removed; long\n string lambda values are now wrapped in parentheses (#3440)\n- Fix two crashes in preview style involving edge cases with docstrings (#3451)\n- Exclude string type annotations from improved string processing; fix crash when the\n return type annotation is stringified and spans across multiple lines (#3462)\n- Wrap multiple context managers in parentheses when targeting Python 3.9+ (#3489)\n- Fix several crashes in preview style with walrus operators used in `with` statements\n or tuples (#3473)\n- Fix an invalid quote escaping bug in f-string expressions where it produced invalid\n code. Implicitly concatenated f-strings with different quotes can now be merged or\n quote-normalized by changing the quotes used in expressions. (#3509)\n- Fix crash on `await (yield)` when Black is compiled with mypyc (#3533)\n\n### Configuration\n\n- Black now tries to infer its `--target-version` from the project metadata specified in\n `pyproject.toml` (#3219)\n\n### Packaging\n\n- Upgrade mypyc from `0.971` to `0.991` so mypycified _Black_ can be built on armv7\n (#3380)\n - This also fixes some crashes while using compiled Black with a debug build of\n CPython\n- Drop specific support for the `tomli` requirement on 3.11 alpha releases, working\n around a bug that would cause the requirement not to be installed on any non-final\n Python releases (#3448)\n- Black now depends on `packaging` version `22.0` or later. This is required for new\n functionality that needs to parse part of the project metadata (#3219)\n\n### Output\n\n- Calling `black --help` multiple times will return the same help contents each time\n (#3516)\n- Verbose logging now shows the values of `pyproject.toml` configuration variables\n (#3392)\n- Fix false symlink detection messages in verbose output due to using an incorrect\n relative path to the project root (#3385)\n\n### Integrations\n\n- Move 3.11 CI to normal flow now that all dependencies support 3.11 (#3446)\n- Docker: Add new `latest_prerelease` tag automation to follow latest black alpha\n release on docker images (#3465)\n\n### Documentation\n\n- Expand `vim-plug` installation instructions to offer more explicit options (#3468)\n\n## 22.12.0\n\n### Preview style\n\n- Enforce empty lines before classes and functions with sticky leading comments (#3302)\n- Reformat empty and whitespace-only files as either an empty file (if no newline is\n present) or as a single newline character (if a newline is present) (#3348)\n- Implicitly concatenated strings used as function args are now wrapped inside\n parentheses (#3307)\n- For assignment statements, prefer splitting the right hand side if the left hand side\n fits on a single line (#3368)\n- Correctly handle trailing commas that are inside a line's leading non-nested parens\n (#3370)\n\n### Configuration\n\n- Fix incorrectly applied `.gitignore` rules by considering the `.gitignore` location\n and the relative path to the target file (#3338)\n- Fix incorrectly ignoring `.gitignore` presence when more than one source directory is\n specified (#3336)\n\n### Parser\n\n- Parsing support has been added for walruses inside generator expression that are\n passed as function args (for example,\n `any(match := my_re.match(text) for text in texts)`) (#3327).\n\n### Integrations\n\n- Vim plugin: Optionally allow using the system installation of Black via\n `let g:black_use_virtualenv = 0`(#3309)\n\n## 22.10.0\n\n### Highlights\n\n- Runtime support for Python 3.6 has been removed. Formatting 3.6 code will still be\n supported until further notice.\n\n### Stable style\n\n- Fix a crash when `# fmt: on` is used on a different block level than `# fmt: off`\n (#3281)\n\n### Preview style\n\n- Fix a crash when formatting some dicts with parenthesis-wrapped long string keys\n (#3262)\n\n### Configuration\n\n- `.ipynb_checkpoints` directories are now excluded by default (#3293)\n- Add `--skip-source-first-line` / `-x` option to ignore the first line of source code\n while formatting (#3299)\n\n### Packaging\n\n- Executables made with PyInstaller will no longer crash when formatting several files\n at once on macOS. Native x86-64 executables for macOS are available once again.\n (#3275)\n- Hatchling is now used as the build backend. This will not have any effect for users\n who install Black with its wheels from PyPI. (#3233)\n- Faster compiled wheels are now available for CPython 3.11 (#3276)\n\n### _Blackd_\n\n- Windows style (CRLF) newlines will be preserved (#3257).\n\n### Integrations\n\n- Vim plugin: add flag (`g:black_preview`) to enable/disable the preview style (#3246)\n- Update GitHub Action to support formatting of Jupyter Notebook files via a `jupyter`\n option (#3282)\n- Update GitHub Action to support use of version specifiers (e.g. `<23`) for Black\n version (#3265)\n\n## 22.8.0\n\n### Highlights\n\n- Python 3.11 is now supported, except for _blackd_ as aiohttp does not support 3.11 as\n of publishing (#3234)\n- This is the last release that supports running _Black_ on Python 3.6 (formatting 3.6\n code will continue to be supported until further notice)\n- Reword the stability policy to say that we may, in rare cases, make changes that\n affect code that was not previously formatted by _Black_ (#3155)\n\n### Stable style\n\n- Fix an infinite loop when using `# fmt: on/off` in the middle of an expression or code\n block (#3158)\n- Fix incorrect handling of `# fmt: skip` on colon (`:`) lines (#3148)\n- Comments are no longer deleted when a line had spaces removed around power operators\n (#2874)\n\n### Preview style\n\n- Single-character closing docstring quotes are no longer moved to their own line as\n this is invalid. This was a bug introduced in version 22.6.0. (#3166)\n- `--skip-string-normalization` / `-S` now prevents docstring prefixes from being\n normalized as expected (#3168)\n- When using `--skip-magic-trailing-comma` or `-C`, trailing commas are stripped from\n subscript expressions with more than 1 element (#3209)\n- Implicitly concatenated strings inside a list, set, or tuple are now wrapped inside\n parentheses (#3162)\n- Fix a string merging/split issue when a comment is present in the middle of implicitly\n concatenated strings on its own line (#3227)\n\n### _Blackd_\n\n- `blackd` now supports enabling the preview style via the `X-Preview` header (#3217)\n\n### Configuration\n\n- Black now uses the presence of debug f-strings to detect target version (#3215)\n- Fix misdetection of project root and verbose logging of sources in cases involving\n `--stdin-filename` (#3216)\n- Immediate `.gitignore` files in source directories given on the command line are now\n also respected, previously only `.gitignore` files in the project root and\n automatically discovered directories were respected (#3237)\n\n### Documentation\n\n- Recommend using BlackConnect in IntelliJ IDEs (#3150)\n\n### Integrations\n\n- Vim plugin: prefix messages with `Black: ` so it's clear they come from Black (#3194)\n- Docker: changed to a /opt/venv installation + added to PATH to be available to\n non-root users (#3202)\n\n### Output\n\n- Change from deprecated `asyncio.get_event_loop()` to create our event loop which\n removes DeprecationWarning (#3164)\n- Remove logging from internal `blib2to3` library since it regularly emits error logs\n about failed caching that can and should be ignored (#3193)\n\n### Parser\n\n- Type comments are now included in the AST equivalence check consistently so accidental\n deletion raises an error. Though type comments can't be tracked when running on PyPy\n 3.7 due to standard library limitations. (#2874)\n\n### Performance\n\n- Reduce Black's startup time when formatting a single file by 15-30% (#3211)\n\n## 22.6.0\n\n### Style\n\n- Fix unstable formatting involving `#fmt: skip` and `# fmt:skip` comments (notice the\n lack of spaces) (#2970)\n\n### Preview style\n\n- Docstring quotes are no longer moved if it would violate the line length limit (#3044)\n- Parentheses around return annotations are now managed (#2990)\n- Remove unnecessary parentheses around awaited objects (#2991)\n- Remove unnecessary parentheses in `with` statements (#2926)\n- Remove trailing newlines after code block open (#3035)\n\n### Integrations\n\n- Add `scripts/migrate-black.py` script to ease introduction of Black to a Git project\n (#3038)\n\n### Output\n\n- Output Python version and implementation as part of `--version` flag (#2997)\n\n### Packaging\n\n- Use `tomli` instead of `tomllib` on Python 3.11 builds where `tomllib` is not\n available (#2987)\n\n### Parser\n\n- [PEP 654](https://peps.python.org/pep-0654/#except) syntax (for example,\n `except *ExceptionGroup:`) is now supported (#3016)\n- [PEP 646](https://peps.python.org/pep-0646) syntax (for example,\n `Array[Batch, *Shape]` or `def fn(*args: *T) -> None`) is now supported (#3071)\n\n### Vim Plugin\n\n- Fix `strtobool` function. It didn't parse true/on/false/off. (#3025)\n\n## 22.3.0\n\n### Preview style\n\n- Code cell separators `#%%` are now standardised to `# %%` (#2919)\n- Remove unnecessary parentheses from `except` statements (#2939)\n- Remove unnecessary parentheses from tuple unpacking in `for` loops (#2945)\n- Avoid magic-trailing-comma in single-element subscripts (#2942)\n\n### Configuration\n\n- Do not format `__pypackages__` directories by default (#2836)\n- Add support for specifying stable version with `--required-version` (#2832).\n- Avoid crashing when the user has no homedir (#2814)\n- Avoid crashing when md5 is not available (#2905)\n- Fix handling of directory junctions on Windows (#2904)\n\n### Documentation\n\n- Update pylint config documentation (#2931)\n\n### Integrations\n\n- Move test to disable plugin in Vim/Neovim, which speeds up loading (#2896)\n\n### Output\n\n- In verbose mode, log when _Black_ is using user-level config (#2861)\n\n### Packaging\n\n- Fix Black to work with Click 8.1.0 (#2966)\n- On Python 3.11 and newer, use the standard library's `tomllib` instead of `tomli`\n (#2903)\n- `black-primer`, the deprecated internal devtool, has been removed and copied to a\n [separate repository](https://github.com/cooperlees/black-primer) (#2924)\n\n### Parser\n\n- Black can now parse starred expressions in the target of `for` and `async for`\n statements, e.g `for item in *items_1, *items_2: pass` (#2879).\n\n## 22.1.0\n\nAt long last, _Black_ is no longer a beta product! This is the first non-beta release\nand the first release covered by our new\n[stability policy](https://black.readthedocs.io/en/stable/the_black_code_style/index.html#stability-policy).\n\n### Highlights\n\n- **Remove Python 2 support** (#2740)\n- Introduce the `--preview` flag (#2752)\n\n### Style\n\n- Deprecate `--experimental-string-processing` and move the functionality under\n `--preview` (#2789)\n- For stubs, one blank line between class attributes and methods is now kept if there's\n at least one pre-existing blank line (#2736)\n- Black now normalizes string prefix order (#2297)\n- Remove spaces around power operators if both operands are simple (#2726)\n- Work around bug that causes unstable formatting in some cases in the presence of the\n magic trailing comma (#2807)\n- Use parentheses for attribute access on decimal float and int literals (#2799)\n- Don't add whitespace for attribute access on hexadecimal, binary, octal, and complex\n literals (#2799)\n- Treat blank lines in stubs the same inside top-level `if` statements (#2820)\n- Fix unstable formatting with semicolons and arithmetic expressions (#2817)\n- Fix unstable formatting around magic trailing comma (#2572)\n\n### Parser\n\n- Fix mapping cases that contain as-expressions, like `case {\"key\": 1 | 2 as password}`\n (#2686)\n- Fix cases that contain multiple top-level as-expressions, like `case 1 as a, 2 as b`\n (#2716)\n- Fix call patterns that contain as-expressions with keyword arguments, like\n `case Foo(bar=baz as quux)` (#2749)\n- Tuple unpacking on `return` and `yield` constructs now implies 3.8+ (#2700)\n- Unparenthesized tuples on annotated assignments (e.g\n `values: Tuple[int, ...] = 1, 2, 3`) now implies 3.8+ (#2708)\n- Fix handling of standalone `match()` or `case()` when there is a trailing newline or a\n comment inside of the parentheses. (#2760)\n- `from __future__ import annotations` statement now implies Python 3.7+ (#2690)\n\n### Performance\n\n- Speed-up the new backtracking parser about 4X in general (enabled when\n `--target-version` is set to 3.10 and higher). (#2728)\n- _Black_ is now compiled with [mypyc](https://github.com/mypyc/mypyc) for an overall 2x\n speed-up. 64-bit Windows, MacOS, and Linux (not including musl) are supported. (#1009,\n #2431)\n\n### Configuration\n\n- Do not accept bare carriage return line endings in pyproject.toml (#2408)\n- Add configuration option (`python-cell-magics`) to format cells with custom magics in\n Jupyter Notebooks (#2744)\n- Allow setting custom cache directory on all platforms with environment variable\n `BLACK_CACHE_DIR` (#2739).\n- Enable Python 3.10+ by default, without any extra need to specify\n `--target-version=py310`. (#2758)\n- Make passing `SRC` or `--code` mandatory and mutually exclusive (#2804)\n\n### Output\n\n- Improve error message for invalid regular expression (#2678)\n- Improve error message when parsing fails during AST safety check by embedding the\n underlying SyntaxError (#2693)\n- No longer color diff headers white as it's unreadable in light themed terminals\n (#2691)\n- Text coloring added in the final statistics (#2712)\n- Verbose mode also now describes how a project root was discovered and which paths will\n be formatted. (#2526)\n\n### Packaging\n\n- All upper version bounds on dependencies have been removed (#2718)\n- `typing-extensions` is no longer a required dependency in Python 3.10+ (#2772)\n- Set `click` lower bound to `8.0.0` (#2791)\n\n### Integrations\n\n- Update GitHub action to support containerized runs (#2748)\n\n### Documentation\n\n- Change protocol in pip installation instructions to `https://` (#2761)\n- Change HTML theme to Furo primarily for its responsive design and mobile support\n (#2793)\n- Deprecate the `black-primer` tool (#2809)\n- Document Python support policy (#2819)\n\n## 21.12b0\n\n### _Black_\n\n- Fix determination of f-string expression spans (#2654)\n- Fix bad formatting of error messages about EOF in multi-line statements (#2343)\n- Functions and classes in blocks now have more consistent surrounding spacing (#2472)\n\n#### Jupyter Notebook support\n\n- Cell magics are now only processed if they are known Python cell magics. Earlier, all\n cell magics were tokenized, leading to possible indentation errors e.g. with\n `%%writefile`. (#2630)\n- Fix assignment to environment variables in Jupyter Notebooks (#2642)\n\n#### Python 3.10 support\n\n- Point users to using `--target-version py310` if we detect 3.10-only syntax (#2668)\n- Fix `match` statements with open sequence subjects, like `match a, b:` or\n `match a, *b:` (#2639) (#2659)\n- Fix `match`/`case` statements that contain `match`/`case` soft keywords multiple\n times, like `match re.match()` (#2661)\n- Fix `case` statements with an inline body (#2665)\n- Fix styling of starred expressions inside `match` subject (#2667)\n- Fix parser error location on invalid syntax in a `match` statement (#2649)\n- Fix Python 3.10 support on platforms without ProcessPoolExecutor (#2631)\n- Improve parsing performance on code that uses `match` under `--target-version py310`\n up to ~50% (#2670)\n\n### Packaging\n\n- Remove dependency on `regex` (#2644) (#2663)\n\n## 21.11b1\n\n### _Black_\n\n- Bumped regex version minimum to 2021.4.4 to fix Pattern class usage (#2621)\n\n## 21.11b0\n\n### _Black_\n\n- Warn about Python 2 deprecation in more cases by improving Python 2 only syntax\n detection (#2592)\n- Add experimental PyPy support (#2559)\n- Add partial support for the match statement. As it's experimental, it's only enabled\n when `--target-version py310` is explicitly specified (#2586)\n- Add support for parenthesized with (#2586)\n- Declare support for Python 3.10 for running Black (#2562)\n\n### Integrations\n\n- Fixed vim plugin with Python 3.10 by removing deprecated distutils import (#2610)\n- The vim plugin now parses `skip_magic_trailing_comma` from pyproject.toml (#2613)\n\n## 21.10b0\n\n### _Black_\n\n- Document stability policy, that will apply for non-beta releases (#2529)\n- Add new `--workers` parameter (#2514)\n- Fixed feature detection for positional-only arguments in lambdas (#2532)\n- Bumped typed-ast version minimum to 1.4.3 for 3.10 compatibility (#2519)\n- Fixed a Python 3.10 compatibility issue where the loop argument was still being passed\n even though it has been removed (#2580)\n- Deprecate Python 2 formatting support (#2523)\n\n### _Blackd_\n\n- Remove dependency on aiohttp-cors (#2500)\n- Bump required aiohttp version to 3.7.4 (#2509)\n\n### _Black-Primer_\n\n- Add primer support for --projects (#2555)\n- Print primer summary after individual failures (#2570)\n\n### Integrations\n\n- Allow to pass `target_version` in the vim plugin (#1319)\n- Install build tools in docker file and use multi-stage build to keep the image size\n down (#2582)\n\n## 21.9b0\n\n### Packaging\n\n- Fix missing modules in self-contained binaries (#2466)\n- Fix missing toml extra used during installation (#2475)\n\n## 21.8b0\n\n### _Black_\n\n- Add support for formatting Jupyter Notebook files (#2357)\n- Move from `appdirs` dependency to `platformdirs` (#2375)\n- Present a more user-friendly error if .gitignore is invalid (#2414)\n- The failsafe for accidentally added backslashes in f-string expressions has been\n hardened to handle more edge cases during quote normalization (#2437)\n- Avoid changing a function return type annotation's type to a tuple by adding a\n trailing comma (#2384)\n- Parsing support has been added for unparenthesized walruses in set literals, set\n comprehensions, and indices (#2447).\n- Pin `setuptools-scm` build-time dependency version (#2457)\n- Exclude typing-extensions version 3.10.0.1 due to it being broken on Python 3.10\n (#2460)\n\n### _Blackd_\n\n- Replace sys.exit(-1) with raise ImportError as it plays more nicely with tools that\n scan installed packages (#2440)\n\n### Integrations\n\n- The provided pre-commit hooks no longer specify `language_version` to avoid overriding\n `default_language_version` (#2430)\n\n## 21.7b0\n\n### _Black_\n\n- Configuration files using TOML features higher than spec v0.5.0 are now supported\n (#2301)\n- Add primer support and test for code piped into black via STDIN (#2315)\n- Fix internal error when `FORCE_OPTIONAL_PARENTHESES` feature is enabled (#2332)\n- Accept empty stdin (#2346)\n- Provide a more useful error when parsing fails during AST safety checks (#2304)\n\n### Docker\n\n- Add new `latest_release` tag automation to follow latest black release on docker\n images (#2374)\n\n### Integrations\n\n- The vim plugin now searches upwards from the directory containing the current buffer\n instead of the current working directory for pyproject.toml. (#1871)\n- The vim plugin now reads the correct string normalization option in pyproject.toml\n (#1869)\n- The vim plugin no longer crashes Black when there's boolean values in pyproject.toml\n (#1869)\n\n## 21.6b0\n\n### _Black_\n\n- Fix failure caused by `fmt: skip` and indentation (#2281)\n- Account for += assignment when deciding whether to split string (#2312)\n- Correct max string length calculation when there are string operators (#2292)\n- Fixed option usage when using the `--code` flag (#2259)\n- Do not call `uvloop.install()` when _Black_ is used as a library (#2303)\n- Added `--required-version` option to require a specific version to be running (#2300)\n- Fix incorrect custom breakpoint indices when string group contains fake f-strings\n (#2311)\n- Fix regression where `R` prefixes would be lowercased for docstrings (#2285)\n- Fix handling of named escapes (`\\N{...}`) when `--experimental-string-processing` is\n used (#2319)\n\n### Integrations\n\n- The official Black action now supports choosing what version to use, and supports the\n major 3 OSes. (#1940)\n\n## 21.5b2\n\n### _Black_\n\n- A space is no longer inserted into empty docstrings (#2249)\n- Fix handling of .gitignore files containing non-ASCII characters on Windows (#2229)\n- Respect `.gitignore` files in all levels, not only `root/.gitignore` file (apply\n `.gitignore` rules like `git` does) (#2225)\n- Restored compatibility with Click 8.0 on Python 3.6 when LANG=C used (#2227)\n- Add extra uvloop install + import support if in python env (#2258)\n- Fix --experimental-string-processing crash when matching parens are not found (#2283)\n- Make sure to split lines that start with a string operator (#2286)\n- Fix regular expression that black uses to identify f-expressions (#2287)\n\n### _Blackd_\n\n- Add a lower bound for the `aiohttp-cors` dependency. Only 0.4.0 or higher is\n supported. (#2231)\n\n### Packaging\n\n- Release self-contained x86_64 MacOS binaries as part of the GitHub release pipeline\n (#2198)\n- Always build binaries with the latest available Python (#2260)\n\n### Documentation\n\n- Add discussion of magic comments to FAQ page (#2272)\n- `--experimental-string-processing` will be enabled by default in the future (#2273)\n- Fix typos discovered by codespell (#2228)\n- Fix Vim plugin installation instructions. (#2235)\n- Add new Frequently Asked Questions page (#2247)\n- Fix encoding + symlink issues preventing proper build on Windows (#2262)\n\n## 21.5b1\n\n### _Black_\n\n- Refactor `src/black/__init__.py` into many files (#2206)\n\n### Documentation\n\n- Replaced all remaining references to the\n [`master`](https://github.com/psf/black/tree/main) branch with the\n [`main`](https://github.com/psf/black/tree/main) branch. Some additional changes in\n the source code were also made. (#2210)\n- Significantly reorganized the documentation to make much more sense. Check them out by\n heading over to [the stable docs on RTD](https://black.readthedocs.io/en/stable/).\n (#2174)\n\n## 21.5b0\n\n### _Black_\n\n- Set `--pyi` mode if `--stdin-filename` ends in `.pyi` (#2169)\n- Stop detecting target version as Python 3.9+ with pre-PEP-614 decorators that are\n being called but with no arguments (#2182)\n\n### _Black-Primer_\n\n- Add `--no-diff` to black-primer to suppress formatting changes (#2187)\n\n## 21.4b2\n\n### _Black_\n\n- Fix crash if the user configuration directory is inaccessible. (#2158)\n\n- Clarify\n [circumstances](https://github.com/psf/black/blob/master/docs/the_black_code_style.md#pragmatism)\n in which _Black_ may change the AST (#2159)\n\n- Allow `.gitignore` rules to be overridden by specifying `exclude` in `pyproject.toml`\n or on the command line. (#2170)\n\n### _Packaging_\n\n- Install `primer.json` (used by `black-primer` by default) with black. (#2154)\n\n## 21.4b1\n\n### _Black_\n\n- Fix crash on docstrings ending with \"\\\\ \". (#2142)\n\n- Fix crash when atypical whitespace is cleaned out of dostrings (#2120)\n\n- Reflect the `--skip-magic-trailing-comma` and `--experimental-string-processing` flags\n in the name of the cache file. Without this fix, changes in these flags would not take\n effect if the cache had already been populated. (#2131)\n\n- Don't remove necessary parentheses from assignment expression containing assert /\n return statements. (#2143)\n\n### _Packaging_\n\n- Bump pathspec to >= 0.8.1 to solve invalid .gitignore exclusion handling\n\n## 21.4b0\n\n### _Black_\n\n- Fixed a rare but annoying formatting instability created by the combination of\n optional trailing commas inserted by `Black` and optional parentheses looking at\n pre-existing \"magic\" trailing commas. This fixes issue #1629 and all of its many many\n duplicates. (#2126)\n\n- `Black` now processes one-line docstrings by stripping leading and trailing spaces,\n and adding a padding space when needed to break up \"\"\"\". (#1740)\n\n- `Black` now cleans up leading non-breaking spaces in comments (#2092)\n\n- `Black` now respects `--skip-string-normalization` when normalizing multiline\n docstring quotes (#1637)\n\n- `Black` no longer removes all empty lines between non-function code and decorators\n when formatting typing stubs. Now `Black` enforces a single empty line. (#1646)\n\n- `Black` no longer adds an incorrect space after a parenthesized assignment expression\n in if/while statements (#1655)\n\n- Added `--skip-magic-trailing-comma` / `-C` to avoid using trailing commas as a reason\n to split lines (#1824)\n\n- fixed a crash when PWD=/ on POSIX (#1631)\n\n- fixed \"I/O operation on closed file\" when using --diff (#1664)\n\n- Prevent coloured diff output being interleaved with multiple files (#1673)\n\n- Added support for PEP 614 relaxed decorator syntax on python 3.9 (#1711)\n\n- Added parsing support for unparenthesized tuples and yield expressions in annotated\n assignments (#1835)\n\n- added `--extend-exclude` argument (PR #2005)\n\n- speed up caching by avoiding pathlib (#1950)\n\n- `--diff` correctly indicates when a file doesn't end in a newline (#1662)\n\n- Added `--stdin-filename` argument to allow stdin to respect `--force-exclude` rules\n (#1780)\n\n- Lines ending with `fmt: skip` will now be not formatted (#1800)\n\n- PR #2053: Black no longer relies on typed-ast for Python 3.8 and higher\n\n- PR #2053: Python 2 support is now optional, install with\n `python3 -m pip install black[python2]` to maintain support.\n\n- Exclude `venv` directory by default (#1683)\n\n- Fixed \"Black produced code that is not equivalent to the source\" when formatting\n Python 2 docstrings (#2037)\n\n### _Packaging_\n\n- Self-contained native _Black_ binaries are now provided for releases via GitHub\n Releases (#1743)\n\n## 20.8b1\n\n### _Packaging_\n\n- explicitly depend on Click 7.1.2 or newer as `Black` no longer works with versions\n older than 7.0\n\n## 20.8b0\n\n### _Black_\n\n- re-implemented support for explicit trailing commas: now it works consistently within\n any bracket pair, including nested structures (#1288 and duplicates)\n\n- `Black` now reindents docstrings when reindenting code around it (#1053)\n\n- `Black` now shows colored diffs (#1266)\n\n- `Black` is now packaged using 'py3' tagged wheels (#1388)\n\n- `Black` now supports Python 3.8 code, e.g. star expressions in return statements\n (#1121)\n\n- `Black` no longer normalizes capital R-string prefixes as those have a\n community-accepted meaning (#1244)\n\n- `Black` now uses exit code 2 when specified configuration file doesn't exit (#1361)\n\n- `Black` now works on AWS Lambda (#1141)\n\n- added `--force-exclude` argument (#1032)\n\n- removed deprecated `--py36` option (#1236)\n\n- fixed `--diff` output when EOF is encountered (#526)\n\n- fixed `# fmt: off` handling around decorators (#560)\n\n- fixed unstable formatting with some `# type: ignore` comments (#1113)\n\n- fixed invalid removal on organizing brackets followed by indexing (#1575)\n\n- introduced `black-primer`, a CI tool that allows us to run regression tests against\n existing open source users of Black (#1402)\n\n- introduced property-based fuzzing to our test suite based on Hypothesis and\n Hypothersmith (#1566)\n\n- implemented experimental and disabled by default long string rewrapping (#1132),\n hidden under a `--experimental-string-processing` flag while it's being worked on;\n this is an undocumented and unsupported feature, you lose Internet points for\n depending on it (#1609)\n\n### Vim plugin\n\n- prefer virtualenv packages over global packages (#1383)\n\n## 19.10b0\n\n- added support for PEP 572 assignment expressions (#711)\n\n- added support for PEP 570 positional-only arguments (#943)\n\n- added support for async generators (#593)\n\n- added support for pre-splitting collections by putting an explicit trailing comma\n inside (#826)\n\n- added `black -c` as a way to format code passed from the command line (#761)\n\n- --safe now works with Python 2 code (#840)\n\n- fixed grammar selection for Python 2-specific code (#765)\n\n- fixed feature detection for trailing commas in function definitions and call sites\n (#763)\n\n- `# fmt: off`/`# fmt: on` comment pairs placed multiple times within the same block of\n code now behave correctly (#1005)\n\n- _Black_ no longer crashes on Windows machines with more than 61 cores (#838)\n\n- _Black_ no longer crashes on standalone comments prepended with a backslash (#767)\n\n- _Black_ no longer crashes on `from` ... `import` blocks with comments (#829)\n\n- _Black_ no longer crashes on Python 3.7 on some platform configurations (#494)\n\n- _Black_ no longer fails on comments in from-imports (#671)\n\n- _Black_ no longer fails when the file starts with a backslash (#922)\n\n- _Black_ no longer merges regular comments with type comments (#1027)\n\n- _Black_ no longer splits long lines that contain type comments (#997)\n\n- removed unnecessary parentheses around `yield` expressions (#834)\n\n- added parentheses around long tuples in unpacking assignments (#832)\n\n- added parentheses around complex powers when they are prefixed by a unary operator\n (#646)\n\n- fixed bug that led _Black_ format some code with a line length target of 1 (#762)\n\n- _Black_ no longer introduces quotes in f-string subexpressions on string boundaries\n (#863)\n\n- if _Black_ puts parenthesis around a single expression, it moves comments to the\n wrapped expression instead of after the brackets (#872)\n\n- `blackd` now returns the version of _Black_ in the response headers (#1013)\n\n- `blackd` can now output the diff of formats on source code when the `X-Diff` header is\n provided (#969)\n\n## 19.3b0\n\n- new option `--target-version` to control which Python versions _Black_-formatted code\n should target (#618)\n\n- deprecated `--py36` (use `--target-version=py36` instead) (#724)\n\n- _Black_ no longer normalizes numeric literals to include `_` separators (#696)\n\n- long `del` statements are now split into multiple lines (#698)\n\n- type comments are no longer mangled in function signatures\n\n- improved performance of formatting deeply nested data structures (#509)\n\n- _Black_ now properly formats multiple files in parallel on Windows (#632)\n\n- _Black_ now creates cache files atomically which allows it to be used in parallel\n pipelines (like `xargs -P8`) (#673)\n\n- _Black_ now correctly indents comments in files that were previously formatted with\n tabs (#262)\n\n- `blackd` now supports CORS (#622)\n\n## 18.9b0\n\n- numeric literals are now formatted by _Black_ (#452, #461, #464, #469):\n\n - numeric literals are normalized to include `_` separators on Python 3.6+ code\n\n - added `--skip-numeric-underscore-normalization` to disable the above behavior and\n leave numeric underscores as they were in the input\n\n - code with `_` in numeric literals is recognized as Python 3.6+\n\n - most letters in numeric literals are lowercased (e.g., in `1e10`, `0x01`)\n\n - hexadecimal digits are always uppercased (e.g. `0xBADC0DE`)\n\n- added `blackd`, see\n [its documentation](https://github.com/psf/black/blob/18.9b0/README.md#blackd) for\n more info (#349)\n\n- adjacent string literals are now correctly split into multiple lines (#463)\n\n- trailing comma is now added to single imports that don't fit on a line (#250)\n\n- cache is now populated when `--check` is successful for a file which speeds up\n consecutive checks of properly formatted unmodified files (#448)\n\n- whitespace at the beginning of the file is now removed (#399)\n\n- fixed mangling [pweave](http://mpastell.com/pweave/) and\n [Spyder IDE](https://www.spyder-ide.org/) special comments (#532)\n\n- fixed unstable formatting when unpacking big tuples (#267)\n\n- fixed parsing of `__future__` imports with renames (#389)\n\n- fixed scope of `# fmt: off` when directly preceding `yield` and other nodes (#385)\n\n- fixed formatting of lambda expressions with default arguments (#468)\n\n- fixed `async for` statements: _Black_ no longer breaks them into separate lines (#372)\n\n- note: the Vim plugin stopped registering `,=` as a default chord as it turned out to\n be a bad idea (#415)\n\n## 18.6b4\n\n- hotfix: don't freeze when multiple comments directly precede `# fmt: off` (#371)\n\n## 18.6b3\n\n- typing stub files (`.pyi`) now have blank lines added after constants (#340)\n\n- `# fmt: off` and `# fmt: on` are now much more dependable:\n\n - they now work also within bracket pairs (#329)\n\n - they now correctly work across function/class boundaries (#335)\n\n - they now work when an indentation block starts with empty lines or misaligned\n comments (#334)\n\n- made Click not fail on invalid environments; note that Click is right but the\n likelihood we'll need to access non-ASCII file paths when dealing with Python source\n code is low (#277)\n\n- fixed improper formatting of f-strings with quotes inside interpolated expressions\n (#322)\n\n- fixed unnecessary slowdown when long list literals where found in a file\n\n- fixed unnecessary slowdown on AST nodes with very many siblings\n\n- fixed cannibalizing backslashes during string normalization\n\n- fixed a crash due to symbolic links pointing outside of the project directory (#338)\n\n## 18.6b2\n\n- added `--config` (#65)\n\n- added `-h` equivalent to `--help` (#316)\n\n- fixed improper unmodified file caching when `-S` was used\n\n- fixed extra space in string unpacking (#305)\n\n- fixed formatting of empty triple quoted strings (#313)\n\n- fixed unnecessary slowdown in comment placement calculation on lines without comments\n\n## 18.6b1\n\n- hotfix: don't output human-facing information on stdout (#299)\n\n- hotfix: don't output cake emoji on non-zero return code (#300)\n\n## 18.6b0\n\n- added `--include` and `--exclude` (#270)\n\n- added `--skip-string-normalization` (#118)\n\n- added `--verbose` (#283)\n\n- the header output in `--diff` now actually conforms to the unified diff spec\n\n- fixed long trivial assignments being wrapped in unnecessary parentheses (#273)\n\n- fixed unnecessary parentheses when a line contained multiline strings (#232)\n\n- fixed stdin handling not working correctly if an old version of Click was used (#276)\n\n- _Black_ now preserves line endings when formatting a file in place (#258)\n\n## 18.5b1\n\n- added `--pyi` (#249)\n\n- added `--py36` (#249)\n\n- Python grammar pickle caches are stored with the formatting caches, making _Black_\n work in environments where site-packages is not user-writable (#192)\n\n- _Black_ now enforces a PEP 257 empty line after a class-level docstring (and/or\n fields) and the first method\n\n- fixed invalid code produced when standalone comments were present in a trailer that\n was omitted from line splitting on a large expression (#237)\n\n- fixed optional parentheses being removed within `# fmt: off` sections (#224)\n\n- fixed invalid code produced when stars in very long imports were incorrectly wrapped\n in optional parentheses (#234)\n\n- fixed unstable formatting when inline comments were moved around in a trailer that was\n omitted from line splitting on a large expression (#238)\n\n- fixed extra empty line between a class declaration and the first method if no class\n docstring or fields are present (#219)\n\n- fixed extra empty line between a function signature and an inner function or inner\n class (#196)\n\n## 18.5b0\n\n- call chains are now formatted according to the\n [fluent interfaces](https://en.wikipedia.org/wiki/Fluent_interface) style (#67)\n\n- data structure literals (tuples, lists, dictionaries, and sets) are now also always\n exploded like imports when they don't fit in a single line (#152)\n\n- slices are now formatted according to PEP 8 (#178)\n\n- parentheses are now also managed automatically on the right-hand side of assignments\n and return statements (#140)\n\n- math operators now use their respective priorities for delimiting multiline\n expressions (#148)\n\n- optional parentheses are now omitted on expressions that start or end with a bracket\n and only contain a single operator (#177)\n\n- empty parentheses in a class definition are now removed (#145, #180)\n\n- string prefixes are now standardized to lowercase and `u` is removed on Python 3.6+\n only code and Python 2.7+ code with the `unicode_literals` future import (#188, #198,\n #199)\n\n- typing stub files (`.pyi`) are now formatted in a style that is consistent with PEP\n 484 (#207, #210)\n\n- progress when reformatting many files is now reported incrementally\n\n- fixed trailers (content with brackets) being unnecessarily exploded into their own\n lines after a dedented closing bracket (#119)\n\n- fixed an invalid trailing comma sometimes left in imports (#185)\n\n- fixed non-deterministic formatting when multiple pairs of removable parentheses were\n used (#183)\n\n- fixed multiline strings being unnecessarily wrapped in optional parentheses in long\n assignments (#215)\n\n- fixed not splitting long from-imports with only a single name\n\n- fixed Python 3.6+ file discovery by also looking at function calls with unpacking.\n This fixed non-deterministic formatting if trailing commas where used both in function\n signatures with stars and function calls with stars but the former would be\n reformatted to a single line.\n\n- fixed crash on dealing with optional parentheses (#193)\n\n- fixed \"is\", \"is not\", \"in\", and \"not in\" not considered operators for splitting\n purposes\n\n- fixed crash when dead symlinks where encountered\n\n## 18.4a4\n\n- don't populate the cache on `--check` (#175)\n\n## 18.4a3\n\n- added a \"cache\"; files already reformatted that haven't changed on disk won't be\n reformatted again (#109)\n\n- `--check` and `--diff` are no longer mutually exclusive (#149)\n\n- generalized star expression handling, including double stars; this fixes\n multiplication making expressions \"unsafe\" for trailing commas (#132)\n\n- _Black_ no longer enforces putting empty lines behind control flow statements (#90)\n\n- _Black_ now splits imports like \"Mode 3 + trailing comma\" of isort (#127)\n\n- fixed comment indentation when a standalone comment closes a block (#16, #32)\n\n- fixed standalone comments receiving extra empty lines if immediately preceding a\n class, def, or decorator (#56, #154)\n\n- fixed `--diff` not showing entire path (#130)\n\n- fixed parsing of complex expressions after star and double stars in function calls\n (#2)\n\n- fixed invalid splitting on comma in lambda arguments (#133)\n\n- fixed missing splits of ternary expressions (#141)\n\n## 18.4a2\n\n- fixed parsing of unaligned standalone comments (#99, #112)\n\n- fixed placement of dictionary unpacking inside dictionary literals (#111)\n\n- Vim plugin now works on Windows, too\n\n- fixed unstable formatting when encountering unnecessarily escaped quotes in a string\n (#120)\n\n## 18.4a1\n\n- added `--quiet` (#78)\n\n- added automatic parentheses management (#4)\n\n- added [pre-commit](https://pre-commit.com) integration (#103, #104)\n\n- fixed reporting on `--check` with multiple files (#101, #102)\n\n- fixed removing backslash escapes from raw strings (#100, #105)\n\n## 18.4a0\n\n- added `--diff` (#87)\n\n- add line breaks before all delimiters, except in cases like commas, to better comply\n with PEP 8 (#73)\n\n- standardize string literals to use double quotes (almost) everywhere (#75)\n\n- fixed handling of standalone comments within nested bracketed expressions; _Black_\n will no longer produce super long lines or put all standalone comments at the end of\n the expression (#22)\n\n- fixed 18.3a4 regression: don't crash and burn on empty lines with trailing whitespace\n (#80)\n\n- fixed 18.3a4 regression: `# yapf: disable` usage as trailing comment would cause\n _Black_ to not emit the rest of the file (#95)\n\n- when CTRL+C is pressed while formatting many files, _Black_ no longer freaks out with\n a flurry of asyncio-related exceptions\n\n- only allow up to two empty lines on module level and only single empty lines within\n functions (#74)\n\n## 18.3a4\n\n- `# fmt: off` and `# fmt: on` are implemented (#5)\n\n- automatic detection of deprecated Python 2 forms of print statements and exec\n statements in the formatted file (#49)\n\n- use proper spaces for complex expressions in default values of typed function\n arguments (#60)\n\n- only return exit code 1 when --check is used (#50)\n\n- don't remove single trailing commas from square bracket indexing (#59)\n\n- don't omit whitespace if the previous factor leaf wasn't a math operator (#55)\n\n- omit extra space in kwarg unpacking if it's the first argument (#46)\n\n- omit extra space in\n [Sphinx auto-attribute comments](http://www.sphinx-doc.org/en/stable/ext/autodoc.html#directive-autoattribute)\n (#68)\n\n## 18.3a3\n\n- don't remove single empty lines outside of bracketed expressions (#19)\n\n- added ability to pipe formatting from stdin to stdin (#25)\n\n- restored ability to format code with legacy usage of `async` as a name (#20, #42)\n\n- even better handling of numpy-style array indexing (#33, again)\n\n## 18.3a2\n\n- changed positioning of binary operators to occur at beginning of lines instead of at\n the end, following\n [a recent change to PEP 8](https://github.com/python/peps/commit/c59c4376ad233a62ca4b3a6060c81368bd21e85b)\n (#21)\n\n- ignore empty bracket pairs while splitting. This avoids very weirdly looking\n formattings (#34, #35)\n\n- remove a trailing comma if there is a single argument to a call\n\n- if top level functions were separated by a comment, don't put four empty lines after\n the upper function\n\n- fixed unstable formatting of newlines with imports\n\n- fixed unintentional folding of post scriptum standalone comments into last statement\n if it was a simple statement (#18, #28)\n\n- fixed missing space in numpy-style array indexing (#33)\n\n- fixed spurious space after star-based unary expressions (#31)\n\n## 18.3a1\n\n- added `--check`\n\n- only put trailing commas in function signatures and calls if it's safe to do so. If\n the file is Python 3.6+ it's always safe, otherwise only safe if there are no `*args`\n or `**kwargs` used in the signature or call. (#8)\n\n- fixed invalid spacing of dots in relative imports (#6, #13)\n\n- fixed invalid splitting after comma on unpacked variables in for-loops (#23)\n\n- fixed spurious space in parenthesized set expressions (#7)\n\n- fixed spurious space after opening parentheses and in default arguments (#14, #17)\n\n- fixed spurious space after unary operators when the operand was a complex expression\n (#15)\n\n## 18.3a0\n\n- first published version, Happy \ud83c\udf70 Day 2018!\n\n- alpha quality\n\n- date-versioned (see: )\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": null, "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "dynamic": null, "home_page": null, "keywords": "automation, autopep8, formatter, gofmt, pyfmt, rustfmt, yapf", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "black", "package_url": "https://pypi.org/project/black/", "platform": null, "project_url": "https://pypi.org/project/black/", "project_urls": { "Changelog": "https://github.com/psf/black/blob/main/CHANGES.md", "Documentation": "https://black.readthedocs.io/", "Issues": "https://github.com/psf/black/issues", "Repository": "https://github.com/psf/black" }, "provides_extra": [ "colorama", "d", "jupyter", "uvloop" ], "release_url": "https://pypi.org/project/black/24.8.0/", "requires_dist": [ "click>=8.0.0", "mypy-extensions>=0.4.3", "packaging>=22.0", "pathspec>=0.9.0", "platformdirs>=2", "tomli>=1.1.0; python_version < \"3.11\"", "typing-extensions>=4.0.1; python_version < \"3.11\"", "colorama>=0.4.3; extra == \"colorama\"", "aiohttp!=3.9.0,>=3.7.4; (sys_platform == \"win32\" and implementation_name == \"pypy\") and extra == \"d\"", "aiohttp>=3.7.4; (sys_platform != \"win32\" or implementation_name != \"pypy\") and extra == \"d\"", "ipython>=7.8.0; extra == \"jupyter\"", "tokenize-rt>=3.2.0; extra == \"jupyter\"", "uvloop>=0.15.2; extra == \"uvloop\"" ], "requires_python": ">=3.8", "summary": "The uncompromising code formatter.", "version": "24.8.0", "yanked": false, "yanked_reason": null }, "last_serial": 24403890, "releases": { "18.3a0": [ { "comment_text": "", "digests": { "blake2b_256": "225aebe5881cbf07435ea1ad76119ee142f42fb7a333d562c202db015b959ae7", "md5": "7bf286e5faebfd76af1eeb50b2a4c007", "sha256": "7183263650ba3071034e90b40a1ea74abccbd32cf525cef6d7914479dbe7f2fb" }, "downloads": -1, "filename": "black-18.3a0-py3-none-any.whl", "has_sig": false, "md5_digest": "7bf286e5faebfd76af1eeb50b2a4c007", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 56103, "upload_time": "2018-03-14T21:30:34", "upload_time_iso_8601": "2018-03-14T21:30:34.781336Z", "url": "https://files.pythonhosted.org/packages/22/5a/ebe5881cbf07435ea1ad76119ee142f42fb7a333d562c202db015b959ae7/black-18.3a0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "83a2fae3ddb516a52a0f37e6e2ef3bd789b6d093d2c7015a41a41bff30f39897", "md5": "cfdf55cf7969d2cd18ae90fcf0d2356b", "sha256": "0461c7a52b5beb378936bf642753dec7a45305c96c6129d540b9c53227121a5a" }, "downloads": -1, "filename": "black-18.3a0.tar.gz", "has_sig": false, "md5_digest": "cfdf55cf7969d2cd18ae90fcf0d2356b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 57333, "upload_time": "2018-03-14T21:30:36", "upload_time_iso_8601": "2018-03-14T21:30:36.408183Z", "url": "https://files.pythonhosted.org/packages/83/a2/fae3ddb516a52a0f37e6e2ef3bd789b6d093d2c7015a41a41bff30f39897/black-18.3a0.tar.gz", "yanked": false, "yanked_reason": null } ], "18.3a1": [ { "comment_text": "", "digests": { "blake2b_256": "61b43a39dcf59342f53680c59a5e44c0b172ea5d6470a5aaba8ae3cdbfccc1e7", "md5": "c706fc2879b3f7dc8008f92134144996", "sha256": "04edc87b51b34a7aa093f39bf207e2ebc3612b26f2c79fdf8ff13b2d60622c9a" }, "downloads": -1, "filename": "black-18.3a1-py3-none-any.whl", "has_sig": false, "md5_digest": "c706fc2879b3f7dc8008f92134144996", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 57773, "upload_time": "2018-03-16T02:57:41", "upload_time_iso_8601": "2018-03-16T02:57:41.691270Z", "url": "https://files.pythonhosted.org/packages/61/b4/3a39dcf59342f53680c59a5e44c0b172ea5d6470a5aaba8ae3cdbfccc1e7/black-18.3a1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1b4dff18ef3018083196b85c843387dfa6a1faf376e8f662f74634bad84092d5", "md5": "c1ac46cd7a5cb7096d5dee97e7781c93", "sha256": "c9662827051587b732ecb4994a268f218eda896137b3ea6b8af8510682438b79" }, "downloads": -1, "filename": "black-18.3a1.tar.gz", "has_sig": false, "md5_digest": "c1ac46cd7a5cb7096d5dee97e7781c93", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 59772, "upload_time": "2018-03-16T02:57:43", "upload_time_iso_8601": "2018-03-16T02:57:43.940409Z", "url": "https://files.pythonhosted.org/packages/1b/4d/ff18ef3018083196b85c843387dfa6a1faf376e8f662f74634bad84092d5/black-18.3a1.tar.gz", "yanked": false, "yanked_reason": null } ], "18.3a2": [ { "comment_text": "", "digests": { "blake2b_256": "8312450fb640290d1499ae3922f95190b66b36918656c68376517a8477c6c4c9", "md5": "c7d1a628e0eff9dc3fcb1224c470d887", "sha256": "e18daeede445c8d78da14734fa87015ba94ab3d2320792fdf31d95ff5a8eb8eb" }, "downloads": -1, "filename": "black-18.3a2-py36-none-any.whl", "has_sig": false, "md5_digest": "c7d1a628e0eff9dc3fcb1224c470d887", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 58579, "upload_time": "2018-03-17T08:27:02", "upload_time_iso_8601": "2018-03-17T08:27:02.001356Z", "url": "https://files.pythonhosted.org/packages/83/12/450fb640290d1499ae3922f95190b66b36918656c68376517a8477c6c4c9/black-18.3a2-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f72b359a321cb63d3b4a9aecc0d0fb87dd20023ed1a6bd1a9ab44fb1db91580a", "md5": "1c73162ae40f9b193b4c557df336c87b", "sha256": "2343980b35f425bfb33eebc6bddc4af57ef271c503d30de89f7812c3429a2bc6" }, "downloads": -1, "filename": "black-18.3a2.tar.gz", "has_sig": false, "md5_digest": "1c73162ae40f9b193b4c557df336c87b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 61081, "upload_time": "2018-03-17T08:27:03", "upload_time_iso_8601": "2018-03-17T08:27:03.981023Z", "url": "https://files.pythonhosted.org/packages/f7/2b/359a321cb63d3b4a9aecc0d0fb87dd20023ed1a6bd1a9ab44fb1db91580a/black-18.3a2.tar.gz", "yanked": false, "yanked_reason": null } ], "18.3a3": [ { "comment_text": "", "digests": { "blake2b_256": "3aae3e4c6b429af58b100d3cbdd1b7c0ba0d3d8b74781761961b4ede32390810", "md5": "cc4c2a1e486497709bfca988a709099b", "sha256": "4d21d41c23b8bf4b063ca57353414cba77f554d3360a7d538954c1de5b8df664" }, "downloads": -1, "filename": "black-18.3a3-py36-none-any.whl", "has_sig": false, "md5_digest": "cc4c2a1e486497709bfca988a709099b", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 59818, "upload_time": "2018-03-21T02:07:15", "upload_time_iso_8601": "2018-03-21T02:07:15.910318Z", "url": "https://files.pythonhosted.org/packages/3a/ae/3e4c6b429af58b100d3cbdd1b7c0ba0d3d8b74781761961b4ede32390810/black-18.3a3-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0f69f60a77390ae2182e8370fe669632812915599163853e55d04dec3ebed605", "md5": "04d3abf0cae51b904e2e73adbd8bc995", "sha256": "ee8f84ff1e06b5c262e3bad000eaa2a12b0071a4b2f269502114aeaefbdfb198" }, "downloads": -1, "filename": "black-18.3a3.tar.gz", "has_sig": false, "md5_digest": "04d3abf0cae51b904e2e73adbd8bc995", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 63316, "upload_time": "2018-03-21T02:06:27", "upload_time_iso_8601": "2018-03-21T02:06:27.045522Z", "url": "https://files.pythonhosted.org/packages/0f/69/f60a77390ae2182e8370fe669632812915599163853e55d04dec3ebed605/black-18.3a3.tar.gz", "yanked": false, "yanked_reason": null } ], "18.3a4": [ { "comment_text": "", "digests": { "blake2b_256": "5ec7a1acc4f8f6baecacefabcf79e2165255f5605c7e33108aa58f16f4e55760", "md5": "14fbfc046e1e4456dcd535f5e753bf91", "sha256": "40c7d13615f9f183b5bab52afa4b3fa9eac62549149ba698185a5365db8efffc" }, "downloads": -1, "filename": "black-18.3a4-py36-none-any.whl", "has_sig": false, "md5_digest": "14fbfc046e1e4456dcd535f5e753bf91", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 62431, "upload_time": "2018-03-26T07:58:00", "upload_time_iso_8601": "2018-03-26T07:58:00.037527Z", "url": "https://files.pythonhosted.org/packages/5e/c7/a1acc4f8f6baecacefabcf79e2165255f5605c7e33108aa58f16f4e55760/black-18.3a4-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f1c2a336bc9bf176d30d9824e587fbe6f921ee51d7ab5f67f28ad7c2ee52fc8c", "md5": "9bcd445e512ed976d71c0ad1d7f0f6b5", "sha256": "814a1f5c9cf8dd8d325a224aa989be622fbaec9325ba13d884d9cf5485b47056" }, "downloads": -1, "filename": "black-18.3a4.tar.gz", "has_sig": false, "md5_digest": "9bcd445e512ed976d71c0ad1d7f0f6b5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 68547, "upload_time": "2018-03-26T07:57:48", "upload_time_iso_8601": "2018-03-26T07:57:48.274035Z", "url": "https://files.pythonhosted.org/packages/f1/c2/a336bc9bf176d30d9824e587fbe6f921ee51d7ab5f67f28ad7c2ee52fc8c/black-18.3a4.tar.gz", "yanked": false, "yanked_reason": null } ], "18.4a0": [ { "comment_text": "", "digests": { "blake2b_256": "b03d28412b6baff122e70a1e9e8c9fdf4f50b1a17b010006a0844c49a182ce1d", "md5": "99e1bcbc46f038a7ac92c3318fbe9594", "sha256": "3d0b42275fc6362f60eeaecf9168a503085490be4fd780dffa48035271dc8908" }, "downloads": -1, "filename": "black-18.4a0-py36-none-any.whl", "has_sig": false, "md5_digest": "99e1bcbc46f038a7ac92c3318fbe9594", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 70983, "upload_time": "2018-04-01T07:30:27", "upload_time_iso_8601": "2018-04-01T07:30:27.151166Z", "url": "https://files.pythonhosted.org/packages/b0/3d/28412b6baff122e70a1e9e8c9fdf4f50b1a17b010006a0844c49a182ce1d/black-18.4a0-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "26fcfe16644348a849e4171d311dd4a9a6f0f4e1ff62d5525091e0965b547d8b", "md5": "8e373d90117263d0e28fb5c05e7f63d1", "sha256": "390b3b3ec035dc2ca5e9df6303e6049d800d07b89d01d985db44ffca4976ae11" }, "downloads": -1, "filename": "black-18.4a0.tar.gz", "has_sig": false, "md5_digest": "8e373d90117263d0e28fb5c05e7f63d1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 83732, "upload_time": "2018-04-01T07:30:03", "upload_time_iso_8601": "2018-04-01T07:30:03.158430Z", "url": "https://files.pythonhosted.org/packages/26/fc/fe16644348a849e4171d311dd4a9a6f0f4e1ff62d5525091e0965b547d8b/black-18.4a0.tar.gz", "yanked": false, "yanked_reason": null } ], "18.4a1": [ { "comment_text": "", "digests": { "blake2b_256": "9e0f933f8016959805328371a25899ea124590345969aac8c4822306c7452ec8", "md5": "646670374b255a5d33f8e0eeec4d14ef", "sha256": "375582bcb6b8345d10475a9298b1357e8002996c3b31df4eba42f5b541e60f96" }, "downloads": -1, "filename": "black-18.4a1-py36-none-any.whl", "has_sig": false, "md5_digest": "646670374b255a5d33f8e0eeec4d14ef", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 64268, "upload_time": "2018-04-12T02:26:05", "upload_time_iso_8601": "2018-04-12T02:26:05.494666Z", "url": "https://files.pythonhosted.org/packages/9e/0f/933f8016959805328371a25899ea124590345969aac8c4822306c7452ec8/black-18.4a1-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6b2a908a33ca35eb6fb5d8a57351fba24727ba3ed30191035557f57fa6d9cb83", "md5": "4eae628bf0591cc5fdbddec4be3c8fe1", "sha256": "e9823469b247ed5e186c21f7e94c02aafd8d0905729a5b3748b555bcc2637e5b" }, "downloads": -1, "filename": "black-18.4a1.tar.gz", "has_sig": false, "md5_digest": "4eae628bf0591cc5fdbddec4be3c8fe1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 90949, "upload_time": "2018-04-12T02:25:57", "upload_time_iso_8601": "2018-04-12T02:25:57.796929Z", "url": "https://files.pythonhosted.org/packages/6b/2a/908a33ca35eb6fb5d8a57351fba24727ba3ed30191035557f57fa6d9cb83/black-18.4a1.tar.gz", "yanked": false, "yanked_reason": null } ], "18.4a2": [ { "comment_text": "", "digests": { "blake2b_256": "e1e6dee648e0b1c7997eafa14e51911eeacbed026b2611605bd34d0f824ab6d7", "md5": "10efef2c15b28550c454f1f3c41322b5", "sha256": "d5cb273f9fc36ff89f07b84efe50a73d9177158162917198ed4263cd1c40d585" }, "downloads": -1, "filename": "black-18.4a2-py36-none-any.whl", "has_sig": false, "md5_digest": "10efef2c15b28550c454f1f3c41322b5", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 64649, "upload_time": "2018-04-13T19:10:00", "upload_time_iso_8601": "2018-04-13T19:10:00.578664Z", "url": "https://files.pythonhosted.org/packages/e1/e6/dee648e0b1c7997eafa14e51911eeacbed026b2611605bd34d0f824ab6d7/black-18.4a2-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e53da2204bc1f2feaf5db0105db0f7956a591552ca9ee36f91dff37b08962866", "md5": "f3d00581f03389e0a5daadbd9a56019e", "sha256": "cecee6dc0250661cf86dced28adddf3b65bb669636638745e488e7c1d718e8be" }, "downloads": -1, "filename": "black-18.4a2.tar.gz", "has_sig": false, "md5_digest": "f3d00581f03389e0a5daadbd9a56019e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 92634, "upload_time": "2018-04-13T19:09:51", "upload_time_iso_8601": "2018-04-13T19:09:51.602215Z", "url": "https://files.pythonhosted.org/packages/e5/3d/a2204bc1f2feaf5db0105db0f7956a591552ca9ee36f91dff37b08962866/black-18.4a2.tar.gz", "yanked": false, "yanked_reason": null } ], "18.4a3": [ { "comment_text": "", "digests": { "blake2b_256": "5e6258d43ed2e23d853461498132945b510601f0f2e4c3b0a4835bf3ba9b94d7", "md5": "6118aa8c0a5bd98126e9c16d322ed696", "sha256": "af80d5990a4af4bd8885847fef659d59c248d694ed7d2aa076ecaeabc6320006" }, "downloads": -1, "filename": "black-18.4a3-py36-none-any.whl", "has_sig": false, "md5_digest": "6118aa8c0a5bd98126e9c16d322ed696", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 67283, "upload_time": "2018-04-24T20:53:52", "upload_time_iso_8601": "2018-04-24T20:53:52.587556Z", "url": "https://files.pythonhosted.org/packages/5e/62/58d43ed2e23d853461498132945b510601f0f2e4c3b0a4835bf3ba9b94d7/black-18.4a3-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d1b09233ecee3573cc6e9c1fc257af3c90e4d80818f141ee16d7da4a397120f7", "md5": "b059753cda1c0553a2c6382ad8eee997", "sha256": "b45061e041762296b0cbf8f476a3036109571e73ce6f3e2d10e1ccc4d0827d59" }, "downloads": -1, "filename": "black-18.4a3.tar.gz", "has_sig": false, "md5_digest": "b059753cda1c0553a2c6382ad8eee997", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 102216, "upload_time": "2018-04-24T20:53:38", "upload_time_iso_8601": "2018-04-24T20:53:38.729541Z", "url": "https://files.pythonhosted.org/packages/d1/b0/9233ecee3573cc6e9c1fc257af3c90e4d80818f141ee16d7da4a397120f7/black-18.4a3.tar.gz", "yanked": false, "yanked_reason": null } ], "18.4a4": [ { "comment_text": "", "digests": { "blake2b_256": "dbc8c587383e6b57a07b9937ac29ff93f845aa3d344aa9242f0eba13163eaa2b", "md5": "a31297608199848c8bb4c439e3b4e61d", "sha256": "dfb0e344587510ef662785f4a8991addb4017840459bb6d1d53d344ab0f10300" }, "downloads": -1, "filename": "black-18.4a4-py36-none-any.whl", "has_sig": false, "md5_digest": "a31297608199848c8bb4c439e3b4e61d", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 67298, "upload_time": "2018-04-27T21:22:49", "upload_time_iso_8601": "2018-04-27T21:22:49.210866Z", "url": "https://files.pythonhosted.org/packages/db/c8/c587383e6b57a07b9937ac29ff93f845aa3d344aa9242f0eba13163eaa2b/black-18.4a4-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "65c13d5ad1f94bbc4b233dba82d2934f5a3b15a33ddaf08165cd0c27d8cfe34b", "md5": "6852730b3e986455134a53083f1fcdbe", "sha256": "58594128efb5d21f359c8680911241985e627eb3505397f3982ffbae914d8202" }, "downloads": -1, "filename": "black-18.4a4.tar.gz", "has_sig": false, "md5_digest": "6852730b3e986455134a53083f1fcdbe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 102353, "upload_time": "2018-04-27T21:22:42", "upload_time_iso_8601": "2018-04-27T21:22:42.955200Z", "url": "https://files.pythonhosted.org/packages/65/c1/3d5ad1f94bbc4b233dba82d2934f5a3b15a33ddaf08165cd0c27d8cfe34b/black-18.4a4.tar.gz", "yanked": false, "yanked_reason": null } ], "18.5b0": [ { "comment_text": "", "digests": { "blake2b_256": "c63d0a966ead09d4f81f5887e5126c2da22d6a0efed89de4b4e9dc98ed727efc", "md5": "7e4f165ddc134982f34ad5ff8eb9d914", "sha256": "5fec0f25486046b9edb97961c946412ced96021247dd1a60ecd9f0567b68b030" }, "downloads": -1, "filename": "black-18.5b0-py36-none-any.whl", "has_sig": false, "md5_digest": "7e4f165ddc134982f34ad5ff8eb9d914", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 87877, "upload_time": "2018-05-18T06:20:54", "upload_time_iso_8601": "2018-05-18T06:20:54.531455Z", "url": "https://files.pythonhosted.org/packages/c6/3d/0a966ead09d4f81f5887e5126c2da22d6a0efed89de4b4e9dc98ed727efc/black-18.5b0-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "503d887dcd61f361167438af8002cde23376c79439954bd37cbb732be8cf2ab3", "md5": "d29cd74ef8b86834e0eff6215cbea0d7", "sha256": "4fec2566f9fbbd4a58de50a168cbe3ab952713530410d227e82e4c65d1fad946" }, "downloads": -1, "filename": "black-18.5b0.tar.gz", "has_sig": false, "md5_digest": "d29cd74ef8b86834e0eff6215cbea0d7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 118413, "upload_time": "2018-05-18T06:20:44", "upload_time_iso_8601": "2018-05-18T06:20:44.900856Z", "url": "https://files.pythonhosted.org/packages/50/3d/887dcd61f361167438af8002cde23376c79439954bd37cbb732be8cf2ab3/black-18.5b0.tar.gz", "yanked": false, "yanked_reason": null } ], "18.5b1": [ { "comment_text": "", "digests": { "blake2b_256": "27f8736d91bc142221f0505008059f2eb621e4a753a1236183dc96c0d81b52da", "md5": "d3175bf10394b63caf0af25a691e31c4", "sha256": "fa8d4b58aeb454443d4ef02c9daa615cd9a241f0cbe5f2b38b5965209d26dd1c" }, "downloads": -1, "filename": "black-18.5b1-py36-none-any.whl", "has_sig": false, "md5_digest": "d3175bf10394b63caf0af25a691e31c4", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 75745, "upload_time": "2018-05-29T09:36:46", "upload_time_iso_8601": "2018-05-29T09:36:46.276144Z", "url": "https://files.pythonhosted.org/packages/27/f8/736d91bc142221f0505008059f2eb621e4a753a1236183dc96c0d81b52da/black-18.5b1-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e50b2b5abd975559a5e4cb5cf9697ca242878b4894dc731dd133e582ce459869", "md5": "475f6284366981fe556c046809844317", "sha256": "c956857a831e508e75f0dc754b86982bad98d95c96aae39c20749209b3958ad7" }, "downloads": -1, "filename": "black-18.5b1.tar.gz", "has_sig": false, "md5_digest": "475f6284366981fe556c046809844317", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 128023, "upload_time": "2018-05-29T09:12:11", "upload_time_iso_8601": "2018-05-29T09:12:11.292158Z", "url": "https://files.pythonhosted.org/packages/e5/0b/2b5abd975559a5e4cb5cf9697ca242878b4894dc731dd133e582ce459869/black-18.5b1.tar.gz", "yanked": false, "yanked_reason": null } ], "18.6b0": [ { "comment_text": "", "digests": { "blake2b_256": "fe48d20ab5b038ac70d834b512db343c8fd4d172b35cd541e9544ea3501e3fa6", "md5": "44a90ffded86d6c41c658ab404d86094", "sha256": "8a1220b97ee524e32dcab0e5703e82af96f73b91df86ca0d634fbc4cddde9b25" }, "downloads": -1, "filename": "black-18.6b0-py36-none-any.whl", "has_sig": false, "md5_digest": "44a90ffded86d6c41c658ab404d86094", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 78309, "upload_time": "2018-06-05T04:33:54", "upload_time_iso_8601": "2018-06-05T04:33:54.405907Z", "url": "https://files.pythonhosted.org/packages/fe/48/d20ab5b038ac70d834b512db343c8fd4d172b35cd541e9544ea3501e3fa6/black-18.6b0-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "21c3b37ce7f074c6d10ff1fad31edce423502bf50830e74b7a93a2c0ace0d1a2", "md5": "b5c132fea4b1f38f0ce5a026ab7f42a8", "sha256": "0e4a4e8b2cae2797b90e300b3e8fa2011557e2f697367ea8a85164b60a37a812" }, "downloads": -1, "filename": "black-18.6b0.tar.gz", "has_sig": false, "md5_digest": "b5c132fea4b1f38f0ce5a026ab7f42a8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 133421, "upload_time": "2018-06-05T04:33:13", "upload_time_iso_8601": "2018-06-05T04:33:13.509423Z", "url": "https://files.pythonhosted.org/packages/21/c3/b37ce7f074c6d10ff1fad31edce423502bf50830e74b7a93a2c0ace0d1a2/black-18.6b0.tar.gz", "yanked": false, "yanked_reason": null } ], "18.6b1": [ { "comment_text": "", "digests": { "blake2b_256": "0e8ab902cfa966631ee02ecf76ca4466aee800766100a7dd7b2966cf143aa93f", "md5": "e1a3fa305069cce3488a2e12dba23222", "sha256": "80dbe2103e937de543942b7946fe71adc387506fe1922018e2b97555513a35fc" }, "downloads": -1, "filename": "black-18.6b1-py36-none-any.whl", "has_sig": false, "md5_digest": "e1a3fa305069cce3488a2e12dba23222", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 78400, "upload_time": "2018-06-05T16:53:19", "upload_time_iso_8601": "2018-06-05T16:53:19.256994Z", "url": "https://files.pythonhosted.org/packages/0e/8a/b902cfa966631ee02ecf76ca4466aee800766100a7dd7b2966cf143aa93f/black-18.6b1-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7064c8257484b57ed564e82170ceced2f8ea8fe57356a0801ffec5d162d19367", "md5": "a3feb803e3752f3531f6c48349238556", "sha256": "0c07b68fc6fc4df8b09873e81893d7b77d52794fa3431d8843b590bc33956105" }, "downloads": -1, "filename": "black-18.6b1.tar.gz", "has_sig": false, "md5_digest": "a3feb803e3752f3531f6c48349238556", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 133538, "upload_time": "2018-06-05T16:53:04", "upload_time_iso_8601": "2018-06-05T16:53:04.986423Z", "url": "https://files.pythonhosted.org/packages/70/64/c8257484b57ed564e82170ceced2f8ea8fe57356a0801ffec5d162d19367/black-18.6b1.tar.gz", "yanked": false, "yanked_reason": null } ], "18.6b2": [ { "comment_text": "", "digests": { "blake2b_256": "f5250badb111a8dd98216f55d60c0981d7c64d66e26fde67cc01944da285cb0b", "md5": "12ffb86ccfa1a73a2df4e0351d640dc9", "sha256": "3efe92eafbde15f8ac06478de11cfb84e47504896ccdde64507e751d2f91ec3a" }, "downloads": -1, "filename": "black-18.6b2-py36-none-any.whl", "has_sig": false, "md5_digest": "12ffb86ccfa1a73a2df4e0351d640dc9", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 80086, "upload_time": "2018-06-08T19:10:03", "upload_time_iso_8601": "2018-06-08T19:10:03.730591Z", "url": "https://files.pythonhosted.org/packages/f5/25/0badb111a8dd98216f55d60c0981d7c64d66e26fde67cc01944da285cb0b/black-18.6b2-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2cf14e63113f2ee5bd47640c4884ccbed07277d738602ea6d61e0971f527e05a", "md5": "74be68d7315aa26faf01df8956e3cab2", "sha256": "fc26c4ab28c541fb824f59fa83d5702f75829495d5a1dee603b29bc4fbe79095" }, "downloads": -1, "filename": "black-18.6b2.tar.gz", "has_sig": false, "md5_digest": "74be68d7315aa26faf01df8956e3cab2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 199918, "upload_time": "2018-06-08T19:09:53", "upload_time_iso_8601": "2018-06-08T19:09:53.361802Z", "url": "https://files.pythonhosted.org/packages/2c/f1/4e63113f2ee5bd47640c4884ccbed07277d738602ea6d61e0971f527e05a/black-18.6b2.tar.gz", "yanked": false, "yanked_reason": null } ], "18.6b3": [ { "comment_text": "", "digests": { "blake2b_256": "c4537a5b0ac836f128a83d837c5e39ee6eb48657b17082f6fe6e21d5fa80871d", "md5": "5fa8aae971095cb60542999268124e9d", "sha256": "479cc8b3455a75b5b289276b5f47fd2bb412f2f369292989c12b891264758b5c" }, "downloads": -1, "filename": "black-18.6b3-py36-none-any.whl", "has_sig": false, "md5_digest": "5fa8aae971095cb60542999268124e9d", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 81374, "upload_time": "2018-06-20T19:02:25", "upload_time_iso_8601": "2018-06-20T19:02:25.147861Z", "url": "https://files.pythonhosted.org/packages/c4/53/7a5b0ac836f128a83d837c5e39ee6eb48657b17082f6fe6e21d5fa80871d/black-18.6b3-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "28dbfc2361255cea2010fd814edc44c50d118bfcdd031ae7c47ad15b01d3e38d", "md5": "b0f86a82f2ae46aaa2fcc0fd2d34d46b", "sha256": "fe3b7ac846f2a7c91d926782184826c57d2be283c57f0d6b37b85496eb5469ff" }, "downloads": -1, "filename": "black-18.6b3.tar.gz", "has_sig": false, "md5_digest": "b0f86a82f2ae46aaa2fcc0fd2d34d46b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 141442, "upload_time": "2018-06-20T19:02:15", "upload_time_iso_8601": "2018-06-20T19:02:15.169309Z", "url": "https://files.pythonhosted.org/packages/28/db/fc2361255cea2010fd814edc44c50d118bfcdd031ae7c47ad15b01d3e38d/black-18.6b3.tar.gz", "yanked": false, "yanked_reason": null } ], "18.6b4": [ { "comment_text": "", "digests": { "blake2b_256": "4eb5575cdaabf1f98ebe50c0ee85b202fcce3b8df1f21d6ed02708bc539674c3", "md5": "259861e038fdbb75e16bfddb26ed05cd", "sha256": "4b475bbd528acce094c503a3d2dbc2d05a4075f6d0ef7d9e7514518e14cc5191" }, "downloads": -1, "filename": "black-18.6b4-py36-none-any.whl", "has_sig": false, "md5_digest": "259861e038fdbb75e16bfddb26ed05cd", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 81402, "upload_time": "2018-06-21T21:26:15", "upload_time_iso_8601": "2018-06-21T21:26:15.370978Z", "url": "https://files.pythonhosted.org/packages/4e/b5/575cdaabf1f98ebe50c0ee85b202fcce3b8df1f21d6ed02708bc539674c3/black-18.6b4-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2d4364205493cfb4c8e1720208d73502a121ace2a195cd4d1d49bd7470e4fd92", "md5": "5dfed569de6ae16fa390a000baa5b85c", "sha256": "22158b89c1a6b4eb333a1e65e791a3f8b998cf3b11ae094adb2570f31f769a44" }, "downloads": -1, "filename": "black-18.6b4.tar.gz", "has_sig": false, "md5_digest": "5dfed569de6ae16fa390a000baa5b85c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 141556, "upload_time": "2018-06-21T21:26:27", "upload_time_iso_8601": "2018-06-21T21:26:27.823527Z", "url": "https://files.pythonhosted.org/packages/2d/43/64205493cfb4c8e1720208d73502a121ace2a195cd4d1d49bd7470e4fd92/black-18.6b4.tar.gz", "yanked": false, "yanked_reason": null } ], "18.9b0": [ { "comment_text": "", "digests": { "blake2b_256": "2a349938749f260a861cdd8427d63899e08f9a2a041159a26c2615b02828c973", "md5": "1d6ea7e671eb11e15816341dd017515e", "sha256": "817243426042db1d36617910df579a54f1afd659adb96fc5032fcf4b36209739" }, "downloads": -1, "filename": "black-18.9b0-py36-none-any.whl", "has_sig": false, "md5_digest": "1d6ea7e671eb11e15816341dd017515e", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 88104, "upload_time": "2018-09-26T20:08:48", "upload_time_iso_8601": "2018-09-26T20:08:48.259211Z", "url": "https://files.pythonhosted.org/packages/2a/34/9938749f260a861cdd8427d63899e08f9a2a041159a26c2615b02828c973/black-18.9b0-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e85f0f79fcd943ba465cbd4bf303c9794970c13a95e5456630de9f72e7f37ad4", "md5": "64016f69bccbe0edfc820a7f5a37eecc", "sha256": "e030a9a28f542debc08acceb273f228ac422798e5215ba2a791a6ddeaaca22a5" }, "downloads": -1, "filename": "black-18.9b0.tar.gz", "has_sig": false, "md5_digest": "64016f69bccbe0edfc820a7f5a37eecc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 151371, "upload_time": "2018-09-26T20:08:31", "upload_time_iso_8601": "2018-09-26T20:08:31.989011Z", "url": "https://files.pythonhosted.org/packages/e8/5f/0f79fcd943ba465cbd4bf303c9794970c13a95e5456630de9f72e7f37ad4/black-18.9b0.tar.gz", "yanked": false, "yanked_reason": null } ], "19.10b0": [ { "comment_text": "", "digests": { "blake2b_256": "fdbbad34bbc93d1bea3de086d7c59e528d4a503ac8fe318bd1fa48605584c3d2", "md5": "067efd0498107b5fb2299fbfb000b0b6", "sha256": "1b30e59be925fafc1ee4565e5e08abef6b03fe455102883820fe5ee2e4734e0b" }, "downloads": -1, "filename": "black-19.10b0-py36-none-any.whl", "has_sig": false, "md5_digest": "067efd0498107b5fb2299fbfb000b0b6", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 97525, "upload_time": "2019-10-28T23:53:54", "upload_time_iso_8601": "2019-10-28T23:53:54.000711Z", "url": "https://files.pythonhosted.org/packages/fd/bb/ad34bbc93d1bea3de086d7c59e528d4a503ac8fe318bd1fa48605584c3d2/black-19.10b0-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b0dcecd83b973fb7b82c34d828aad621a6e5865764d52375b8ac1d7a45e23c8d", "md5": "496632a95b73b8f5c5081d795a4e6af1", "sha256": "c2edb73a08e9e0e6f65a0e6af18b059b8b1cdd5bef997d7a0b181df93dc81539" }, "downloads": -1, "filename": "black-19.10b0.tar.gz", "has_sig": false, "md5_digest": "496632a95b73b8f5c5081d795a4e6af1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1019740, "upload_time": "2019-10-28T23:54:05", "upload_time_iso_8601": "2019-10-28T23:54:05.455213Z", "url": "https://files.pythonhosted.org/packages/b0/dc/ecd83b973fb7b82c34d828aad621a6e5865764d52375b8ac1d7a45e23c8d/black-19.10b0.tar.gz", "yanked": false, "yanked_reason": null } ], "19.3b0": [ { "comment_text": "", "digests": { "blake2b_256": "3062cf549544a5fe990bbaeca21e9c419501b2de7a701ab0afb377bc81676600", "md5": "7e31dc25379bc398aba8d651a84b4ba0", "sha256": "09a9dcb7c46ed496a9850b76e4e825d6049ecd38b611f1224857a79bd985a8cf" }, "downloads": -1, "filename": "black-19.3b0-py36-none-any.whl", "has_sig": false, "md5_digest": "7e31dc25379bc398aba8d651a84b4ba0", "packagetype": "bdist_wheel", "python_version": "py36", "requires_python": ">=3.6", "size": 89893, "upload_time": "2019-03-14T17:14:01", "upload_time_iso_8601": "2019-03-14T17:14:01.717825Z", "url": "https://files.pythonhosted.org/packages/30/62/cf549544a5fe990bbaeca21e9c419501b2de7a701ab0afb377bc81676600/black-19.3b0-py36-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8907aebb10fb8f2ffbac672dfbebffa724643bc84cf012a57737a622d1dabddb", "md5": "0a84ec80ca88408e83e0a904a674d677", "sha256": "68950ffd4d9169716bcb8719a56c07a2f4485354fec061cdd5910aa07369731c" }, "downloads": -1, "filename": "black-19.3b0.tar.gz", "has_sig": false, "md5_digest": "0a84ec80ca88408e83e0a904a674d677", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155556, "upload_time": "2019-03-14T17:14:05", "upload_time_iso_8601": "2019-03-14T17:14:05.670007Z", "url": "https://files.pythonhosted.org/packages/89/07/aebb10fb8f2ffbac672dfbebffa724643bc84cf012a57737a622d1dabddb/black-19.3b0.tar.gz", "yanked": false, "yanked_reason": null } ], "20.8b0": [ { "comment_text": "", "digests": { "blake2b_256": "7db472fb7e851376edf60822318f42143f2984b42f2d69270a115acb6d0ed1e1", "md5": "9e2bad9c22e2b11a07e0327fb9ac5a64", "sha256": "0fc6b2f00ccd34cc444d41f24967377c2bc6d0b53f333c56376405ff6cd6f789" }, "downloads": -1, "filename": "black-20.8b0.tar.gz", "has_sig": false, "md5_digest": "9e2bad9c22e2b11a07e0327fb9ac5a64", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1095802, "upload_time": "2020-08-26T14:28:19", "upload_time_iso_8601": "2020-08-26T14:28:19.202789Z", "url": "https://files.pythonhosted.org/packages/7d/b4/72fb7e851376edf60822318f42143f2984b42f2d69270a115acb6d0ed1e1/black-20.8b0.tar.gz", "yanked": false, "yanked_reason": null } ], "20.8b1": [ { "comment_text": "", "digests": { "blake2b_256": "dc7b5a6bbe89de849f28d7c109f5ea87b65afa5124ad615f3419e71beb29dc96", "md5": "d2ea4865c1336bf3d986eb2da322c8ad", "sha256": "1c02557aa099101b9d21496f8a914e9ed2222ef70336404eeeac8edba836fbea" }, "downloads": -1, "filename": "black-20.8b1.tar.gz", "has_sig": false, "md5_digest": "d2ea4865c1336bf3d986eb2da322c8ad", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1096433, "upload_time": "2020-08-26T15:52:20", "upload_time_iso_8601": "2020-08-26T15:52:20.948731Z", "url": "https://files.pythonhosted.org/packages/dc/7b/5a6bbe89de849f28d7c109f5ea87b65afa5124ad615f3419e71beb29dc96/black-20.8b1.tar.gz", "yanked": false, "yanked_reason": null } ], "21.10b0": [ { "comment_text": "", "digests": { "blake2b_256": "12df0e55791b9c6ca07b4a3404eef6cee1ca42503bf16e9fc9df0247b4803cf1", "md5": "3ba6895fdb96309b4c1d998386d31334", "sha256": "6eb7448da9143ee65b856a5f3676b7dda98ad9abe0f87fce8c59291f15e82a5b" }, "downloads": -1, "filename": "black-21.10b0-py3-none-any.whl", "has_sig": false, "md5_digest": "3ba6895fdb96309b4c1d998386d31334", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 150062, "upload_time": "2021-11-01T01:02:22", "upload_time_iso_8601": "2021-11-01T01:02:22.928111Z", "url": "https://files.pythonhosted.org/packages/12/df/0e55791b9c6ca07b4a3404eef6cee1ca42503bf16e9fc9df0247b4803cf1/black-21.10b0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "62b682269f88c3e7855f058706a5b326b827699a3c88c96b37d9abfb81e2c62b", "md5": "8222831ddae222de52f8f065ad8ebcc5", "sha256": "a9952229092e325fe5f3dae56d81f639b23f7131eb840781947e4b2886030f33" }, "downloads": -1, "filename": "black-21.10b0.tar.gz", "has_sig": false, "md5_digest": "8222831ddae222de52f8f065ad8ebcc5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 566321, "upload_time": "2021-11-01T01:02:24", "upload_time_iso_8601": "2021-11-01T01:02:24.465614Z", "url": "https://files.pythonhosted.org/packages/62/b6/82269f88c3e7855f058706a5b326b827699a3c88c96b37d9abfb81e2c62b/black-21.10b0.tar.gz", "yanked": false, "yanked_reason": null } ], "21.11b0": [ { "comment_text": "", "digests": { "blake2b_256": "3dad1cf514e7f9ee4c3d8df7c839d7977f7605ad76557f3fca741ec67f76dba6", "md5": "945da11b34c11738560fc6698cffa425", "sha256": "0b1f66cbfadcd332ceeaeecf6373d9991d451868d2e2219ad0ac1213fb701117" }, "downloads": -1, "filename": "black-21.11b0-py3-none-any.whl", "has_sig": false, "md5_digest": "945da11b34c11738560fc6698cffa425", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 155131, "upload_time": "2021-11-17T02:32:14", "upload_time_iso_8601": "2021-11-17T02:32:14.551680Z", "url": "https://files.pythonhosted.org/packages/3d/ad/1cf514e7f9ee4c3d8df7c839d7977f7605ad76557f3fca741ec67f76dba6/black-21.11b0-py3-none-any.whl", "yanked": true, "yanked_reason": "Broken regex dependency. Use 21.11b1 instead." }, { "comment_text": "", "digests": { "blake2b_256": "2fdb03e8cef689ab0ff857576ee2ee288d1ff2110ef7f3a77cac62e61f18acaf", "md5": "6040b4e4c6ccc4e7eb81bb2634ef299a", "sha256": "83f3852301c8dcb229e9c444dd79f573c8d31c7c2dad9bbaaa94c808630e32aa" }, "downloads": -1, "filename": "black-21.11b0.tar.gz", "has_sig": false, "md5_digest": "6040b4e4c6ccc4e7eb81bb2634ef299a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 593164, "upload_time": "2021-11-17T02:32:16", "upload_time_iso_8601": "2021-11-17T02:32:16.396821Z", "url": "https://files.pythonhosted.org/packages/2f/db/03e8cef689ab0ff857576ee2ee288d1ff2110ef7f3a77cac62e61f18acaf/black-21.11b0.tar.gz", "yanked": true, "yanked_reason": "Broken regex dependency. Use 21.11b1 instead." } ], "21.11b1": [ { "comment_text": "", "digests": { "blake2b_256": "c7240de05480822e5f0f2cc539fce9029bc2507b44b7f85ec1a9e23d89dea6c3", "md5": "820273a45533dd4ab92d77baa2af8eff", "sha256": "802c6c30b637b28645b7fde282ed2569c0cd777dbe493a41b6a03c1d903f99ac" }, "downloads": -1, "filename": "black-21.11b1-py3-none-any.whl", "has_sig": false, "md5_digest": "820273a45533dd4ab92d77baa2af8eff", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 155162, "upload_time": "2021-11-18T03:58:02", "upload_time_iso_8601": "2021-11-18T03:58:02.282075Z", "url": "https://files.pythonhosted.org/packages/c7/24/0de05480822e5f0f2cc539fce9029bc2507b44b7f85ec1a9e23d89dea6c3/black-21.11b1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "73df5a4c5af64a25212d494b31d7b62f8212424c0c8ffdac9462a7d15bc17b9f", "md5": "837cde784a0466fa5843720650aa5a51", "sha256": "a042adbb18b3262faad5aff4e834ff186bb893f95ba3a8013f09de1e5569def2" }, "downloads": -1, "filename": "black-21.11b1.tar.gz", "has_sig": false, "md5_digest": "837cde784a0466fa5843720650aa5a51", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 593556, "upload_time": "2021-11-18T03:58:03", "upload_time_iso_8601": "2021-11-18T03:58:03.595347Z", "url": "https://files.pythonhosted.org/packages/73/df/5a4c5af64a25212d494b31d7b62f8212424c0c8ffdac9462a7d15bc17b9f/black-21.11b1.tar.gz", "yanked": false, "yanked_reason": null } ], "21.12b0": [ { "comment_text": "", "digests": { "blake2b_256": "9b27b2f98b627738b02dcac06ae9e2ab13f14ab906fe6dd6366050c76883d4b5", "md5": "97aee24d6e12dc216d2c2a17b63a0f6d", "sha256": "a615e69ae185e08fdd73e4715e260e2479c861b5740057fde6e8b4e3b7dd589f" }, "downloads": -1, "filename": "black-21.12b0-py3-none-any.whl", "has_sig": false, "md5_digest": "97aee24d6e12dc216d2c2a17b63a0f6d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 156737, "upload_time": "2021-12-05T22:42:08", "upload_time_iso_8601": "2021-12-05T22:42:08.410746Z", "url": "https://files.pythonhosted.org/packages/9b/27/b2f98b627738b02dcac06ae9e2ab13f14ab906fe6dd6366050c76883d4b5/black-21.12b0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f7607a9775dc1b81a572eb26836c7e77c92bf454ada00693af4b2d2f2614971a", "md5": "a2461047c74884c6864df5e2d1a4bb6c", "sha256": "77b80f693a569e2e527958459634f18df9b0ba2625ba4e0c2d5da5be42e6f2b3" }, "downloads": -1, "filename": "black-21.12b0.tar.gz", "has_sig": false, "md5_digest": "a2461047c74884c6864df5e2d1a4bb6c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 594232, "upload_time": "2021-12-05T22:42:10", "upload_time_iso_8601": "2021-12-05T22:42:10.133383Z", "url": "https://files.pythonhosted.org/packages/f7/60/7a9775dc1b81a572eb26836c7e77c92bf454ada00693af4b2d2f2614971a/black-21.12b0.tar.gz", "yanked": false, "yanked_reason": null } ], "21.4b0": [ { "comment_text": "", "digests": { "blake2b_256": "8587f16eea1cab2c677a082a4a8b62d5b43c89ed30fbcee89bf1b5e7d651bf28", "md5": "0397eb14d4612268e96e538ef692d48a", "sha256": "2db7040bbbbaa46247bfcc05c6efdebd7ebe50c1c3ca745ca6e0f6776438c96c" }, "downloads": -1, "filename": "black-21.4b0-py3-none-any.whl", "has_sig": false, "md5_digest": "0397eb14d4612268e96e538ef692d48a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 129702, "upload_time": "2021-04-25T22:14:00", "upload_time_iso_8601": "2021-04-25T22:14:00.004453Z", "url": "https://files.pythonhosted.org/packages/85/87/f16eea1cab2c677a082a4a8b62d5b43c89ed30fbcee89bf1b5e7d651bf28/black-21.4b0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d546b60715462dc0d9dd78a565ffc52bfdd4c5ed6716bb9e336088cc904e6955", "md5": "d8b6ece58c7259986486988d368a5cbd", "sha256": "915d916c48646dbe8040d5265cff7111421a60a3dfe7f7e07273176a57c24a34" }, "downloads": -1, "filename": "black-21.4b0.tar.gz", "has_sig": false, "md5_digest": "d8b6ece58c7259986486988d368a5cbd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 1149604, "upload_time": "2021-04-25T22:14:01", "upload_time_iso_8601": "2021-04-25T22:14:01.412226Z", "url": "https://files.pythonhosted.org/packages/d5/46/b60715462dc0d9dd78a565ffc52bfdd4c5ed6716bb9e336088cc904e6955/black-21.4b0.tar.gz", "yanked": false, "yanked_reason": null } ], "21.4b1": [ { "comment_text": "", "digests": { "blake2b_256": "842b6a09221b47d392f3e669950b06e81a7a4654bfa1988f87c324c124b98fc9", "md5": "f8ff5f2cb8ece70dd77aa41e44998a97", "sha256": "c9601dc863779db2fb1bf18b345bbfa2bb868463123cde6a7eff44b59e4ef739" }, "downloads": -1, "filename": "black-21.4b1-py3-none-any.whl", "has_sig": false, "md5_digest": "f8ff5f2cb8ece70dd77aa41e44998a97", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 130053, "upload_time": "2021-04-27T14:42:43", "upload_time_iso_8601": "2021-04-27T14:42:43.526404Z", "url": "https://files.pythonhosted.org/packages/84/2b/6a09221b47d392f3e669950b06e81a7a4654bfa1988f87c324c124b98fc9/black-21.4b1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "dd5336ed9d3a9888dc86d055b6998f22814521e13c56ed9b5bb0dfb4ec94900f", "md5": "9964f26b26f2c30bfd54073d76659b46", "sha256": "20d326de75d13be6290925a95c94a9f368aca2f71cb7b753a938a5ae20f34a37" }, "downloads": -1, "filename": "black-21.4b1.tar.gz", "has_sig": false, "md5_digest": "9964f26b26f2c30bfd54073d76659b46", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 1150098, "upload_time": "2021-04-27T14:42:45", "upload_time_iso_8601": "2021-04-27T14:42:45.110783Z", "url": "https://files.pythonhosted.org/packages/dd/53/36ed9d3a9888dc86d055b6998f22814521e13c56ed9b5bb0dfb4ec94900f/black-21.4b1.tar.gz", "yanked": false, "yanked_reason": null } ], "21.4b2": [ { "comment_text": "", "digests": { "blake2b_256": "ecc3848edbd902fa908e941eaf72dc142b4a5c86e903c1e0129cf7cd098a485b", "md5": "e9619583ce89c7133a8aabfa195679f0", "sha256": "bff7067d8bc25eb21dcfdbc8c72f2baafd9ec6de4663241a52fb904b304d391f" }, "downloads": -1, "filename": "black-21.4b2-py3-none-any.whl", "has_sig": false, "md5_digest": "e9619583ce89c7133a8aabfa195679f0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 130959, "upload_time": "2021-04-28T15:33:10", "upload_time_iso_8601": "2021-04-28T15:33:10.622778Z", "url": "https://files.pythonhosted.org/packages/ec/c3/848edbd902fa908e941eaf72dc142b4a5c86e903c1e0129cf7cd098a485b/black-21.4b2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f77569fabe4a2d578b315a3b90e485b1671b9872d192028944e9af726bb8c452", "md5": "95d1666a08f6f0481cfbe5e301f5ce7a", "sha256": "fc9bcf3b482b05c1f35f6a882c079dc01b9c7795827532f4cc43c0ec88067bbc" }, "downloads": -1, "filename": "black-21.4b2.tar.gz", "has_sig": false, "md5_digest": "95d1666a08f6f0481cfbe5e301f5ce7a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 1151620, "upload_time": "2021-04-28T15:33:13", "upload_time_iso_8601": "2021-04-28T15:33:13.158011Z", "url": "https://files.pythonhosted.org/packages/f7/75/69fabe4a2d578b315a3b90e485b1671b9872d192028944e9af726bb8c452/black-21.4b2.tar.gz", "yanked": false, "yanked_reason": null } ], "21.5b0": [ { "comment_text": "", "digests": { "blake2b_256": "84ec9a34c4d4011bbad56b58c3ae574ef670b7d46d7c323d9aa407849fce53a7", "md5": "7bda4c72662782ce487e361d8e1b25b8", "sha256": "0e80435b8a88f383c9149ae89d671eb2095b72344b0fe8a1d61d2ff5110ed173" }, "downloads": -1, "filename": "black-21.5b0-py3-none-any.whl", "has_sig": false, "md5_digest": "7bda4c72662782ce487e361d8e1b25b8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 131234, "upload_time": "2021-05-04T19:56:20", "upload_time_iso_8601": "2021-05-04T19:56:20.614784Z", "url": "https://files.pythonhosted.org/packages/84/ec/9a34c4d4011bbad56b58c3ae574ef670b7d46d7c323d9aa407849fce53a7/black-21.5b0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "527e6a41d1504225ef9213731e69ecebfa8fe78c614bcb01e1147f6242073636", "md5": "dc655b7c5fb0d2fc25946dbdd7ce8e52", "sha256": "9dc2042018ca10735366d944c2c12d9cad6dec74a3d5f679d09384ea185d9943" }, "downloads": -1, "filename": "black-21.5b0.tar.gz", "has_sig": false, "md5_digest": "dc655b7c5fb0d2fc25946dbdd7ce8e52", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 1152691, "upload_time": "2021-05-04T19:56:23", "upload_time_iso_8601": "2021-05-04T19:56:23.686798Z", "url": "https://files.pythonhosted.org/packages/52/7e/6a41d1504225ef9213731e69ecebfa8fe78c614bcb01e1147f6242073636/black-21.5b0.tar.gz", "yanked": false, "yanked_reason": null } ], "21.5b1": [ { "comment_text": "", "digests": { "blake2b_256": "0102b9c9eb7bc36db92b4f57b3f0f6e18775c5adc30ce525bf3dcd724ab4853d", "md5": "7c4f8f85d8eb309b1930c1a8248c9740", "sha256": "8a60071a0043876a4ae96e6c69bd3a127dad2c1ca7c8083573eb82f92705d008" }, "downloads": -1, "filename": "black-21.5b1-py3-none-any.whl", "has_sig": false, "md5_digest": "7c4f8f85d8eb309b1930c1a8248c9740", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 137538, "upload_time": "2021-05-10T15:11:11", "upload_time_iso_8601": "2021-05-10T15:11:11.545421Z", "url": "https://files.pythonhosted.org/packages/01/02/b9c9eb7bc36db92b4f57b3f0f6e18775c5adc30ce525bf3dcd724ab4853d/black-21.5b1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "83e581da40cfcdf90a797a4fa3f809a612ee3646e2d3bd6afbb76068be82e4f4", "md5": "24efcdc927b294aa0274b6dd9d04d3c8", "sha256": "23695358dbcb3deafe7f0a3ad89feee5999a46be5fec21f4f1d108be0bcdb3b1" }, "downloads": -1, "filename": "black-21.5b1.tar.gz", "has_sig": false, "md5_digest": "24efcdc927b294aa0274b6dd9d04d3c8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 1141395, "upload_time": "2021-05-10T15:11:13", "upload_time_iso_8601": "2021-05-10T15:11:13.040790Z", "url": "https://files.pythonhosted.org/packages/83/e5/81da40cfcdf90a797a4fa3f809a612ee3646e2d3bd6afbb76068be82e4f4/black-21.5b1.tar.gz", "yanked": false, "yanked_reason": null } ], "21.5b2": [ { "comment_text": "", "digests": { "blake2b_256": "0fa4b521c6e974c90934674f42e44f91c7d75f1f0bfa5faa4101281cfb506247", "md5": "40bfcabc9fdcaf8ff5764262b5319e2b", "sha256": "e5cf21ebdffc7a9b29d73912b6a6a9a4df4ce70220d523c21647da2eae0751ef" }, "downloads": -1, "filename": "black-21.5b2-py3-none-any.whl", "has_sig": false, "md5_digest": "40bfcabc9fdcaf8ff5764262b5319e2b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 138869, "upload_time": "2021-05-31T14:28:12", "upload_time_iso_8601": "2021-05-31T14:28:12.130008Z", "url": "https://files.pythonhosted.org/packages/0f/a4/b521c6e974c90934674f42e44f91c7d75f1f0bfa5faa4101281cfb506247/black-21.5b2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b3d6d1aa2fdb633d092cf43ec4c96b0035a0a3a4f579b691205f96ccbd4e0032", "md5": "6fecdf7bc0b912070875666b57700636", "sha256": "1fc0e0a2c8ae7d269dfcf0c60a89afa299664f3e811395d40b1922dff8f854b5" }, "downloads": -1, "filename": "black-21.5b2.tar.gz", "has_sig": false, "md5_digest": "6fecdf7bc0b912070875666b57700636", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 1137486, "upload_time": "2021-05-31T14:28:13", "upload_time_iso_8601": "2021-05-31T14:28:13.806077Z", "url": "https://files.pythonhosted.org/packages/b3/d6/d1aa2fdb633d092cf43ec4c96b0035a0a3a4f579b691205f96ccbd4e0032/black-21.5b2.tar.gz", "yanked": false, "yanked_reason": null } ], "21.6b0": [ { "comment_text": "", "digests": { "blake2b_256": "91d0154973fbb48aeda17cd117507872079de82408bb16f6f2ead3d05be68bd6", "md5": "8b5969e1a69baa4247ad01f9c5152f19", "sha256": "dfb8c5a069012b2ab1e972e7b908f5fb42b6bbabcba0a788b86dc05067c7d9c7" }, "downloads": -1, "filename": "black-21.6b0-py3-none-any.whl", "has_sig": false, "md5_digest": "8b5969e1a69baa4247ad01f9c5152f19", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 140295, "upload_time": "2021-06-10T22:27:03", "upload_time_iso_8601": "2021-06-10T22:27:03.830831Z", "url": "https://files.pythonhosted.org/packages/91/d0/154973fbb48aeda17cd117507872079de82408bb16f6f2ead3d05be68bd6/black-21.6b0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "263766b198a6a660c72a85386592643b2911052c4feaa33b99681ed8c267bf1a", "md5": "975b3d794b25478ef4d63f667f37b396", "sha256": "dc132348a88d103016726fe360cb9ede02cecf99b76e3660ce6c596be132ce04" }, "downloads": -1, "filename": "black-21.6b0.tar.gz", "has_sig": false, "md5_digest": "975b3d794b25478ef4d63f667f37b396", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 1144008, "upload_time": "2021-06-10T22:27:05", "upload_time_iso_8601": "2021-06-10T22:27:05.374252Z", "url": "https://files.pythonhosted.org/packages/26/37/66b198a6a660c72a85386592643b2911052c4feaa33b99681ed8c267bf1a/black-21.6b0.tar.gz", "yanked": false, "yanked_reason": null } ], "21.7b0": [ { "comment_text": "", "digests": { "blake2b_256": "b66eb706ab6440ebac6e0f7fb4615232216dd3bba09fa9fba6815df90601411c", "md5": "e28b4a2927ac7177cd07c11e50f3f128", "sha256": "1c7aa6ada8ee864db745b22790a32f94b2795c253a75d6d9b5e439ff10d23116" }, "downloads": -1, "filename": "black-21.7b0-py3-none-any.whl", "has_sig": false, "md5_digest": "e28b4a2927ac7177cd07c11e50f3f128", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 141230, "upload_time": "2021-07-16T14:44:33", "upload_time_iso_8601": "2021-07-16T14:44:33.262429Z", "url": "https://files.pythonhosted.org/packages/b6/6e/b706ab6440ebac6e0f7fb4615232216dd3bba09fa9fba6815df90601411c/black-21.7b0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "201be167bc0b94bebaa05bb337978b527f2a71bd67f8769ef5a8dbcb44b89c4b", "md5": "e5b33d678bac0b1a8003087e39df5896", "sha256": "c8373c6491de9362e39271630b65b964607bc5c79c83783547d76c839b3aa219" }, "downloads": -1, "filename": "black-21.7b0.tar.gz", "has_sig": false, "md5_digest": "e5b33d678bac0b1a8003087e39df5896", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 540058, "upload_time": "2021-07-16T14:44:35", "upload_time_iso_8601": "2021-07-16T14:44:35.142784Z", "url": "https://files.pythonhosted.org/packages/20/1b/e167bc0b94bebaa05bb337978b527f2a71bd67f8769ef5a8dbcb44b89c4b/black-21.7b0.tar.gz", "yanked": false, "yanked_reason": null } ], "21.8b0": [ { "comment_text": "", "digests": { "blake2b_256": "9d11cee7b695f95178025c428168dd75094f0e00fdcfe0fd004a0f8bc9bea3ee", "md5": "19064bb0683ca64b4c2297d26e323b65", "sha256": "2a0f9a8c2b2a60dbcf1ccb058842fb22bdbbcb2f32c6cc02d9578f90b92ce8b7" }, "downloads": -1, "filename": "black-21.8b0-py3-none-any.whl", "has_sig": false, "md5_digest": "19064bb0683ca64b4c2297d26e323b65", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 148144, "upload_time": "2021-08-29T21:52:04", "upload_time_iso_8601": "2021-08-29T21:52:04.695681Z", "url": "https://files.pythonhosted.org/packages/9d/11/cee7b695f95178025c428168dd75094f0e00fdcfe0fd004a0f8bc9bea3ee/black-21.8b0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "09b0045f72ac95cd8e2a0e457fb383022e032dc86c040f9b6eaba67968b001e3", "md5": "112af1794be1592ec34f36a7507685bf", "sha256": "570608d28aa3af1792b98c4a337dbac6367877b47b12b88ab42095cfc1a627c2" }, "downloads": -1, "filename": "black-21.8b0.tar.gz", "has_sig": false, "md5_digest": "112af1794be1592ec34f36a7507685bf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 561013, "upload_time": "2021-08-29T21:52:09", "upload_time_iso_8601": "2021-08-29T21:52:09.143220Z", "url": "https://files.pythonhosted.org/packages/09/b0/045f72ac95cd8e2a0e457fb383022e032dc86c040f9b6eaba67968b001e3/black-21.8b0.tar.gz", "yanked": false, "yanked_reason": null } ], "21.9b0": [ { "comment_text": "", "digests": { "blake2b_256": "d216a92c999103bee1236dd93f703f3522217fe00bd97bd50ae3699c2d91e320", "md5": "0e4f109bd570655f8307787757142f2d", "sha256": "380f1b5da05e5a1429225676655dddb96f5ae8c75bdf91e53d798871b902a115" }, "downloads": -1, "filename": "black-21.9b0-py3-none-any.whl", "has_sig": false, "md5_digest": "0e4f109bd570655f8307787757142f2d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 148184, "upload_time": "2021-09-14T02:25:24", "upload_time_iso_8601": "2021-09-14T02:25:24.739934Z", "url": "https://files.pythonhosted.org/packages/d2/16/a92c999103bee1236dd93f703f3522217fe00bd97bd50ae3699c2d91e320/black-21.9b0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b911bde767284a6a15bf85b53ad696c3658eb3ead74e4697ecda2d07cec106ec", "md5": "898555875ee1993d0a31f83b2675d956", "sha256": "7de4cfc7eb6b710de325712d40125689101d21d25283eed7e9998722cf10eb91" }, "downloads": -1, "filename": "black-21.9b0.tar.gz", "has_sig": false, "md5_digest": "898555875ee1993d0a31f83b2675d956", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 560945, "upload_time": "2021-09-14T02:25:26", "upload_time_iso_8601": "2021-09-14T02:25:26.490960Z", "url": "https://files.pythonhosted.org/packages/b9/11/bde767284a6a15bf85b53ad696c3658eb3ead74e4697ecda2d07cec106ec/black-21.9b0.tar.gz", "yanked": false, "yanked_reason": null } ], "22.1.0": [ { "comment_text": "", "digests": { "blake2b_256": "fdaec401710dabb32bac39d799417ab25bd59ffb1336652bcb04f4bdd7126b79", "md5": "ab3b1e5a965931122582c9586891b68b", "sha256": "1297c63b9e1b96a3d0da2d85d11cd9bf8664251fd69ddac068b98dc4f34f73b6" }, "downloads": -1, "filename": "black-22.1.0-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "ab3b1e5a965931122582c9586891b68b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 2391069, "upload_time": "2022-01-29T20:39:31", "upload_time_iso_8601": "2022-01-29T20:39:31.168389Z", "url": "https://files.pythonhosted.org/packages/fd/ae/c401710dabb32bac39d799417ab25bd59ffb1336652bcb04f4bdd7126b79/black-22.1.0-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "404efa8299630a4957f543675b2d8999a80428a7e35a66ec21e8a7d250c97dab", "md5": "619f21b2d88b8296de2657dcd2a52419", "sha256": "2ff96450d3ad9ea499fc4c60e425a1439c2120cbbc1ab959ff20f7c76ec7e866" }, "downloads": -1, "filename": "black-22.1.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "619f21b2d88b8296de2657dcd2a52419", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1341037, "upload_time": "2022-01-29T20:39:37", "upload_time_iso_8601": "2022-01-29T20:39:37.254996Z", "url": "https://files.pythonhosted.org/packages/40/4e/fa8299630a4957f543675b2d8999a80428a7e35a66ec21e8a7d250c97dab/black-22.1.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b5cbd9799d8bd5f95e36ea4a04a80a0a48c24c638734a257d3b22fa16ec9a4ac", "md5": "19344c3f89d1ba338fd6db06b077e8ae", "sha256": "0e21e1f1efa65a50e3960edd068b6ae6d64ad6235bd8bfea116a03b21836af71" }, "downloads": -1, "filename": "black-22.1.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "19344c3f89d1ba338fd6db06b077e8ae", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1214880, "upload_time": "2022-01-29T20:39:42", "upload_time_iso_8601": "2022-01-29T20:39:42.597728Z", "url": "https://files.pythonhosted.org/packages/b5/cb/d9799d8bd5f95e36ea4a04a80a0a48c24c638734a257d3b22fa16ec9a4ac/black-22.1.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b34be490650ee69bd53bad29956969346fa9d345422eb9ed9e201ec9533688eb", "md5": "06d42583a7f4d0da3af6e902b5910cfc", "sha256": "e2f69158a7d120fd641d1fa9a921d898e20d52e44a74a6fbbcc570a62a6bc8ab" }, "downloads": -1, "filename": "black-22.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "06d42583a7f4d0da3af6e902b5910cfc", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1476248, "upload_time": "2022-01-29T20:39:49", "upload_time_iso_8601": "2022-01-29T20:39:49.335937Z", "url": "https://files.pythonhosted.org/packages/b3/4b/e490650ee69bd53bad29956969346fa9d345422eb9ed9e201ec9533688eb/black-22.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "282dfbc5948cfca9f6e8ccb4f97d27eb96f70a6884fc6b71a8c64b89b96be3de", "md5": "58a68e27c5094d34827fdd2dc4a6c0a5", "sha256": "228b5ae2c8e3d6227e4bde5920d2fc66cc3400fde7bcc74f480cb07ef0b570d5" }, "downloads": -1, "filename": "black-22.1.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "58a68e27c5094d34827fdd2dc4a6c0a5", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1140556, "upload_time": "2022-01-29T20:39:55", "upload_time_iso_8601": "2022-01-29T20:39:55.463634Z", "url": "https://files.pythonhosted.org/packages/28/2d/fbc5948cfca9f6e8ccb4f97d27eb96f70a6884fc6b71a8c64b89b96be3de/black-22.1.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8636139d56a71739a86cb4d02cfbec35752bbfece9b96cb86dd1f73203957b22", "md5": "cf1b6e6060a0c1361163a15a462608c5", "sha256": "b1a5ed73ab4c482208d20434f700d514f66ffe2840f63a6252ecc43a9bc77e8a" }, "downloads": -1, "filename": "black-22.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cf1b6e6060a0c1361163a15a462608c5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.2", "size": 1266783, "upload_time": "2022-01-29T20:37:49", "upload_time_iso_8601": "2022-01-29T20:37:49.850039Z", "url": "https://files.pythonhosted.org/packages/86/36/139d56a71739a86cb4d02cfbec35752bbfece9b96cb86dd1f73203957b22/black-22.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "773ba17bdf3f45dc537b903c2a0ee64b7e22540da8da99752cecd31929dc7980", "md5": "c9bf002694537fa9992391db68ae1eab", "sha256": "35944b7100af4a985abfcaa860b06af15590deb1f392f06c8683b4381e8eeaf0" }, "downloads": -1, "filename": "black-22.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c9bf002694537fa9992391db68ae1eab", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.2", "size": 1377370, "upload_time": "2022-01-29T20:37:56", "upload_time_iso_8601": "2022-01-29T20:37:56.575262Z", "url": "https://files.pythonhosted.org/packages/77/3b/a17bdf3f45dc537b903c2a0ee64b7e22540da8da99752cecd31929dc7980/black-22.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3af77f8f2263d81f3d97755c03e644330dd318b2b473a90e766192b19631ac59", "md5": "6d387f3bc29c5724039a1736657ef0f3", "sha256": "7835fee5238fc0a0baf6c9268fb816b5f5cd9b8793423a75e8cd663c48d073ba" }, "downloads": -1, "filename": "black-22.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6d387f3bc29c5724039a1736657ef0f3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.2", "size": 1079541, "upload_time": "2022-01-29T20:38:01", "upload_time_iso_8601": "2022-01-29T20:38:01.524186Z", "url": "https://files.pythonhosted.org/packages/3a/f7/7f8f2263d81f3d97755c03e644330dd318b2b473a90e766192b19631ac59/black-22.1.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "943789d9866a8a5b4a5277478c9652400a38972168fb039ac9ab31b1fd87ec75", "md5": "6e0e46ec9aa57d2aa3fd47934081dc33", "sha256": "dae63f2dbf82882fa3b2a3c49c32bffe144970a573cd68d247af6560fc493ae1" }, "downloads": -1, "filename": "black-22.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6e0e46ec9aa57d2aa3fd47934081dc33", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.2", "size": 1265314, "upload_time": "2022-01-29T20:38:07", "upload_time_iso_8601": "2022-01-29T20:38:07.718797Z", "url": "https://files.pythonhosted.org/packages/94/37/89d9866a8a5b4a5277478c9652400a38972168fb039ac9ab31b1fd87ec75/black-22.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "54d7d1f9009f3695faa1e18b53fbf17419b51b56f4cf00e5ebb7133744f29284", "md5": "96f0bd209196b7f220a57f006455b5e1", "sha256": "5fa1db02410b1924b6749c245ab38d30621564e658297484952f3d8a39fce7e8" }, "downloads": -1, "filename": "black-22.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "96f0bd209196b7f220a57f006455b5e1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.2", "size": 1392852, "upload_time": "2022-01-29T20:38:14", "upload_time_iso_8601": "2022-01-29T20:38:14.425614Z", "url": "https://files.pythonhosted.org/packages/54/d7/d1f9009f3695faa1e18b53fbf17419b51b56f4cf00e5ebb7133744f29284/black-22.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b2391b41a9e70c9ec5526d59f6ca0a0e7f530e63ac2a8a6e35900eae457cc059", "md5": "af582b51c2fce89de305e12a831520a1", "sha256": "c8226f50b8c34a14608b848dc23a46e5d08397d009446353dad45e04af0c8e28" }, "downloads": -1, "filename": "black-22.1.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "af582b51c2fce89de305e12a831520a1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.2", "size": 1082638, "upload_time": "2022-01-29T20:38:18", "upload_time_iso_8601": "2022-01-29T20:38:18.678263Z", "url": "https://files.pythonhosted.org/packages/b2/39/1b41a9e70c9ec5526d59f6ca0a0e7f530e63ac2a8a6e35900eae457cc059/black-22.1.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3ec495eea7bd67b37c54b7322ff3595fd3d679345e2b89ceca48fe3ec10df52c", "md5": "38ea0ec63173668c4626a1fa67a7aa3a", "sha256": "2d6f331c02f0f40aa51a22e479c8209d37fcd520c77721c034517d44eecf5912" }, "downloads": -1, "filename": "black-22.1.0-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "38ea0ec63173668c4626a1fa67a7aa3a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 2361848, "upload_time": "2022-01-29T20:38:27", "upload_time_iso_8601": "2022-01-29T20:38:27.832797Z", "url": "https://files.pythonhosted.org/packages/3e/c4/95eea7bd67b37c54b7322ff3595fd3d679345e2b89ceca48fe3ec10df52c/black-22.1.0-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "9b7842a83acaf953b3ea5d6067c72f795a4df4b3eb540123cc2a59ec797d174b", "md5": "8dac87c13d2220b0fd81f113bb46e6f5", "sha256": "742ce9af3086e5bd07e58c8feb09dbb2b047b7f566eb5f5bc63fd455814979f3" }, "downloads": -1, "filename": "black-22.1.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8dac87c13d2220b0fd81f113bb46e6f5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1324279, "upload_time": "2022-01-29T20:38:33", "upload_time_iso_8601": "2022-01-29T20:38:33.384887Z", "url": "https://files.pythonhosted.org/packages/9b/78/42a83acaf953b3ea5d6067c72f795a4df4b3eb540123cc2a59ec797d174b/black-22.1.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "08b2dbd7330ffe13571e17b7f905f7639ba77f01282ff1ecd94f3278c50ebb32", "md5": "980119d37ede36c02ddeffa3a75a3281", "sha256": "fdb8754b453fb15fad3f72cd9cad3e16776f0964d67cf30ebcbf10327a3777a3" }, "downloads": -1, "filename": "black-22.1.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "980119d37ede36c02ddeffa3a75a3281", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1199897, "upload_time": "2022-01-29T20:38:37", "upload_time_iso_8601": "2022-01-29T20:38:37.853172Z", "url": "https://files.pythonhosted.org/packages/08/b2/dbd7330ffe13571e17b7f905f7639ba77f01282ff1ecd94f3278c50ebb32/black-22.1.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0b7f384cf21254346f4cd535fa8bf2531ff2b3f1307680199e28ea949c3ecb89", "md5": "c5378f61ea76ac5e07f5a5d0f331f867", "sha256": "f5660feab44c2e3cb24b2419b998846cbb01c23c7fe645fee45087efa3da2d61" }, "downloads": -1, "filename": "black-22.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c5378f61ea76ac5e07f5a5d0f331f867", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1454689, "upload_time": "2022-01-29T20:38:43", "upload_time_iso_8601": "2022-01-29T20:38:43.965639Z", "url": "https://files.pythonhosted.org/packages/0b/7f/384cf21254346f4cd535fa8bf2531ff2b3f1307680199e28ea949c3ecb89/black-22.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "668347fa3811eea48edbbea09a07fd137f593e10af2f481f965855eb09a17e20", "md5": "534effa6f9edbe749445b85c45265b9c", "sha256": "6f2f01381f91c1efb1451998bd65a129b3ed6f64f79663a55fe0e9b74a5f81fd" }, "downloads": -1, "filename": "black-22.1.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "534effa6f9edbe749445b85c45265b9c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1150354, "upload_time": "2022-01-29T20:38:49", "upload_time_iso_8601": "2022-01-29T20:38:49.602215Z", "url": "https://files.pythonhosted.org/packages/66/83/47fa3811eea48edbbea09a07fd137f593e10af2f481f965855eb09a17e20/black-22.1.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c2e26198c928e9cee46233463f30a8faf39a5752e75c07c8d30a908865a05a51", "md5": "40102055336c9e43e1ffee5485701823", "sha256": "efbadd9b52c060a8fc3b9658744091cb33c31f830b3f074422ed27bad2b18e8f" }, "downloads": -1, "filename": "black-22.1.0-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "40102055336c9e43e1ffee5485701823", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 2390187, "upload_time": "2022-01-29T20:38:59", "upload_time_iso_8601": "2022-01-29T20:38:59.123292Z", "url": "https://files.pythonhosted.org/packages/c2/e2/6198c928e9cee46233463f30a8faf39a5752e75c07c8d30a908865a05a51/black-22.1.0-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a65e5e3d6145ae5c8127abe1734878fff2ca6a494799cfa18fe585c33cae9198", "md5": "013085570130713dd43af7d26ba96a71", "sha256": "8871fcb4b447206904932b54b567923e5be802b9b19b744fdff092bd2f3118d0" }, "downloads": -1, "filename": "black-22.1.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "013085570130713dd43af7d26ba96a71", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1340496, "upload_time": "2022-01-29T20:39:04", "upload_time_iso_8601": "2022-01-29T20:39:04.932784Z", "url": "https://files.pythonhosted.org/packages/a6/5e/5e3d6145ae5c8127abe1734878fff2ca6a494799cfa18fe585c33cae9198/black-22.1.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3895e3f3796278da6c399003db92d3254f330f928777230cda43a3607dc0f913", "md5": "627630621477103f27b6058c17e94d14", "sha256": "ccad888050f5393f0d6029deea2a33e5ae371fd182a697313bdbd835d3edaf9c" }, "downloads": -1, "filename": "black-22.1.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "627630621477103f27b6058c17e94d14", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1214562, "upload_time": "2022-01-29T20:39:10", "upload_time_iso_8601": "2022-01-29T20:39:10.299370Z", "url": "https://files.pythonhosted.org/packages/38/95/e3f3796278da6c399003db92d3254f330f928777230cda43a3607dc0f913/black-22.1.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5625c625a190347b5f6d940cfdeeb15958c04436328c29dc17b5bafb6dafa3ec", "md5": "3e4e3c54bab556f0c1b54faa2f247e46", "sha256": "07e5c049442d7ca1a2fc273c79d1aecbbf1bc858f62e8184abe1ad175c4f7cc2" }, "downloads": -1, "filename": "black-22.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3e4e3c54bab556f0c1b54faa2f247e46", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1475362, "upload_time": "2022-01-29T20:39:15", "upload_time_iso_8601": "2022-01-29T20:39:15.190242Z", "url": "https://files.pythonhosted.org/packages/56/25/c625a190347b5f6d940cfdeeb15958c04436328c29dc17b5bafb6dafa3ec/black-22.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "edc6817f8f025f9ede44d8f028b9f9ee2a66abe6c605cfcb41029600cda1b205", "md5": "b66ea23239b480afc9c539044a224717", "sha256": "373922fc66676133ddc3e754e4509196a8c392fec3f5ca4486673e685a421321" }, "downloads": -1, "filename": "black-22.1.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "b66ea23239b480afc9c539044a224717", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1139692, "upload_time": "2022-01-29T20:39:21", "upload_time_iso_8601": "2022-01-29T20:39:21.989880Z", "url": "https://files.pythonhosted.org/packages/ed/c6/817f8f025f9ede44d8f028b9f9ee2a66abe6c605cfcb41029600cda1b205/black-22.1.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a559bd6d44da2b364fd2bd7a0b2ce2edfe200b79faad1cde14ce5ef13d504393", "md5": "6d886869b86b68d1ffbe00ee12011c9c", "sha256": "3524739d76b6b3ed1132422bf9d82123cd1705086723bc3e235ca39fd21c667d" }, "downloads": -1, "filename": "black-22.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6d886869b86b68d1ffbe00ee12011c9c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 160408, "upload_time": "2022-01-29T20:38:07", "upload_time_iso_8601": "2022-01-29T20:38:07.336841Z", "url": "https://files.pythonhosted.org/packages/a5/59/bd6d44da2b364fd2bd7a0b2ce2edfe200b79faad1cde14ce5ef13d504393/black-22.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "42588a3443a5034685152270f9012a9d196c9f165791ed3f2777307708b15f6c", "md5": "c17d6fc65c996ae90bae5e69965d24d0", "sha256": "a7c0192d35635f6fc1174be575cb7915e92e5dd629ee79fdaf0dcfa41a80afb5" }, "downloads": -1, "filename": "black-22.1.0.tar.gz", "has_sig": false, "md5_digest": "c17d6fc65c996ae90bae5e69965d24d0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 559521, "upload_time": "2022-01-29T20:38:08", "upload_time_iso_8601": "2022-01-29T20:38:08.749226Z", "url": "https://files.pythonhosted.org/packages/42/58/8a3443a5034685152270f9012a9d196c9f165791ed3f2777307708b15f6c/black-22.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "22.10.0": [ { "comment_text": "", "digests": { "blake2b_256": "ae49ea03c318a25be359b8e5178a359d47e2da8f7524e1522c74b8f74c66b6f8", "md5": "3eac924b7e2e7623c3847b718441dfa9", "sha256": "5cc42ca67989e9c3cf859e84c2bf014f6633db63d1cbdf8fdb666dcd9e77e3fa" }, "downloads": -1, "filename": "black-22.10.0-1fixedarch-cp310-cp310-macosx_11_0_x86_64.whl", "has_sig": false, "md5_digest": "3eac924b7e2e7623c3847b718441dfa9", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1413786, "upload_time": "2022-10-07T18:06:56", "upload_time_iso_8601": "2022-10-07T18:06:56.738730Z", "url": "https://files.pythonhosted.org/packages/ae/49/ea03c318a25be359b8e5178a359d47e2da8f7524e1522c74b8f74c66b6f8/black-22.10.0-1fixedarch-cp310-cp310-macosx_11_0_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a6845c3f3ffc4143fa7e208d745d2239d915e74d3709fdbc64c3e98d3fd27e56", "md5": "3e27e05b8478ed0d4d00531b804ee477", "sha256": "5d8f74030e67087b219b032aa33a919fae8806d49c867846bfacde57f43972ef" }, "downloads": -1, "filename": "black-22.10.0-1fixedarch-cp311-cp311-macosx_11_0_x86_64.whl", "has_sig": false, "md5_digest": "3e27e05b8478ed0d4d00531b804ee477", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1395367, "upload_time": "2022-10-07T18:07:10", "upload_time_iso_8601": "2022-10-07T18:07:10.109215Z", "url": "https://files.pythonhosted.org/packages/a6/84/5c3f3ffc4143fa7e208d745d2239d915e74d3709fdbc64c3e98d3fd27e56/black-22.10.0-1fixedarch-cp311-cp311-macosx_11_0_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "86daedebcc6c13441d91eff6761e50512bc6d6886a556dc5357b399694122b4f", "md5": "60fc7854c83044c0df50ba2aaf005b75", "sha256": "197df8509263b0b8614e1df1756b1dd41be6738eed2ba9e9769f3880c2b9d7b6" }, "downloads": -1, "filename": "black-22.10.0-1fixedarch-cp37-cp37m-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "60fc7854c83044c0df50ba2aaf005b75", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1345258, "upload_time": "2022-10-07T18:06:01", "upload_time_iso_8601": "2022-10-07T18:06:01.031469Z", "url": "https://files.pythonhosted.org/packages/86/da/edebcc6c13441d91eff6761e50512bc6d6886a556dc5357b399694122b4f/black-22.10.0-1fixedarch-cp37-cp37m-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6921846c95710cc6561ba980bd6c72479dbcdde742e927ff5ef7340916d003ac", "md5": "38c4de99ace271fb2367095c5f902156", "sha256": "2644b5d63633702bc2c5f3754b1b475378fbbfb481f62319388235d0cd104c2d" }, "downloads": -1, "filename": "black-22.10.0-1fixedarch-cp38-cp38-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "38c4de99ace271fb2367095c5f902156", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1404087, "upload_time": "2022-10-07T17:56:21", "upload_time_iso_8601": "2022-10-07T17:56:21.551947Z", "url": "https://files.pythonhosted.org/packages/69/21/846c95710cc6561ba980bd6c72479dbcdde742e927ff5ef7340916d003ac/black-22.10.0-1fixedarch-cp38-cp38-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f223f4278377cabf882298b4766e977fd04377f288d1ccef706953076a1e0598", "md5": "11cce82c84bbd690226a2280d128de04", "sha256": "e41a86c6c650bcecc6633ee3180d80a025db041a8e2398dcc059b3afa8382cd4" }, "downloads": -1, "filename": "black-22.10.0-1fixedarch-cp39-cp39-macosx_11_0_x86_64.whl", "has_sig": false, "md5_digest": "11cce82c84bbd690226a2280d128de04", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1412948, "upload_time": "2022-10-07T18:06:45", "upload_time_iso_8601": "2022-10-07T18:06:45.929407Z", "url": "https://files.pythonhosted.org/packages/f2/23/f4278377cabf882298b4766e977fd04377f288d1ccef706953076a1e0598/black-22.10.0-1fixedarch-cp39-cp39-macosx_11_0_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2c11f2737cd3b458d91401801e83a014e87c63e8904dc063200f77826c352f54", "md5": "81769159c6e7861313fd616e6d7575a1", "sha256": "2039230db3c6c639bd84efe3292ec7b06e9214a2992cd9beb293d639c6402edb" }, "downloads": -1, "filename": "black-22.10.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "81769159c6e7861313fd616e6d7575a1", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1248864, "upload_time": "2022-10-07T18:34:56", "upload_time_iso_8601": "2022-10-07T18:34:56.303581Z", "url": "https://files.pythonhosted.org/packages/2c/11/f2737cd3b458d91401801e83a014e87c63e8904dc063200f77826c352f54/black-22.10.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a55f9cfc6dd95965f8df30194472543e6f0515a10d78ea5378426ef1546735c7", "md5": "141c3ada26c69278267e5d4b90cc72d2", "sha256": "14ff67aec0a47c424bc99b71005202045dc09270da44a27848d534600ac64fc7" }, "downloads": -1, "filename": "black-22.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "141c3ada26c69278267e5d4b90cc72d2", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1542985, "upload_time": "2022-10-06T22:54:23", "upload_time_iso_8601": "2022-10-06T22:54:23.320267Z", "url": "https://files.pythonhosted.org/packages/a5/5f/9cfc6dd95965f8df30194472543e6f0515a10d78ea5378426ef1546735c7/black-22.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ffce22281871536b3d79474fd44d48dad48f7cbc5c3982bddf6a7495e7079d00", "md5": "9c9352e9e214227dbb4799e9fde24500", "sha256": "819dc789f4498ecc91438a7de64427c73b45035e2e3680c92e18795a839ebb66" }, "downloads": -1, "filename": "black-22.10.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "9c9352e9e214227dbb4799e9fde24500", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1198188, "upload_time": "2022-10-06T22:58:56", "upload_time_iso_8601": "2022-10-06T22:58:56.509223Z", "url": "https://files.pythonhosted.org/packages/ff/ce/22281871536b3d79474fd44d48dad48f7cbc5c3982bddf6a7495e7079d00/black-22.10.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e22fa8406a9e337a213802aa90a3e9fbf90c86f3edce92f527255fd381309b77", "md5": "e6cccf3096583db55e297f90ade056f5", "sha256": "5b9b29da4f564ba8787c119f37d174f2b69cdfdf9015b7d8c5c16121ddc054ae" }, "downloads": -1, "filename": "black-22.10.0-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "e6cccf3096583db55e297f90ade056f5", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1233231, "upload_time": "2022-10-07T18:35:05", "upload_time_iso_8601": "2022-10-07T18:35:05.895266Z", "url": "https://files.pythonhosted.org/packages/e2/2f/a8406a9e337a213802aa90a3e9fbf90c86f3edce92f527255fd381309b77/black-22.10.0-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b09efa912c5ae4b8eb6d36982fc8ac2d779cf944dbd7c3c1fe7a28acf462c1ed", "md5": "65bf4c7e7ac72bceb5e2084d70140dc0", "sha256": "b8b49776299fece66bffaafe357d929ca9451450f5466e997a7285ab0fe28e3b" }, "downloads": -1, "filename": "black-22.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "65bf4c7e7ac72bceb5e2084d70140dc0", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1527386, "upload_time": "2022-10-06T22:54:25", "upload_time_iso_8601": "2022-10-06T22:54:25.636372Z", "url": "https://files.pythonhosted.org/packages/b0/9e/fa912c5ae4b8eb6d36982fc8ac2d779cf944dbd7c3c1fe7a28acf462c1ed/black-22.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "56df913d71817c7034edba25d596c54f782c2f809b6af30367d2f00309e8890a", "md5": "b898be48e96d1304f6c8e25131d9d874", "sha256": "21199526696b8f09c3997e2b4db8d0b108d801a348414264d2eb8eb2532e540d" }, "downloads": -1, "filename": "black-22.10.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "b898be48e96d1304f6c8e25131d9d874", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1201344, "upload_time": "2022-10-06T22:58:58", "upload_time_iso_8601": "2022-10-06T22:58:58.134753Z", "url": "https://files.pythonhosted.org/packages/56/df/913d71817c7034edba25d596c54f782c2f809b6af30367d2f00309e8890a/black-22.10.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e3b49203f1a0c99aa30389b61fa8cb54bc9f4bf16ac3aa74630c6b974ed3f3b0", "md5": "cd997f25750cd5539949ce65fe66fcb3", "sha256": "1e464456d24e23d11fced2bc8c47ef66d471f845c7b7a42f3bd77bf3d1789650" }, "downloads": -1, "filename": "black-22.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "cd997f25750cd5539949ce65fe66fcb3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1465115, "upload_time": "2022-10-06T22:54:27", "upload_time_iso_8601": "2022-10-06T22:54:27.587323Z", "url": "https://files.pythonhosted.org/packages/e3/b4/9203f1a0c99aa30389b61fa8cb54bc9f4bf16ac3aa74630c6b974ed3f3b0/black-22.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3dc5b3ab9b563f35fb284d37ab2b14acaed9a27d8cdea9c31364766eb54946a7", "md5": "c66740af80b0c795fd8f65746434198f", "sha256": "9311e99228ae10023300ecac05be5a296f60d2fd10fff31cf5c1fa4ca4b1988d" }, "downloads": -1, "filename": "black-22.10.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c66740af80b0c795fd8f65746434198f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1138941, "upload_time": "2022-10-06T22:59:00", "upload_time_iso_8601": "2022-10-06T22:59:00.589816Z", "url": "https://files.pythonhosted.org/packages/3d/c5/b3ab9b563f35fb284d37ab2b14acaed9a27d8cdea9c31364766eb54946a7/black-22.10.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "71f857e47ea67f59613c4368a952062bc3429131249920cffbb8362fd404b733", "md5": "32d7bc442e13f82227fff722e3bad1fd", "sha256": "fba8a281e570adafb79f7755ac8721b6cf1bbf691186a287e990c7929c7692ff" }, "downloads": -1, "filename": "black-22.10.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "32d7bc442e13f82227fff722e3bad1fd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1238866, "upload_time": "2022-10-07T18:34:24", "upload_time_iso_8601": "2022-10-07T18:34:24.060038Z", "url": "https://files.pythonhosted.org/packages/71/f8/57e47ea67f59613c4368a952062bc3429131249920cffbb8362fd404b733/black-22.10.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d05a5f31494e3acbb6319ee60c3a3a09d3e536a3fd2353f76af9cbff799c4999", "md5": "e1087cfbb289716b4ad44a2f7fd9052b", "sha256": "915ace4ff03fdfff953962fa672d44be269deb2eaf88499a0f8805221bc68c87" }, "downloads": -1, "filename": "black-22.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e1087cfbb289716b4ad44a2f7fd9052b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1531819, "upload_time": "2022-10-06T22:54:29", "upload_time_iso_8601": "2022-10-06T22:54:29.853408Z", "url": "https://files.pythonhosted.org/packages/d0/5a/5f31494e3acbb6319ee60c3a3a09d3e536a3fd2353f76af9cbff799c4999/black-22.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "91e6d9b78987d7d903369ba1a0b795bce4de06f0155be6609f15e8950aef8f7e", "md5": "7487ca1ae312e49abfbe70b1e484da05", "sha256": "444ebfb4e441254e87bad00c661fe32df9969b2bf224373a448d8aca2132b395" }, "downloads": -1, "filename": "black-22.10.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "7487ca1ae312e49abfbe70b1e484da05", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1203713, "upload_time": "2022-10-06T22:59:02", "upload_time_iso_8601": "2022-10-06T22:59:02.153139Z", "url": "https://files.pythonhosted.org/packages/91/e6/d9b78987d7d903369ba1a0b795bce4de06f0155be6609f15e8950aef8f7e/black-22.10.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6984903cdf41514088d5a716538cb189c471ab34e56ae9a1c2da6b8bfe8e4dbf", "md5": "e3244ac55bd28c3580d0329c92793b0c", "sha256": "974308c58d057a651d182208a484ce80a26dac0caef2895836a92dd6ebd725e0" }, "downloads": -1, "filename": "black-22.10.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "e3244ac55bd28c3580d0329c92793b0c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1248291, "upload_time": "2022-10-07T18:34:48", "upload_time_iso_8601": "2022-10-07T18:34:48.480516Z", "url": "https://files.pythonhosted.org/packages/69/84/903cdf41514088d5a716538cb189c471ab34e56ae9a1c2da6b8bfe8e4dbf/black-22.10.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b951403b0b0eb9fb412ca02b79dc38472469f2f88c9aacc6bb5262143e4ff0bc", "md5": "3c1fc1b89e88a3c987ffdb57ead24ece", "sha256": "72ef3925f30e12a184889aac03d77d031056860ccae8a1e519f6cbb742736383" }, "downloads": -1, "filename": "black-22.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3c1fc1b89e88a3c987ffdb57ead24ece", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1542631, "upload_time": "2022-10-06T22:54:31", "upload_time_iso_8601": "2022-10-06T22:54:31.965292Z", "url": "https://files.pythonhosted.org/packages/b9/51/403b0b0eb9fb412ca02b79dc38472469f2f88c9aacc6bb5262143e4ff0bc/black-22.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ab1561119d166a44699827c112d7c4726421f14323c2cb7aa9f4c26628f237f9", "md5": "0982c912bb4efae510743342d0d0d189", "sha256": "432247333090c8c5366e69627ccb363bc58514ae3e63f7fc75c54b1ea80fa7de" }, "downloads": -1, "filename": "black-22.10.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "0982c912bb4efae510743342d0d0d189", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1197402, "upload_time": "2022-10-06T22:59:03", "upload_time_iso_8601": "2022-10-06T22:59:03.766509Z", "url": "https://files.pythonhosted.org/packages/ab/15/61119d166a44699827c112d7c4726421f14323c2cb7aa9f4c26628f237f9/black-22.10.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ce6f74492b8852ee4f2ad2178178f6b65bc8fc80ad539abe56c1c23eab6732e2", "md5": "34d6365d6e7d6c7cca9f4bc2974a23e7", "sha256": "c957b2b4ea88587b46cf49d1dc17681c1e672864fd7af32fc1e9664d572b3458" }, "downloads": -1, "filename": "black-22.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "34d6365d6e7d6c7cca9f4bc2974a23e7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 165761, "upload_time": "2022-10-06T22:44:46", "upload_time_iso_8601": "2022-10-06T22:44:46.108030Z", "url": "https://files.pythonhosted.org/packages/ce/6f/74492b8852ee4f2ad2178178f6b65bc8fc80ad539abe56c1c23eab6732e2/black-22.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a389629fca2eea0899c06befaa58dc0f49d56807d454202bb2e54bd0d98c77f3", "md5": "59355781564117f1964c6181b45720fc", "sha256": "f513588da599943e0cde4e32cc9879e825d58720d6557062d1098c5ad80080e1" }, "downloads": -1, "filename": "black-22.10.0.tar.gz", "has_sig": false, "md5_digest": "59355781564117f1964c6181b45720fc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 547735, "upload_time": "2022-10-06T22:44:48", "upload_time_iso_8601": "2022-10-06T22:44:48.253795Z", "url": "https://files.pythonhosted.org/packages/a3/89/629fca2eea0899c06befaa58dc0f49d56807d454202bb2e54bd0d98c77f3/black-22.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "22.12.0": [ { "comment_text": "", "digests": { "blake2b_256": "79d960852a6fc2f85374db20a9767dacfe50c2172eb8388f46018c8daf836995", "md5": "d3b789f155b9307ca636bebd059aae5a", "sha256": "9eedd20838bd5d75b80c9f5487dbcb06836a43833a37846cf1d8c1cc01cef59d" }, "downloads": -1, "filename": "black-22.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d3b789f155b9307ca636bebd059aae5a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1556665, "upload_time": "2022-12-09T16:04:10", "upload_time_iso_8601": "2022-12-09T16:04:10.897261Z", "url": "https://files.pythonhosted.org/packages/79/d9/60852a6fc2f85374db20a9767dacfe50c2172eb8388f46018c8daf836995/black-22.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7157975782465cc6b514f2c972421e29b933dfbb51d4a95948a4e0e94f36ea38", "md5": "d9cedce567fb4b75d2447200416e7a46", "sha256": "159a46a4947f73387b4d83e87ea006dbb2337eab6c879620a3ba52699b1f4351" }, "downloads": -1, "filename": "black-22.12.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "d9cedce567fb4b75d2447200416e7a46", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1205632, "upload_time": "2022-12-09T16:14:38", "upload_time_iso_8601": "2022-12-09T16:14:38.465308Z", "url": "https://files.pythonhosted.org/packages/71/57/975782465cc6b514f2c972421e29b933dfbb51d4a95948a4e0e94f36ea38/black-22.12.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e9e06aa02d14785c4039b38bfed6f9ee28a952b2d101c64fc97b15811fa8bd04", "md5": "390f1f9232c91f7a2f520473f2208f56", "sha256": "d30b212bffeb1e252b31dd269dfae69dd17e06d92b87ad26e23890f3efea366f" }, "downloads": -1, "filename": "black-22.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "390f1f9232c91f7a2f520473f2208f56", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1536577, "upload_time": "2022-12-09T16:04:12", "upload_time_iso_8601": "2022-12-09T16:04:12.721754Z", "url": "https://files.pythonhosted.org/packages/e9/e0/6aa02d14785c4039b38bfed6f9ee28a952b2d101c64fc97b15811fa8bd04/black-22.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4c49420dcfccba3215dc4e5790fa47572ef14129df1c5e95dd87b5ad30211b01", "md5": "bdd2d4b3e4ee3e840a4f8426f146c1ce", "sha256": "7412e75863aa5c5411886804678b7d083c7c28421210180d67dfd8cf1221e1f4" }, "downloads": -1, "filename": "black-22.12.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "bdd2d4b3e4ee3e840a4f8426f146c1ce", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1209873, "upload_time": "2022-12-09T16:14:40", "upload_time_iso_8601": "2022-12-09T16:14:40.318228Z", "url": "https://files.pythonhosted.org/packages/4c/49/420dcfccba3215dc4e5790fa47572ef14129df1c5e95dd87b5ad30211b01/black-22.12.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f1b76de002378cfe0b83beba72f0a7875dfb6005b2a214ac9f9ca689583069ef", "md5": "629f9de2d01944e629cabad510a7c31d", "sha256": "c116eed0efb9ff870ded8b62fe9f28dd61ef6e9ddd28d83d7d264a38417dcee2" }, "downloads": -1, "filename": "black-22.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "629f9de2d01944e629cabad510a7c31d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1477486, "upload_time": "2022-12-09T16:04:14", "upload_time_iso_8601": "2022-12-09T16:04:14.740999Z", "url": "https://files.pythonhosted.org/packages/f1/b7/6de002378cfe0b83beba72f0a7875dfb6005b2a214ac9f9ca689583069ef/black-22.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "eb91e0ccc36f8e1a00ed3c343741ca7ffe954e33cd2be0cada039845ff9e0539", "md5": "d4b4462004362b9a64c979b519ce3981", "sha256": "1f58cbe16dfe8c12b7434e50ff889fa479072096d79f0a7f25e4ab8e94cd8350" }, "downloads": -1, "filename": "black-22.12.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "d4b4462004362b9a64c979b519ce3981", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1148637, "upload_time": "2022-12-09T16:14:41", "upload_time_iso_8601": "2022-12-09T16:14:41.915281Z", "url": "https://files.pythonhosted.org/packages/eb/91/e0ccc36f8e1a00ed3c343741ca7ffe954e33cd2be0cada039845ff9e0539/black-22.12.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "54446d5f9af3c14da013754021e28eacc873e6ecbe877b2540e37346579398c8", "md5": "08eee2ad70339314f96dcd6813cf48d8", "sha256": "77d86c9f3db9b1bf6761244bc0b3572a546f5fe37917a044e02f3166d5aafa7d" }, "downloads": -1, "filename": "black-22.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "08eee2ad70339314f96dcd6813cf48d8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1540081, "upload_time": "2022-12-09T16:04:16", "upload_time_iso_8601": "2022-12-09T16:04:16.450897Z", "url": "https://files.pythonhosted.org/packages/54/44/6d5f9af3c14da013754021e28eacc873e6ecbe877b2540e37346579398c8/black-22.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4cddcdb4e62a58e229ee757110a9dfb914a44e9d41be8becb41e085cb5df5d5b", "md5": "9131960463096171286ca31f88516cb8", "sha256": "82d9fe8fee3401e02e79767016b4907820a7dc28d70d137eb397b92ef3cc5bfc" }, "downloads": -1, "filename": "black-22.12.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "9131960463096171286ca31f88516cb8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1214635, "upload_time": "2022-12-09T16:14:44", "upload_time_iso_8601": "2022-12-09T16:14:44.002716Z", "url": "https://files.pythonhosted.org/packages/4c/dd/cdb4e62a58e229ee757110a9dfb914a44e9d41be8becb41e085cb5df5d5b/black-22.12.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ba32954bcc56b2b3b4ef52a086e3c0bdbad88a38c9e739feb19dd2e6294cda42", "md5": "44762cfd0d9a758c22c26520fa79a408", "sha256": "101c69b23df9b44247bd88e1d7e90154336ac4992502d4197bdac35dd7ee3320" }, "downloads": -1, "filename": "black-22.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "44762cfd0d9a758c22c26520fa79a408", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1556765, "upload_time": "2022-12-09T16:04:18", "upload_time_iso_8601": "2022-12-09T16:04:18.013575Z", "url": "https://files.pythonhosted.org/packages/ba/32/954bcc56b2b3b4ef52a086e3c0bdbad88a38c9e739feb19dd2e6294cda42/black-22.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f2b906fe2dd83a2104d83c2b737f41aa5679f5a4395630005443ba4fa6fece8b", "md5": "5b5b77023872555bdb11e8092df952cb", "sha256": "559c7a1ba9a006226f09e4916060982fd27334ae1998e7a38b3f33a37f7a2148" }, "downloads": -1, "filename": "black-22.12.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "5b5b77023872555bdb11e8092df952cb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1204876, "upload_time": "2022-12-09T16:14:45", "upload_time_iso_8601": "2022-12-09T16:14:45.975875Z", "url": "https://files.pythonhosted.org/packages/f2/b9/06fe2dd83a2104d83c2b737f41aa5679f5a4395630005443ba4fa6fece8b/black-22.12.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0c511f7f93c0555eaf4cbb628e26ba026e3256174a45bd9397ff1ea7cf96bad5", "md5": "56137f902a2cdc9bee1f61966349f155", "sha256": "436cc9167dd28040ad90d3b404aec22cedf24a6e4d7de221bec2730ec0c97bcf" }, "downloads": -1, "filename": "black-22.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "56137f902a2cdc9bee1f61966349f155", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 167343, "upload_time": "2022-12-09T15:57:02", "upload_time_iso_8601": "2022-12-09T15:57:02.229808Z", "url": "https://files.pythonhosted.org/packages/0c/51/1f7f93c0555eaf4cbb628e26ba026e3256174a45bd9397ff1ea7cf96bad5/black-22.12.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a659e873cc6807fb62c11131e5258ca15577a3b7452abad08dc49286cf8245e8", "md5": "520c6d1854a2a94ea2eae1df86f441b9", "sha256": "229351e5a18ca30f447bf724d007f890f97e13af070bb6ad4c0a441cd7596a2f" }, "downloads": -1, "filename": "black-22.12.0.tar.gz", "has_sig": false, "md5_digest": "520c6d1854a2a94ea2eae1df86f441b9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 553112, "upload_time": "2022-12-09T15:57:04", "upload_time_iso_8601": "2022-12-09T15:57:04.428587Z", "url": "https://files.pythonhosted.org/packages/a6/59/e873cc6807fb62c11131e5258ca15577a3b7452abad08dc49286cf8245e8/black-22.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "22.3.0": [ { "comment_text": "", "digests": { "blake2b_256": "e11b3ba8128f0b6e86d87343a1275e17baeeeee1a89e02d2a0d275f472be3310", "md5": "241369b18b70541ff8aadc3960e993e4", "sha256": "2497f9c2386572e28921fa8bec7be3e51de6801f7459dffd6e62492531c47e09" }, "downloads": -1, "filename": "black-22.3.0-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "241369b18b70541ff8aadc3960e993e4", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 2392131, "upload_time": "2022-03-28T20:10:57", "upload_time_iso_8601": "2022-03-28T20:10:57.319789Z", "url": "https://files.pythonhosted.org/packages/e1/1b/3ba8128f0b6e86d87343a1275e17baeeeee1a89e02d2a0d275f472be3310/black-22.3.0-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "311a0233cdbfbcfbc0864d815cf28ca40cdb65acf3601f3bf943d6d04e867858", "md5": "5cd278107c3ab48567deaf007c2a16bc", "sha256": "5795a0375eb87bfe902e80e0c8cfaedf8af4d49694d69161e5bd3206c18618bb" }, "downloads": -1, "filename": "black-22.3.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5cd278107c3ab48567deaf007c2a16bc", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1339315, "upload_time": "2022-03-28T20:44:11", "upload_time_iso_8601": "2022-03-28T20:44:11.544212Z", "url": "https://files.pythonhosted.org/packages/31/1a/0233cdbfbcfbc0864d815cf28ca40cdb65acf3601f3bf943d6d04e867858/black-22.3.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4f988f775455f99a8e4b16d8d26efdc8292f99b1c0ebfe04357d800ff379c0ae", "md5": "7dc83a8dc3d6e351b8a81b9bf7d11255", "sha256": "e3556168e2e5c49629f7b0f377070240bd5511e45e25a4497bb0073d9dda776a" }, "downloads": -1, "filename": "black-22.3.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "7dc83a8dc3d6e351b8a81b9bf7d11255", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1212888, "upload_time": "2022-03-28T20:11:24", "upload_time_iso_8601": "2022-03-28T20:11:24.602295Z", "url": "https://files.pythonhosted.org/packages/4f/98/8f775455f99a8e4b16d8d26efdc8292f99b1c0ebfe04357d800ff379c0ae/black-22.3.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "93986f7c2f7f81d87b5771febcee933ba58640fca29a767262763bc353074f63", "md5": "a79ee9beaa3e3f1ef04ef37cd281f547", "sha256": "67c8301ec94e3bcc8906740fe071391bce40a862b7be0b86fb5382beefecd968" }, "downloads": -1, "filename": "black-22.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a79ee9beaa3e3f1ef04ef37cd281f547", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1474258, "upload_time": "2022-03-28T20:11:54", "upload_time_iso_8601": "2022-03-28T20:11:54.345393Z", "url": "https://files.pythonhosted.org/packages/93/98/6f7c2f7f81d87b5771febcee933ba58640fca29a767262763bc353074f63/black-22.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5f10613ddfc646a1f51f24ad9173e4969025210fe9034a69718f08297ecb9b76", "md5": "5ba8717efaaa7e89ae96c0fb9c87b1a8", "sha256": "fd57160949179ec517d32ac2ac898b5f20d68ed1a9c977346efbac9c2f1e779d" }, "downloads": -1, "filename": "black-22.3.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "5ba8717efaaa7e89ae96c0fb9c87b1a8", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1137867, "upload_time": "2022-03-28T20:12:09", "upload_time_iso_8601": "2022-03-28T20:12:09.990710Z", "url": "https://files.pythonhosted.org/packages/5f/10/613ddfc646a1f51f24ad9173e4969025210fe9034a69718f08297ecb9b76/black-22.3.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f7113818eb66303c9648e0f51899ec1e16d8576a36b855fdcb03a82311b57c62", "md5": "a449c58d14bd3b01d8714537a0ef36cb", "sha256": "cc1e1de68c8e5444e8f94c3670bb48a2beef0e91dddfd4fcc29595ebd90bb9ce" }, "downloads": -1, "filename": "black-22.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a449c58d14bd3b01d8714537a0ef36cb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.2", "size": 1265861, "upload_time": "2022-03-28T20:43:03", "upload_time_iso_8601": "2022-03-28T20:43:03.170215Z", "url": "https://files.pythonhosted.org/packages/f7/11/3818eb66303c9648e0f51899ec1e16d8576a36b855fdcb03a82311b57c62/black-22.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "59319840f395f901067555a21df7d279d86f31a562cae6ca7381079bc402d555", "md5": "643d71fe17b9f9084c2924a6e5153791", "sha256": "6d2fc92002d44746d3e7db7cf9313cf4452f43e9ea77a2c939defce3b10b5c82" }, "downloads": -1, "filename": "black-22.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "643d71fe17b9f9084c2924a6e5153791", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.2", "size": 1377621, "upload_time": "2022-03-28T20:05:52", "upload_time_iso_8601": "2022-03-28T20:05:52.687368Z", "url": "https://files.pythonhosted.org/packages/59/31/9840f395f901067555a21df7d279d86f31a562cae6ca7381079bc402d555/black-22.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "99041306d1c6328a32d8b38744899fdaba6218b9c6f3765b9b8f1be4855b80e8", "md5": "b5d4f96d48100c106f179d916f7bf048", "sha256": "a6342964b43a99dbc72f72812bf88cad8f0217ae9acb47c0d4f141a6416d2d7b" }, "downloads": -1, "filename": "black-22.3.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b5d4f96d48100c106f179d916f7bf048", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.2", "size": 1077028, "upload_time": "2022-03-28T20:06:36", "upload_time_iso_8601": "2022-03-28T20:06:36.239720Z", "url": "https://files.pythonhosted.org/packages/99/04/1306d1c6328a32d8b38744899fdaba6218b9c6f3765b9b8f1be4855b80e8/black-22.3.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0f1b200a8a1ae28ff798ec7e4bff65ca2713a917f913d2da1db0160622540af0", "md5": "c45a1f031bfe00fc46365e84624033cd", "sha256": "328efc0cc70ccb23429d6be184a15ce613f676bdfc85e5fe8ea2a9354b4e9015" }, "downloads": -1, "filename": "black-22.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c45a1f031bfe00fc46365e84624033cd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.2", "size": 1263256, "upload_time": "2022-03-28T20:43:20", "upload_time_iso_8601": "2022-03-28T20:43:20.619188Z", "url": "https://files.pythonhosted.org/packages/0f/1b/200a8a1ae28ff798ec7e4bff65ca2713a917f913d2da1db0160622540af0/black-22.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "43bafd965969581806c96110ce55855b7b4008678f5cbbf559c83db8aac30871", "md5": "a243d2a2f2afeb11a9cad4b3182826be", "sha256": "06f9d8846f2340dfac80ceb20200ea5d1b3f181dd0556b47af4e8e0b24fa0a6b" }, "downloads": -1, "filename": "black-22.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a243d2a2f2afeb11a9cad4b3182826be", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.2", "size": 1395029, "upload_time": "2022-03-28T20:06:59", "upload_time_iso_8601": "2022-03-28T20:06:59.724099Z", "url": "https://files.pythonhosted.org/packages/43/ba/fd965969581806c96110ce55855b7b4008678f5cbbf559c83db8aac30871/black-22.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ea5347023b5ecc539c890fc1ff187b08086298d081f5439ed64cbf7448d4aab8", "md5": "500c19a0f591d6d0e295821204388854", "sha256": "ad4efa5fad66b903b4a5f96d91461d90b9507a812b3c5de657d544215bb7877a" }, "downloads": -1, "filename": "black-22.3.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "500c19a0f591d6d0e295821204388854", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.2", "size": 1079277, "upload_time": "2022-03-28T20:07:15", "upload_time_iso_8601": "2022-03-28T20:07:15.223526Z", "url": "https://files.pythonhosted.org/packages/ea/53/47023b5ecc539c890fc1ff187b08086298d081f5439ed64cbf7448d4aab8/black-22.3.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a9644682e5c7ca539bef71cb9be592f649ff5f1e1134a8e72e2bff8632ade99d", "md5": "fdca92a2d42c564fc282b2f06d876850", "sha256": "e8477ec6bbfe0312c128e74644ac8a02ca06bcdb8982d4ee06f209be28cdf163" }, "downloads": -1, "filename": "black-22.3.0-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "fdca92a2d42c564fc282b2f06d876850", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 2367567, "upload_time": "2022-03-28T20:08:09", "upload_time_iso_8601": "2022-03-28T20:08:09.515376Z", "url": "https://files.pythonhosted.org/packages/a9/64/4682e5c7ca539bef71cb9be592f649ff5f1e1134a8e72e2bff8632ade99d/black-22.3.0-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "09c0e8e3695632ed25381cc71af6bae26187beb32817c3b78e7b486cb9a95c97", "md5": "a0e9530fa65b9768dcf4b0709ae958ca", "sha256": "637a4014c63fbf42a692d22b55d8ad6968a946b4a6ebc385c5505d9625b6a464" }, "downloads": -1, "filename": "black-22.3.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a0e9530fa65b9768dcf4b0709ae958ca", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1325109, "upload_time": "2022-03-28T20:43:40", "upload_time_iso_8601": "2022-03-28T20:43:40.096009Z", "url": "https://files.pythonhosted.org/packages/09/c0/e8e3695632ed25381cc71af6bae26187beb32817c3b78e7b486cb9a95c97/black-22.3.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "98a098fe3aee7a08c7c9d470e38326cefb86372fb08332125d5b0414a22ab49f", "md5": "9a5862416875e503f19e9aaf82aa8119", "sha256": "863714200ada56cbc366dc9ae5291ceb936573155f8bf8e9de92aef51f3ad0f0" }, "downloads": -1, "filename": "black-22.3.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "9a5862416875e503f19e9aaf82aa8119", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1197718, "upload_time": "2022-03-28T20:08:41", "upload_time_iso_8601": "2022-03-28T20:08:41.129329Z", "url": "https://files.pythonhosted.org/packages/98/a0/98fe3aee7a08c7c9d470e38326cefb86372fb08332125d5b0414a22ab49f/black-22.3.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "33bb8f662d8807eb66ceac021bdf777185c65b843bf1b75af8412e16af4df2ac", "md5": "fe9900561caa335ad8df5f08bd1396cf", "sha256": "10dbe6e6d2988049b4655b2b739f98785a884d4d6b85bc35133a8fb9a2233176" }, "downloads": -1, "filename": "black-22.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "fe9900561caa335ad8df5f08bd1396cf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1451926, "upload_time": "2022-03-28T20:09:01", "upload_time_iso_8601": "2022-03-28T20:09:01.368424Z", "url": "https://files.pythonhosted.org/packages/33/bb/8f662d8807eb66ceac021bdf777185c65b843bf1b75af8412e16af4df2ac/black-22.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7ec8ad41a7842f55b435b3f2c4c25ed8f2b74b01db79c074d6c97f34f2092e09", "md5": "89bac17075abadad8bac4f4407d2f327", "sha256": "cee3e11161dde1b2a33a904b850b0899e0424cc331b7295f2a9698e79f9a69a0" }, "downloads": -1, "filename": "black-22.3.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "89bac17075abadad8bac4f4407d2f327", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1149114, "upload_time": "2022-03-28T20:09:09", "upload_time_iso_8601": "2022-03-28T20:09:09.555383Z", "url": "https://files.pythonhosted.org/packages/7e/c8/ad41a7842f55b435b3f2c4c25ed8f2b74b01db79c074d6c97f34f2092e09/black-22.3.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a443940f848d7d1ecf0be18453a293e5736e9ce60fd6197386a791bcc491f232", "md5": "8303444259a86d6ec8f7e247bec2358d", "sha256": "5891ef8abc06576985de8fa88e95ab70641de6c1fca97e2a15820a9b69e51b20" }, "downloads": -1, "filename": "black-22.3.0-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "8303444259a86d6ec8f7e247bec2358d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 2390442, "upload_time": "2022-03-28T20:09:40", "upload_time_iso_8601": "2022-03-28T20:09:40.342105Z", "url": "https://files.pythonhosted.org/packages/a4/43/940f848d7d1ecf0be18453a293e5736e9ce60fd6197386a791bcc491f232/black-22.3.0-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e5b7e4e8907dffdac70f018ddb89681dbc77cbc7ac78d1f8a39259110a7e7943", "md5": "e03d54a9a941924d165ca54b1c8e7989", "sha256": "30d78ba6bf080eeaf0b7b875d924b15cd46fec5fd044ddfbad38c8ea9171043a" }, "downloads": -1, "filename": "black-22.3.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e03d54a9a941924d165ca54b1c8e7989", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1338106, "upload_time": "2022-03-28T20:43:55", "upload_time_iso_8601": "2022-03-28T20:43:55.947842Z", "url": "https://files.pythonhosted.org/packages/e5/b7/e4e8907dffdac70f018ddb89681dbc77cbc7ac78d1f8a39259110a7e7943/black-22.3.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5674c27c496223168af625d6bba8a14bc581e7742bf7248504a4b5743c374767", "md5": "cf90cd21aad4c7236cc96c48e4ede544", "sha256": "ee8f1f7228cce7dffc2b464f07ce769f478968bfb3dd1254a4c2eeed84928aad" }, "downloads": -1, "filename": "black-22.3.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "cf90cd21aad4c7236cc96c48e4ede544", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1212264, "upload_time": "2022-03-28T20:09:59", "upload_time_iso_8601": "2022-03-28T20:09:59.210837Z", "url": "https://files.pythonhosted.org/packages/56/74/c27c496223168af625d6bba8a14bc581e7742bf7248504a4b5743c374767/black-22.3.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "51ecc87695b087b7525fd9c7732c630455f231d3df9a300b730bd0e04ea00f84", "md5": "41ba400245fd8ba844adc3bb1a96ce37", "sha256": "6ee227b696ca60dd1c507be80a6bc849a5a6ab57ac7352aad1ffec9e8b805f21" }, "downloads": -1, "filename": "black-22.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "41ba400245fd8ba844adc3bb1a96ce37", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1473733, "upload_time": "2022-03-28T20:10:28", "upload_time_iso_8601": "2022-03-28T20:10:28.367558Z", "url": "https://files.pythonhosted.org/packages/51/ec/c87695b087b7525fd9c7732c630455f231d3df9a300b730bd0e04ea00f84/black-22.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5bf9e7aca76001a702dc258fb0443ca2553d5db13a3515c09062fbf344184363", "md5": "6b946b1dc7816a0345ba2254fa78428f", "sha256": "9b542ced1ec0ceeff5b37d69838106a6348e60db7b8fdd245294dc1d26136265" }, "downloads": -1, "filename": "black-22.3.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "6b946b1dc7816a0345ba2254fa78428f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1137278, "upload_time": "2022-03-28T20:10:42", "upload_time_iso_8601": "2022-03-28T20:10:42.963915Z", "url": "https://files.pythonhosted.org/packages/5b/f9/e7aca76001a702dc258fb0443ca2553d5db13a3515c09062fbf344184363/black-22.3.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2eefa38a2189959246543e60859fb65bd3143129f6d18dfc7bcdd79217f81ca2", "md5": "da2f5b3afc9b9f7b1a226ea27b281591", "sha256": "bc58025940a896d7e5356952228b68f793cf5fcb342be703c3a2669a1488cb72" }, "downloads": -1, "filename": "black-22.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "da2f5b3afc9b9f7b1a226ea27b281591", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 153859, "upload_time": "2022-03-28T19:10:42", "upload_time_iso_8601": "2022-03-28T19:10:42.199689Z", "url": "https://files.pythonhosted.org/packages/2e/ef/a38a2189959246543e60859fb65bd3143129f6d18dfc7bcdd79217f81ca2/black-22.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ee1fb29c7371958ab41a800f8718f5d285bf4333b8d0b5a5a8650234463ee644", "md5": "1ae8332ebbdc492dcb53c9e8df2ec4f9", "sha256": "35020b8886c022ced9282b51b5a875b6d1ab0c387b31a065b84db7c33085ca79" }, "downloads": -1, "filename": "black-22.3.0.tar.gz", "has_sig": false, "md5_digest": "1ae8332ebbdc492dcb53c9e8df2ec4f9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 554277, "upload_time": "2022-03-28T19:10:43", "upload_time_iso_8601": "2022-03-28T19:10:43.751358Z", "url": "https://files.pythonhosted.org/packages/ee/1f/b29c7371958ab41a800f8718f5d285bf4333b8d0b5a5a8650234463ee644/black-22.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "22.6.0": [ { "comment_text": "", "digests": { "blake2b_256": "80ffcfcfa4cdb42d8fff75b6b4dc355a1186a95de4714df8cc2a60f69f7b17f8", "md5": "e0d85095be9e2168a3ddc5fbaa945a70", "sha256": "f586c26118bc6e714ec58c09df0157fe2d9ee195c764f630eb0d8e7ccce72e69" }, "downloads": -1, "filename": "black-22.6.0-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "e0d85095be9e2168a3ddc5fbaa945a70", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 2435459, "upload_time": "2022-06-28T02:24:58", "upload_time_iso_8601": "2022-06-28T02:24:58.717280Z", "url": "https://files.pythonhosted.org/packages/80/ff/cfcfa4cdb42d8fff75b6b4dc355a1186a95de4714df8cc2a60f69f7b17f8/black-22.6.0-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6396814e02033701f51701444d5505b5e2594453b1f7e913764a097b1f701633", "md5": "e60b1e741f8d6634483231ebb9d9515b", "sha256": "b270a168d69edb8b7ed32c193ef10fd27844e5c60852039599f9184460ce0807" }, "downloads": -1, "filename": "black-22.6.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e60b1e741f8d6634483231ebb9d9515b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1363220, "upload_time": "2022-06-28T02:31:10", "upload_time_iso_8601": "2022-06-28T02:31:10.519576Z", "url": "https://files.pythonhosted.org/packages/63/96/814e02033701f51701444d5505b5e2594453b1f7e913764a097b1f701633/black-22.6.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1a84203163902ee26bcf1beaef582ee0c8df3f325da3e961b68d2ece959e19d3", "md5": "c5e7dd9a5389a3930f2b3479cbcd497e", "sha256": "6797f58943fceb1c461fb572edbe828d811e719c24e03375fd25170ada53825e" }, "downloads": -1, "filename": "black-22.6.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "c5e7dd9a5389a3930f2b3479cbcd497e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1231890, "upload_time": "2022-06-28T01:51:24", "upload_time_iso_8601": "2022-06-28T01:51:24.804452Z", "url": "https://files.pythonhosted.org/packages/1a/84/203163902ee26bcf1beaef582ee0c8df3f325da3e961b68d2ece959e19d3/black-22.6.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a751d0acd9f74a946a825a148dcc392433c2332ae405967d76292b9e64712dc8", "md5": "1d14ccd1d0e87583e8372e811f290aa7", "sha256": "c85928b9d5f83b23cee7d0efcb310172412fbf7cb9d9ce963bd67fd141781def" }, "downloads": -1, "filename": "black-22.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1d14ccd1d0e87583e8372e811f290aa7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1501359, "upload_time": "2022-06-28T01:51:39", "upload_time_iso_8601": "2022-06-28T01:51:39.962203Z", "url": "https://files.pythonhosted.org/packages/a7/51/d0acd9f74a946a825a148dcc392433c2332ae405967d76292b9e64712dc8/black-22.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "869c2a8a13993bc63a50bda7436ecba902231fd9a88dd1cd233e6e3f534e071c", "md5": "cc31b3081ee9d1f12ef0400ea55808ee", "sha256": "f6fe02afde060bbeef044af7996f335fbe90b039ccf3f5eb8f16df8b20f77666" }, "downloads": -1, "filename": "black-22.6.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "cc31b3081ee9d1f12ef0400ea55808ee", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1157141, "upload_time": "2022-06-28T01:51:48", "upload_time_iso_8601": "2022-06-28T01:51:48.375014Z", "url": "https://files.pythonhosted.org/packages/86/9c/2a8a13993bc63a50bda7436ecba902231fd9a88dd1cd233e6e3f534e071c/black-22.6.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8a9069274ed80397ada663ce3c4cc0c70b7fb20b529f9baf4bf9ddf4edc14ccd", "md5": "4a2ffc21b0064dfaea9c20a01b340c7c", "sha256": "cfaf3895a9634e882bf9d2363fed5af8888802d670f58b279b0bece00e9a872d" }, "downloads": -1, "filename": "black-22.6.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4a2ffc21b0064dfaea9c20a01b340c7c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.2", "size": 1288121, "upload_time": "2022-06-28T02:31:12", "upload_time_iso_8601": "2022-06-28T02:31:12.409569Z", "url": "https://files.pythonhosted.org/packages/8a/90/69274ed80397ada663ce3c4cc0c70b7fb20b529f9baf4bf9ddf4edc14ccd/black-22.6.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d645985c13ac6b2f67504cda61fc1d95365eb6446a4c6988ffe0f0f311f7a617", "md5": "f3a247c423984ee210581cdb0d36382c", "sha256": "94783f636bca89f11eb5d50437e8e17fbc6a929a628d82304c80fa9cd945f256" }, "downloads": -1, "filename": "black-22.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f3a247c423984ee210581cdb0d36382c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.2", "size": 1401360, "upload_time": "2022-06-28T01:47:53", "upload_time_iso_8601": "2022-06-28T01:47:53.652283Z", "url": "https://files.pythonhosted.org/packages/d6/45/985c13ac6b2f67504cda61fc1d95365eb6446a4c6988ffe0f0f311f7a617/black-22.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "57622961a0a57bdf768ccb5aea16327400be6e6bde4fb47ac05af7e9535c5289", "md5": "20a0f6e0ce29397cf3434dbb9beca98e", "sha256": "2ea29072e954a4d55a2ff58971b83365eba5d3d357352a07a7a4df0d95f51c78" }, "downloads": -1, "filename": "black-22.6.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "20a0f6e0ce29397cf3434dbb9beca98e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.2", "size": 1096554, "upload_time": "2022-06-28T01:48:03", "upload_time_iso_8601": "2022-06-28T01:48:03.742424Z", "url": "https://files.pythonhosted.org/packages/57/62/2961a0a57bdf768ccb5aea16327400be6e6bde4fb47ac05af7e9535c5289/black-22.6.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ac9db06f45e8dff2b10bf4644ba7a74490538c0272ae48308e04c6f551671b89", "md5": "e81f4fd8f188b7bcf9ee97b212eebd08", "sha256": "e439798f819d49ba1c0bd9664427a05aab79bfba777a6db94fd4e56fae0cb849" }, "downloads": -1, "filename": "black-22.6.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e81f4fd8f188b7bcf9ee97b212eebd08", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.2", "size": 1287218, "upload_time": "2022-06-28T02:31:15", "upload_time_iso_8601": "2022-06-28T02:31:15.052864Z", "url": "https://files.pythonhosted.org/packages/ac/9d/b06f45e8dff2b10bf4644ba7a74490538c0272ae48308e04c6f551671b89/black-22.6.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "40d13f366d7887d1fb6e3e487a6c975a9e9e13618757ed0d5427197fa9e28290", "md5": "61c6e2661000cd5899a8058fc8781082", "sha256": "187d96c5e713f441a5829e77120c269b6514418f4513a390b0499b0987f2ff1c" }, "downloads": -1, "filename": "black-22.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "61c6e2661000cd5899a8058fc8781082", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.2", "size": 1418940, "upload_time": "2022-06-28T01:48:13", "upload_time_iso_8601": "2022-06-28T01:48:13.357261Z", "url": "https://files.pythonhosted.org/packages/40/d1/3f366d7887d1fb6e3e487a6c975a9e9e13618757ed0d5427197fa9e28290/black-22.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "46ebf489451de8b3e91bd82ee722b9a8493b94f8719ea6649e5b8bba2376056d", "md5": "518ace4e9ad821ccad341746613f07bb", "sha256": "074458dc2f6e0d3dab7928d4417bb6957bb834434516f21514138437accdbe90" }, "downloads": -1, "filename": "black-22.6.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "518ace4e9ad821ccad341746613f07bb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.2", "size": 1100388, "upload_time": "2022-06-28T01:48:22", "upload_time_iso_8601": "2022-06-28T01:48:22.874353Z", "url": "https://files.pythonhosted.org/packages/46/eb/f489451de8b3e91bd82ee722b9a8493b94f8719ea6649e5b8bba2376056d/black-22.6.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "07eba757135497a3be31ab8c00ef239070c7277ad11b618104950a756bcab3c1", "md5": "d82a75ffd6628886151fb3d3b1d3f98f", "sha256": "a218d7e5856f91d20f04e931b6f16d15356db1c846ee55f01bac297a705ca24f" }, "downloads": -1, "filename": "black-22.6.0-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "d82a75ffd6628886151fb3d3b1d3f98f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 2408045, "upload_time": "2022-06-28T02:24:06", "upload_time_iso_8601": "2022-06-28T02:24:06.714718Z", "url": "https://files.pythonhosted.org/packages/07/eb/a757135497a3be31ab8c00ef239070c7277ad11b618104950a756bcab3c1/black-22.6.0-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3efd5e47b4d77549909e484de906a69fccc3fcfb782131d8b449073ad8b3ed3e", "md5": "a315b0e1a94b9b00f64ea77c1fa8d581", "sha256": "568ac3c465b1c8b34b61cd7a4e349e93f91abf0f9371eda1cf87194663ab684e" }, "downloads": -1, "filename": "black-22.6.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a315b0e1a94b9b00f64ea77c1fa8d581", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1348354, "upload_time": "2022-06-28T02:31:17", "upload_time_iso_8601": "2022-06-28T02:31:17.296078Z", "url": "https://files.pythonhosted.org/packages/3e/fd/5e47b4d77549909e484de906a69fccc3fcfb782131d8b449073ad8b3ed3e/black-22.6.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e7fe4533d110ddced851a359cbbb162685814719690ee01939a34be023410854", "md5": "60045373fe6822d4e8d7a6a69a7ead22", "sha256": "6c1734ab264b8f7929cef8ae5f900b85d579e6cbfde09d7387da8f04771b51c6" }, "downloads": -1, "filename": "black-22.6.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "60045373fe6822d4e8d7a6a69a7ead22", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1218903, "upload_time": "2022-06-28T01:48:33", "upload_time_iso_8601": "2022-06-28T01:48:33.350990Z", "url": "https://files.pythonhosted.org/packages/e7/fe/4533d110ddced851a359cbbb162685814719690ee01939a34be023410854/black-22.6.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "fc37032c45b55f901ee3fe780fbc17fe2dc262c809d94de1288201350d8d680b", "md5": "e0b64fc9f6035f32e5fefb487d775c31", "sha256": "c9a3ac16efe9ec7d7381ddebcc022119794872abce99475345c5a61aa18c45ad" }, "downloads": -1, "filename": "black-22.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e0b64fc9f6035f32e5fefb487d775c31", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1478745, "upload_time": "2022-06-28T01:48:47", "upload_time_iso_8601": "2022-06-28T01:48:47.074582Z", "url": "https://files.pythonhosted.org/packages/fc/37/032c45b55f901ee3fe780fbc17fe2dc262c809d94de1288201350d8d680b/black-22.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c467a4e9125bf1a4eb5a2624b3b979af2dc6ee8d3c4ee0b3d2867173db4916fa", "md5": "69d795725e13ce89bf66a19e7c5bd939", "sha256": "b9fd45787ba8aa3f5e0a0a98920c1012c884622c6c920dbe98dbd05bc7c70fbf" }, "downloads": -1, "filename": "black-22.6.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "69d795725e13ce89bf66a19e7c5bd939", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1170599, "upload_time": "2022-06-28T01:50:38", "upload_time_iso_8601": "2022-06-28T01:50:38.886013Z", "url": "https://files.pythonhosted.org/packages/c4/67/a4e9125bf1a4eb5a2624b3b979af2dc6ee8d3c4ee0b3d2867173db4916fa/black-22.6.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1dd2bc58bae8ec35f5a3c796d71d5bda113060678483e623a019fb889edd8d97", "md5": "90a3ff4e8cbc49b4c3e8438cd71ae58b", "sha256": "7ba9be198ecca5031cd78745780d65a3f75a34b2ff9be5837045dce55db83d1c" }, "downloads": -1, "filename": "black-22.6.0-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "90a3ff4e8cbc49b4c3e8438cd71ae58b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 2434759, "upload_time": "2022-06-28T02:24:33", "upload_time_iso_8601": "2022-06-28T02:24:33.720485Z", "url": "https://files.pythonhosted.org/packages/1d/d2/bc58bae8ec35f5a3c796d71d5bda113060678483e623a019fb889edd8d97/black-22.6.0-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "9b22ff6d904dcb6f92bd7c20b178ed0aa9e6814ae6452df6c573806dbc465b85", "md5": "8fbb006e0f84d5e324ede0082d850387", "sha256": "a3db5b6409b96d9bd543323b23ef32a1a2b06416d525d27e0f67e74f1446c8f2" }, "downloads": -1, "filename": "black-22.6.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8fbb006e0f84d5e324ede0082d850387", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1362730, "upload_time": "2022-06-28T02:31:19", "upload_time_iso_8601": "2022-06-28T02:31:19.388382Z", "url": "https://files.pythonhosted.org/packages/9b/22/ff6d904dcb6f92bd7c20b178ed0aa9e6814ae6452df6c573806dbc465b85/black-22.6.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "19b013864fd5f3090ca5379f3dcf6034f1e4f02b59620e7b8b5c6f0c85622c0b", "md5": "0f10287340cd1b2b0fceacc68b2b5854", "sha256": "560558527e52ce8afba936fcce93a7411ab40c7d5fe8c2463e279e843c0328ee" }, "downloads": -1, "filename": "black-22.6.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "0f10287340cd1b2b0fceacc68b2b5854", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1231807, "upload_time": "2022-06-28T01:50:51", "upload_time_iso_8601": "2022-06-28T01:50:51.181562Z", "url": "https://files.pythonhosted.org/packages/19/b0/13864fd5f3090ca5379f3dcf6034f1e4f02b59620e7b8b5c6f0c85622c0b/black-22.6.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2bd97331e50dad8d5149a9e2285766960ac6b732ae9b3b9796e10916ad88ff61", "md5": "e8ff00d874f817376f071c771fcb2883", "sha256": "b154e6bbde1e79ea3260c4b40c0b7b3109ffcdf7bc4ebf8859169a6af72cd70b" }, "downloads": -1, "filename": "black-22.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e8ff00d874f817376f071c771fcb2883", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1501134, "upload_time": "2022-06-28T01:51:02", "upload_time_iso_8601": "2022-06-28T01:51:02.221004Z", "url": "https://files.pythonhosted.org/packages/2b/d9/7331e50dad8d5149a9e2285766960ac6b732ae9b3b9796e10916ad88ff61/black-22.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5533752544332a2d3be0f6d54ef808075681b68ddc15cfcb90ff128f2d30c85c", "md5": "b58f12edb10d0bf1680fa9b8130bc673", "sha256": "4af5bc0e1f96be5ae9bd7aaec219c901a94d6caa2484c21983d043371c733fc4" }, "downloads": -1, "filename": "black-22.6.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "b58f12edb10d0bf1680fa9b8130bc673", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1156530, "upload_time": "2022-06-28T01:51:12", "upload_time_iso_8601": "2022-06-28T01:51:12.350757Z", "url": "https://files.pythonhosted.org/packages/55/33/752544332a2d3be0f6d54ef808075681b68ddc15cfcb90ff128f2d30c85c/black-22.6.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2b701d0e33a4df4ed73e9f02f698a29b5d94ff58e39f029c939ecf96a10fb1f3", "md5": "15a436a7ba05f2722e3d2aa4853e672a", "sha256": "ac609cf8ef5e7115ddd07d85d988d074ed00e10fbc3445aee393e70164a2219c" }, "downloads": -1, "filename": "black-22.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "15a436a7ba05f2722e3d2aa4853e672a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 156271, "upload_time": "2022-06-28T00:39:54", "upload_time_iso_8601": "2022-06-28T00:39:54.732182Z", "url": "https://files.pythonhosted.org/packages/2b/70/1d0e33a4df4ed73e9f02f698a29b5d94ff58e39f029c939ecf96a10fb1f3/black-22.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6111551b0d067a7e6836fc0997ab36ee46ec65259fea8f30104f4870092f3301", "md5": "f99b27d39fb6da9a186f668413b7ab00", "sha256": "6c6d39e28aed379aec40da1c65434c77d75e65bb59a1e1c283de545fb4e7c6c9" }, "downloads": -1, "filename": "black-22.6.0.tar.gz", "has_sig": false, "md5_digest": "f99b27d39fb6da9a186f668413b7ab00", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 566106, "upload_time": "2022-06-28T00:39:56", "upload_time_iso_8601": "2022-06-28T00:39:56.470381Z", "url": "https://files.pythonhosted.org/packages/61/11/551b0d067a7e6836fc0997ab36ee46ec65259fea8f30104f4870092f3301/black-22.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "22.8.0": [ { "comment_text": "", "digests": { "blake2b_256": "67e9d6e8365eae2dd2b0d9fcdff129a88ab316a545ab44445c92ae8353c7f5ef", "md5": "f39aa77e911d3bc921e4ab00a2b79bd7", "sha256": "ce957f1d6b78a8a231b18e0dd2d94a33d2ba738cd88a7fe64f53f659eea49fdd" }, "downloads": -1, "filename": "black-22.8.0-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "f39aa77e911d3bc921e4ab00a2b79bd7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 2476778, "upload_time": "2022-08-31T23:09:52", "upload_time_iso_8601": "2022-08-31T23:09:52.640122Z", "url": "https://files.pythonhosted.org/packages/67/e9/d6e8365eae2dd2b0d9fcdff129a88ab316a545ab44445c92ae8353c7f5ef/black-22.8.0-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b9d27476c40f3ed871047e5ef4e27a6e946b3aac5357fe9a2e08548c95b79327", "md5": "769a25e7d01370fe2b56bdd5a37f4e02", "sha256": "5107ea36b2b61917956d018bd25129baf9ad1125e39324a9b18248d362156a27" }, "downloads": -1, "filename": "black-22.8.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "769a25e7d01370fe2b56bdd5a37f4e02", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1403144, "upload_time": "2022-08-31T23:15:39", "upload_time_iso_8601": "2022-08-31T23:15:39.083552Z", "url": "https://files.pythonhosted.org/packages/b9/d2/7476c40f3ed871047e5ef4e27a6e946b3aac5357fe9a2e08548c95b79327/black-22.8.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0e08daaae4173461abc664563e651a1e3c5edc9570ca03283793a444becb9c2f", "md5": "cca499bfb3b6db9a659fd7995a7aa233", "sha256": "e8166b7bfe5dcb56d325385bd1d1e0f635f24aae14b3ae437102dedc0c186747" }, "downloads": -1, "filename": "black-22.8.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "cca499bfb3b6db9a659fd7995a7aa233", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1238447, "upload_time": "2022-08-31T23:01:22", "upload_time_iso_8601": "2022-08-31T23:01:22.675406Z", "url": "https://files.pythonhosted.org/packages/0e/08/daaae4173461abc664563e651a1e3c5edc9570ca03283793a444becb9c2f/black-22.8.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d50ac86b68b24812deaceb48dc7e335fde0f1289e04171ef2fc5ff8eecc50102", "md5": "9eb69ab841aadaa966f5694b64485876", "sha256": "dd82842bb272297503cbec1a2600b6bfb338dae017186f8f215c8958f8acf869" }, "downloads": -1, "filename": "black-22.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "9eb69ab841aadaa966f5694b64485876", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1529233, "upload_time": "2022-08-31T22:55:24", "upload_time_iso_8601": "2022-08-31T22:55:24.861281Z", "url": "https://files.pythonhosted.org/packages/d5/0a/c86b68b24812deaceb48dc7e335fde0f1289e04171ef2fc5ff8eecc50102/black-22.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "869c25cab63ed9440df5dba7688d4b55123f4bb352dc48ddf93d2b32c882dbe1", "md5": "396c0a1811fcfd0e13aef933ddd92b78", "sha256": "d839150f61d09e7217f52917259831fe2b689f5c8e5e32611736351b89bb2a90" }, "downloads": -1, "filename": "black-22.8.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "396c0a1811fcfd0e13aef933ddd92b78", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6.2", "size": 1191248, "upload_time": "2022-08-31T23:04:28", "upload_time_iso_8601": "2022-08-31T23:04:28.384816Z", "url": "https://files.pythonhosted.org/packages/86/9c/25cab63ed9440df5dba7688d4b55123f4bb352dc48ddf93d2b32c882dbe1/black-22.8.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6364fc6167e4ac4547d6eb9dd31be54979553e95816df5cc889b2680556c3898", "md5": "4ebc56df38fbb2da9aa78f25c506c2aa", "sha256": "a05da0430bd5ced89176db098567973be52ce175a55677436a271102d7eaa3fe" }, "downloads": -1, "filename": "black-22.8.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4ebc56df38fbb2da9aa78f25c506c2aa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.2", "size": 1323459, "upload_time": "2022-08-31T23:15:40", "upload_time_iso_8601": "2022-08-31T23:15:40.996809Z", "url": "https://files.pythonhosted.org/packages/63/64/fc6167e4ac4547d6eb9dd31be54979553e95816df5cc889b2680556c3898/black-22.8.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "18bdf6500e0ff2d2233863d36882418d9928ca7e2532a26a0ac16e2681bf5631", "md5": "a97ee263e03707da735fdfb9cb730297", "sha256": "4a098a69a02596e1f2a58a2a1c8d5a05d5a74461af552b371e82f9fa4ada8342" }, "downloads": -1, "filename": "black-22.8.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a97ee263e03707da735fdfb9cb730297", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.2", "size": 1439340, "upload_time": "2022-08-31T22:55:26", "upload_time_iso_8601": "2022-08-31T22:55:26.865997Z", "url": "https://files.pythonhosted.org/packages/18/bd/f6500e0ff2d2233863d36882418d9928ca7e2532a26a0ac16e2681bf5631/black-22.8.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "228c395e63013297e567253b70ae36460038d47643c3cfaa25180e86dee04344", "md5": "854180b721ff5de616224a1035cfe6b7", "sha256": "5594efbdc35426e35a7defa1ea1a1cb97c7dbd34c0e49af7fb593a36bd45edab" }, "downloads": -1, "filename": "black-22.8.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "854180b721ff5de616224a1035cfe6b7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6.2", "size": 1128967, "upload_time": "2022-08-31T23:04:29", "upload_time_iso_8601": "2022-08-31T23:04:29.794592Z", "url": "https://files.pythonhosted.org/packages/22/8c/395e63013297e567253b70ae36460038d47643c3cfaa25180e86dee04344/black-22.8.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7503e68f2051e0ea06db2ce57151387dd34acf35beb3d67936823c1b928a0522", "md5": "28da1045515d89deb2099ab330c8b9ee", "sha256": "a983526af1bea1e4cf6768e649990f28ee4f4137266921c2c3cee8116ae42ec3" }, "downloads": -1, "filename": "black-22.8.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "28da1045515d89deb2099ab330c8b9ee", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.2", "size": 1335116, "upload_time": "2022-08-31T23:15:42", "upload_time_iso_8601": "2022-08-31T23:15:42.732359Z", "url": "https://files.pythonhosted.org/packages/75/03/e68f2051e0ea06db2ce57151387dd34acf35beb3d67936823c1b928a0522/black-22.8.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "36872e2ebe732de20a85ad50732da070e19c06de28505a4a40d12d25d66dba6d", "md5": "5b07ed54d600f610abf70343cfb4d538", "sha256": "3b2c25f8dea5e8444bdc6788a2f543e1fb01494e144480bc17f806178378005e" }, "downloads": -1, "filename": "black-22.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5b07ed54d600f610abf70343cfb4d538", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.2", "size": 1455235, "upload_time": "2022-08-31T22:55:28", "upload_time_iso_8601": "2022-08-31T22:55:28.959435Z", "url": "https://files.pythonhosted.org/packages/36/87/2e2ebe732de20a85ad50732da070e19c06de28505a4a40d12d25d66dba6d/black-22.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "17875842bd8d3451131ad56aad8b6a680cc60034cb32a67cb7a4c930d73b55b4", "md5": "6352b351169ba28822a13247e3baca05", "sha256": "78dd85caaab7c3153054756b9fe8c611efa63d9e7aecfa33e533060cb14b6d16" }, "downloads": -1, "filename": "black-22.8.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6352b351169ba28822a13247e3baca05", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6.2", "size": 1131973, "upload_time": "2022-08-31T23:04:31", "upload_time_iso_8601": "2022-08-31T23:04:31.300921Z", "url": "https://files.pythonhosted.org/packages/17/87/5842bd8d3451131ad56aad8b6a680cc60034cb32a67cb7a4c930d73b55b4/black-22.8.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d5082dbe5c8e5d251fad5b06494a113940232716246e973ca33a44e59b7f1dbd", "md5": "e459814b1364b0f629ec8f57a4c88a46", "sha256": "cea1b2542d4e2c02c332e83150e41e3ca80dc0fb8de20df3c5e98e242156222c" }, "downloads": -1, "filename": "black-22.8.0-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "e459814b1364b0f629ec8f57a4c88a46", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 2462260, "upload_time": "2022-08-31T23:09:54", "upload_time_iso_8601": "2022-08-31T23:09:54.607140Z", "url": "https://files.pythonhosted.org/packages/d5/08/2dbe5c8e5d251fad5b06494a113940232716246e973ca33a44e59b7f1dbd/black-22.8.0-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a53fc6da8f60962de05c7e5026ce5963a102b0d6ef38884bf9ee825c09b8d0b4", "md5": "35a9ae6c8a5be9d602bcbf5ce8a8a5fa", "sha256": "5b879eb439094751185d1cfdca43023bc6786bd3c60372462b6f051efa6281a5" }, "downloads": -1, "filename": "black-22.8.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "35a9ae6c8a5be9d602bcbf5ce8a8a5fa", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1392903, "upload_time": "2022-08-31T23:15:44", "upload_time_iso_8601": "2022-08-31T23:15:44.266873Z", "url": "https://files.pythonhosted.org/packages/a5/3f/c6da8f60962de05c7e5026ce5963a102b0d6ef38884bf9ee825c09b8d0b4/black-22.8.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "df9f1a01c38b187bf49ddf97872932c4ef4f87065e08b037efbe72f3f824970d", "md5": "20f0d2605f375e6515ee51506ebbd8ea", "sha256": "0a12e4e1353819af41df998b02c6742643cfef58282915f781d0e4dd7a200411" }, "downloads": -1, "filename": "black-22.8.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "20f0d2605f375e6515ee51506ebbd8ea", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1230602, "upload_time": "2022-08-31T23:01:24", "upload_time_iso_8601": "2022-08-31T23:01:24.752929Z", "url": "https://files.pythonhosted.org/packages/df/9f/1a01c38b187bf49ddf97872932c4ef4f87065e08b037efbe72f3f824970d/black-22.8.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c1225d7cd0cd1c6ce136fd8dbac3f83a260723b3022cfcc0496a84f2a14c7b9a", "md5": "670fdbbd14e7beadfe5e38a8db484979", "sha256": "c3a73f66b6d5ba7288cd5d6dad9b4c9b43f4e8a4b789a94bf5abfb878c663eb3" }, "downloads": -1, "filename": "black-22.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "670fdbbd14e7beadfe5e38a8db484979", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1519325, "upload_time": "2022-08-31T22:55:30", "upload_time_iso_8601": "2022-08-31T22:55:30.627322Z", "url": "https://files.pythonhosted.org/packages/c1/22/5d7cd0cd1c6ce136fd8dbac3f83a260723b3022cfcc0496a84f2a14c7b9a/black-22.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3da43eaab92ec893d7890966e4a2f7c4e3e4e6b94b4df50e4b93d2ce33180276", "md5": "0fadceca227e5e8e790ccb5aca04fe93", "sha256": "e981e20ec152dfb3e77418fb616077937378b322d7b26aa1ff87717fb18b4875" }, "downloads": -1, "filename": "black-22.8.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "0fadceca227e5e8e790ccb5aca04fe93", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6.2", "size": 1197229, "upload_time": "2022-08-31T23:04:32", "upload_time_iso_8601": "2022-08-31T23:04:32.862553Z", "url": "https://files.pythonhosted.org/packages/3d/a4/3eaab92ec893d7890966e4a2f7c4e3e4e6b94b4df50e4b93d2ce33180276/black-22.8.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4d44466ae995a55a5c8d5914e0f02520cb64710fbc3e2df8eddc4d2a54bf6a7e", "md5": "29216097c66790a8862c73c2dae57c41", "sha256": "8ce13ffed7e66dda0da3e0b2eb1bdfc83f5812f66e09aca2b0978593ed636b6c" }, "downloads": -1, "filename": "black-22.8.0-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "29216097c66790a8862c73c2dae57c41", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 2476218, "upload_time": "2022-08-31T23:09:56", "upload_time_iso_8601": "2022-08-31T23:09:56.469042Z", "url": "https://files.pythonhosted.org/packages/4d/44/466ae995a55a5c8d5914e0f02520cb64710fbc3e2df8eddc4d2a54bf6a7e/black-22.8.0-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "180963714f5c9d4d7e04c6c04603ce7fb69bf746f69caed0a3416e41bf2db168", "md5": "016f8eae55a7718a5c0801136bf05fc1", "sha256": "32a4b17f644fc288c6ee2bafdf5e3b045f4eff84693ac069d87b1a347d861497" }, "downloads": -1, "filename": "black-22.8.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "016f8eae55a7718a5c0801136bf05fc1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1402883, "upload_time": "2022-08-31T23:15:45", "upload_time_iso_8601": "2022-08-31T23:15:45.963023Z", "url": "https://files.pythonhosted.org/packages/18/09/63714f5c9d4d7e04c6c04603ce7fb69bf746f69caed0a3416e41bf2db168/black-22.8.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d4a1dc7bc3cc5eef263625532176015d65033425af8187b732ef2495a1cfa597", "md5": "f769648a921fe922af33ac5247f6702d", "sha256": "0ad827325a3a634bae88ae7747db1a395d5ee02cf05d9aa7a9bd77dfb10e940c" }, "downloads": -1, "filename": "black-22.8.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "f769648a921fe922af33ac5247f6702d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1238091, "upload_time": "2022-08-31T23:01:26", "upload_time_iso_8601": "2022-08-31T23:01:26.436492Z", "url": "https://files.pythonhosted.org/packages/d4/a1/dc7bc3cc5eef263625532176015d65033425af8187b732ef2495a1cfa597/black-22.8.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "712c73563faaf6c8aeb31954b8e83b3284bb01ac0ec58110ed84ecec95a055f4", "md5": "947189e8890e84ab184bb786f685eab3", "sha256": "53198e28a1fb865e9fe97f88220da2e44df6da82b18833b588b1883b16bb5d41" }, "downloads": -1, "filename": "black-22.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "947189e8890e84ab184bb786f685eab3", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1529230, "upload_time": "2022-08-31T22:55:32", "upload_time_iso_8601": "2022-08-31T22:55:32.208187Z", "url": "https://files.pythonhosted.org/packages/71/2c/73563faaf6c8aeb31954b8e83b3284bb01ac0ec58110ed84ecec95a055f4/black-22.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "05b19bd51244802560ea3cae386fd7c4b3dc104f3da2c71d9cebe0dd9a58cf21", "md5": "478adfd2578c4f673d28e4dfad41abd5", "sha256": "bc4d4123830a2d190e9cc42a2e43570f82ace35c3aeb26a512a2102bce5af7ec" }, "downloads": -1, "filename": "black-22.8.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "478adfd2578c4f673d28e4dfad41abd5", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6.2", "size": 1190507, "upload_time": "2022-08-31T23:04:34", "upload_time_iso_8601": "2022-08-31T23:04:34.858899Z", "url": "https://files.pythonhosted.org/packages/05/b1/9bd51244802560ea3cae386fd7c4b3dc104f3da2c71d9cebe0dd9a58cf21/black-22.8.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c663a852b07abc942dc069b5457af40feca82667cf5ed9faec7d4688a4d9c7da", "md5": "7731acf64d37392bba2e585eacfad8a1", "sha256": "d2c21d439b2baf7aa80d6dd4e3659259be64c6f49dfd0f32091063db0e006db4" }, "downloads": -1, "filename": "black-22.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7731acf64d37392bba2e585eacfad8a1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6.2", "size": 159824, "upload_time": "2022-08-31T22:47:17", "upload_time_iso_8601": "2022-08-31T22:47:17.785562Z", "url": "https://files.pythonhosted.org/packages/c6/63/a852b07abc942dc069b5457af40feca82667cf5ed9faec7d4688a4d9c7da/black-22.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3a1b38a013f75022fae724ed766fdac5f6777544c45eecbe00a6d8fd91a2a26b", "md5": "813e7304adf003fc4e7faa68bc0e1c1d", "sha256": "792f7eb540ba9a17e8656538701d3eb1afcb134e3b45b71f20b25c77a8db7e6e" }, "downloads": -1, "filename": "black-22.8.0.tar.gz", "has_sig": false, "md5_digest": "813e7304adf003fc4e7faa68bc0e1c1d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.2", "size": 577317, "upload_time": "2022-08-31T22:47:19", "upload_time_iso_8601": "2022-08-31T22:47:19.804213Z", "url": "https://files.pythonhosted.org/packages/3a/1b/38a013f75022fae724ed766fdac5f6777544c45eecbe00a6d8fd91a2a26b/black-22.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "23.1.0": [ { "comment_text": "", "digests": { "blake2b_256": "d0cb0a38ffdafbb4b3f337adaf1b79aeaf4b8a21ed18835acad6349e46c78c80", "md5": "65b71b8a3593c0bba900c98784fec9ec", "sha256": "b6a92a41ee34b883b359998f0c8e6eb8e99803aa8bf3123bf2b2e6fec505a221" }, "downloads": -1, "filename": "black-23.1.0-cp310-cp310-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "65b71b8a3593c0bba900c98784fec9ec", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1296386, "upload_time": "2023-02-01T03:09:22", "upload_time_iso_8601": "2023-02-01T03:09:22.755809Z", "url": "https://files.pythonhosted.org/packages/d0/cb/0a38ffdafbb4b3f337adaf1b79aeaf4b8a21ed18835acad6349e46c78c80/black-23.1.0-cp310-cp310-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3ec0abc7031d670d211e4e2a063910d587dfcb62ce469631e779b23b66653442", "md5": "de943578f6aa963236c14264d745db1e", "sha256": "57c18c5165c1dbe291d5306e53fb3988122890e57bd9b3dcb75f967f13411a26" }, "downloads": -1, "filename": "black-23.1.0-cp310-cp310-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "de943578f6aa963236c14264d745db1e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 2589624, "upload_time": "2023-02-01T03:12:47", "upload_time_iso_8601": "2023-02-01T03:12:47.095588Z", "url": "https://files.pythonhosted.org/packages/3e/c0/abc7031d670d211e4e2a063910d587dfcb62ce469631e779b23b66653442/black-23.1.0-cp310-cp310-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "cffedda4b7eedb9d4dc46e306b814f7838cd9026907fdc889f75eb9f6d47d414", "md5": "198468c5734e5ba96b3fd0fd9e3744de", "sha256": "9880d7d419bb7e709b37e28deb5e68a49227713b623c72b2b931028ea65f619b" }, "downloads": -1, "filename": "black-23.1.0-cp310-cp310-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "198468c5734e5ba96b3fd0fd9e3744de", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1471366, "upload_time": "2023-02-01T03:12:05", "upload_time_iso_8601": "2023-02-01T03:12:05.351826Z", "url": "https://files.pythonhosted.org/packages/cf/fe/dda4b7eedb9d4dc46e306b814f7838cd9026907fdc889f75eb9f6d47d414/black-23.1.0-cp310-cp310-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "bef911e401323cd5b4e53d138fc880564765466a86acd2d4b50d7c8cdd048c18", "md5": "f7ecb1c631394fc8641f129a01524818", "sha256": "e6663f91b6feca5d06f2ccd49a10f254f9298cc1f7f49c46e498a0771b507104" }, "downloads": -1, "filename": "black-23.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f7ecb1c631394fc8641f129a01524818", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1601682, "upload_time": "2023-02-01T03:05:17", "upload_time_iso_8601": "2023-02-01T03:05:17.567463Z", "url": "https://files.pythonhosted.org/packages/be/f9/11e401323cd5b4e53d138fc880564765466a86acd2d4b50d7c8cdd048c18/black-23.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2d9aa81bf384a08d8a5e13d97223a60a74ac3c16c0aecdbd85edbc662d158bde", "md5": "77ab6fcc93e6a96bd03741108e7173ad", "sha256": "9afd3f493666a0cd8f8df9a0200c6359ac53940cbde049dcb1a7eb6ee2dd7074" }, "downloads": -1, "filename": "black-23.1.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "77ab6fcc93e6a96bd03741108e7173ad", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1237742, "upload_time": "2023-02-01T03:07:35", "upload_time_iso_8601": "2023-02-01T03:07:35.564910Z", "url": "https://files.pythonhosted.org/packages/2d/9a/a81bf384a08d8a5e13d97223a60a74ac3c16c0aecdbd85edbc662d158bde/black-23.1.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "9aee549e8be7f635cabcc3c7c3f2c3b27971dc32735155631b9ef2dcb1bd861f", "md5": "616c021b96a75345e2711887b4c6a470", "sha256": "bfffba28dc52a58f04492181392ee380e95262af14ee01d4bc7bb1b1c6ca8d27" }, "downloads": -1, "filename": "black-23.1.0-cp311-cp311-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "616c021b96a75345e2711887b4c6a470", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1284216, "upload_time": "2023-02-01T03:09:24", "upload_time_iso_8601": "2023-02-01T03:09:24.299235Z", "url": "https://files.pythonhosted.org/packages/9a/ee/549e8be7f635cabcc3c7c3f2c3b27971dc32735155631b9ef2dcb1bd861f/black-23.1.0-cp311-cp311-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7efe6c05c3f9255b7b498cfb88faa85b45329f1b7b0ecb444ebdc6b74ffa1457", "md5": "6441c5b4f40a3c2b19e0fe141d27a07e", "sha256": "c1c476bc7b7d021321e7d93dc2cbd78ce103b84d5a4cf97ed535fbc0d6660648" }, "downloads": -1, "filename": "black-23.1.0-cp311-cp311-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "6441c5b4f40a3c2b19e0fe141d27a07e", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 2558930, "upload_time": "2023-02-01T03:12:48", "upload_time_iso_8601": "2023-02-01T03:12:48.674907Z", "url": "https://files.pythonhosted.org/packages/7e/fe/6c05c3f9255b7b498cfb88faa85b45329f1b7b0ecb444ebdc6b74ffa1457/black-23.1.0-cp311-cp311-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f189ccc28cb74a66c094b609295b009b5e0350c10b75661d2450eeed2f60ce37", "md5": "a0849765fa265dec24766a543395810e", "sha256": "382998821f58e5c8238d3166c492139573325287820963d2f7de4d518bd76958" }, "downloads": -1, "filename": "black-23.1.0-cp311-cp311-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "a0849765fa265dec24766a543395810e", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1453643, "upload_time": "2023-02-01T03:12:07", "upload_time_iso_8601": "2023-02-01T03:12:07.342117Z", "url": "https://files.pythonhosted.org/packages/f1/89/ccc28cb74a66c094b609295b009b5e0350c10b75661d2450eeed2f60ce37/black-23.1.0-cp311-cp311-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "32a71d207427b87780c505a41c9430d26362e729954503b8ffba27c4f53a6810", "md5": "b363cfa3b6fdf83616700e1dde1bd043", "sha256": "2bf649fda611c8550ca9d7592b69f0637218c2369b7744694c5e4902873b2f3a" }, "downloads": -1, "filename": "black-23.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b363cfa3b6fdf83616700e1dde1bd043", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1587497, "upload_time": "2023-02-01T03:05:19", "upload_time_iso_8601": "2023-02-01T03:05:19.752131Z", "url": "https://files.pythonhosted.org/packages/32/a7/1d207427b87780c505a41c9430d26362e729954503b8ffba27c4f53a6810/black-23.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6bd14394e4b0a24ad0f556aca3ab11e27f2e199f03b43f147c31a4befbf62b48", "md5": "06a95cd890393a6470312251afc6e7be", "sha256": "121ca7f10b4a01fd99951234abdbd97728e1240be89fde18480ffac16503d481" }, "downloads": -1, "filename": "black-23.1.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "06a95cd890393a6470312251afc6e7be", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1242174, "upload_time": "2023-02-01T03:07:37", "upload_time_iso_8601": "2023-02-01T03:07:37.121029Z", "url": "https://files.pythonhosted.org/packages/6b/d1/4394e4b0a24ad0f556aca3ab11e27f2e199f03b43f147c31a4befbf62b48/black-23.1.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "96af3361b34907efbfd9d55af453488be2282f831d98b7d201248b38d4c44346", "md5": "f00648679c86f6b7916ec96e2e3f6ecb", "sha256": "a8471939da5e824b891b25751955be52ee7f8a30a916d570a5ba8e0f2eb2ecad" }, "downloads": -1, "filename": "black-23.1.0-cp37-cp37m-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "f00648679c86f6b7916ec96e2e3f6ecb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1400028, "upload_time": "2023-02-01T03:12:09", "upload_time_iso_8601": "2023-02-01T03:12:09.129872Z", "url": "https://files.pythonhosted.org/packages/96/af/3361b34907efbfd9d55af453488be2282f831d98b7d201248b38d4c44346/black-23.1.0-cp37-cp37m-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "018a065d0a59c1ebe13186b12a2fa3965a41fc1588828709995e2630004d216e", "md5": "64683894d2efbd2764cc37428cfe3471", "sha256": "8178318cb74f98bc571eef19068f6ab5613b3e59d4f47771582f04e175570ed8" }, "downloads": -1, "filename": "black-23.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "64683894d2efbd2764cc37428cfe3471", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1524055, "upload_time": "2023-02-01T03:05:22", "upload_time_iso_8601": "2023-02-01T03:05:22.189036Z", "url": "https://files.pythonhosted.org/packages/01/8a/065d0a59c1ebe13186b12a2fa3965a41fc1588828709995e2630004d216e/black-23.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b17ec368e9c795387a01bc181d8acbfd178278cc9960c5e7ef1059222a4419f9", "md5": "337028a62a919f025dbb330da1697f47", "sha256": "a436e7881d33acaf2536c46a454bb964a50eff59b21b51c6ccf5a40601fbef24" }, "downloads": -1, "filename": "black-23.1.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "337028a62a919f025dbb330da1697f47", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1180025, "upload_time": "2023-02-01T03:07:38", "upload_time_iso_8601": "2023-02-01T03:07:38.770336Z", "url": "https://files.pythonhosted.org/packages/b1/7e/c368e9c795387a01bc181d8acbfd178278cc9960c5e7ef1059222a4419f9/black-23.1.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a4ec934e89820289e6952922fa5965aec0e046ed65da168ffb0515af1e3364e1", "md5": "4b22c8343dfae00759687c8be77ea568", "sha256": "a59db0a2094d2259c554676403fa2fac3473ccf1354c1c63eccf7ae65aac8ab6" }, "downloads": -1, "filename": "black-23.1.0-cp38-cp38-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "4b22c8343dfae00759687c8be77ea568", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1289454, "upload_time": "2023-02-01T03:09:25", "upload_time_iso_8601": "2023-02-01T03:09:25.765168Z", "url": "https://files.pythonhosted.org/packages/a4/ec/934e89820289e6952922fa5965aec0e046ed65da168ffb0515af1e3364e1/black-23.1.0-cp38-cp38-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e60a9a5fca4a2ca07d4dbc3b00445c9353f05ea182b000f68c9ad6ba1da87a47", "md5": "7a9db461e6cca4cc91fc503d8f4ac45a", "sha256": "0052dba51dec07ed029ed61b18183942043e00008ec65d5028814afaab9a22fd" }, "downloads": -1, "filename": "black-23.1.0-cp38-cp38-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "7a9db461e6cca4cc91fc503d8f4ac45a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 2570486, "upload_time": "2023-02-01T03:12:50", "upload_time_iso_8601": "2023-02-01T03:12:50.564700Z", "url": "https://files.pythonhosted.org/packages/e6/0a/9a5fca4a2ca07d4dbc3b00445c9353f05ea182b000f68c9ad6ba1da87a47/black-23.1.0-cp38-cp38-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "20deeff8e3ccc22b5c2be1265a9e61f1006d03e194519a3ca2e83dd8483dbbb5", "md5": "385b8731fe9d44dcd1aaf87290d13a70", "sha256": "49f7b39e30f326a34b5c9a4213213a6b221d7ae9d58ec70df1c4a307cf2a1580" }, "downloads": -1, "filename": "black-23.1.0-cp38-cp38-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "385b8731fe9d44dcd1aaf87290d13a70", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1459800, "upload_time": "2023-02-01T03:12:10", "upload_time_iso_8601": "2023-02-01T03:12:10.786290Z", "url": "https://files.pythonhosted.org/packages/20/de/eff8e3ccc22b5c2be1265a9e61f1006d03e194519a3ca2e83dd8483dbbb5/black-23.1.0-cp38-cp38-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "dd19875b5006e40ea69a4120671f50317100b24732f2b877203722c91bc4eef3", "md5": "d712205472cb09aa00bcb4553c79675a", "sha256": "162e37d49e93bd6eb6f1afc3e17a3d23a823042530c37c3c42eeeaf026f38468" }, "downloads": -1, "filename": "black-23.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d712205472cb09aa00bcb4553c79675a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1590044, "upload_time": "2023-02-01T03:05:24", "upload_time_iso_8601": "2023-02-01T03:05:24.607452Z", "url": "https://files.pythonhosted.org/packages/dd/19/875b5006e40ea69a4120671f50317100b24732f2b877203722c91bc4eef3/black-23.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3ddc12dc29bb38b8db68c79b8339de1590fe1ae796858bfa6cf7494eb672be21", "md5": "dbaecef22dc8818ef45ca8e351e33a19", "sha256": "8b70eb40a78dfac24842458476135f9b99ab952dd3f2dab738c1881a9b38b753" }, "downloads": -1, "filename": "black-23.1.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "dbaecef22dc8818ef45ca8e351e33a19", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1248751, "upload_time": "2023-02-01T03:07:40", "upload_time_iso_8601": "2023-02-01T03:07:40.688992Z", "url": "https://files.pythonhosted.org/packages/3d/dc/12dc29bb38b8db68c79b8339de1590fe1ae796858bfa6cf7494eb672be21/black-23.1.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "43bc5232fd6b0fd6d6177140cfb7d8f0f0e06638e2a750122767e265beb91161", "md5": "400f8b43bdd4e89c965072e7e661579a", "sha256": "a29650759a6a0944e7cca036674655c2f0f63806ddecc45ed40b7b8aa314b651" }, "downloads": -1, "filename": "black-23.1.0-cp39-cp39-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "400f8b43bdd4e89c965072e7e661579a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1295964, "upload_time": "2023-02-01T03:09:27", "upload_time_iso_8601": "2023-02-01T03:09:27.480806Z", "url": "https://files.pythonhosted.org/packages/43/bc/5232fd6b0fd6d6177140cfb7d8f0f0e06638e2a750122767e265beb91161/black-23.1.0-cp39-cp39-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7711db2ae5bf93af5185086d9b1baf4ce369ca34c3a01835230873aa9163d52d", "md5": "ecf03046b15b82162496973b515977ac", "sha256": "bb460c8561c8c1bec7824ecbc3ce085eb50005883a6203dcfb0122e95797ee06" }, "downloads": -1, "filename": "black-23.1.0-cp39-cp39-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "ecf03046b15b82162496973b515977ac", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 2588233, "upload_time": "2023-02-01T03:12:52", "upload_time_iso_8601": "2023-02-01T03:12:52.637167Z", "url": "https://files.pythonhosted.org/packages/77/11/db2ae5bf93af5185086d9b1baf4ce369ca34c3a01835230873aa9163d52d/black-23.1.0-cp39-cp39-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ae931e62fe94ab531bdc3f6cbbbd5b518727277bf40f695777b4097db5da2a38", "md5": "cb5f91ea2865cec108ca2cd5b55ce27f", "sha256": "c91dfc2c2a4e50df0026f88d2215e166616e0c80e86004d0003ece0488db2739" }, "downloads": -1, "filename": "black-23.1.0-cp39-cp39-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "cb5f91ea2865cec108ca2cd5b55ce27f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1470693, "upload_time": "2023-02-01T03:12:12", "upload_time_iso_8601": "2023-02-01T03:12:12.724589Z", "url": "https://files.pythonhosted.org/packages/ae/93/1e62fe94ab531bdc3f6cbbbd5b518727277bf40f695777b4097db5da2a38/black-23.1.0-cp39-cp39-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b7338e074fd8b86a1c8668f5493ed28929d87bdccb6aa68c2975b47a02f92287", "md5": "4d60d8f381f75be7e9591f4e880e0b1b", "sha256": "2a951cc83ab535d248c89f300eccbd625e80ab880fbcfb5ac8afb5f01a258ac9" }, "downloads": -1, "filename": "black-23.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4d60d8f381f75be7e9591f4e880e0b1b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1601487, "upload_time": "2023-02-01T03:05:26", "upload_time_iso_8601": "2023-02-01T03:05:26.597151Z", "url": "https://files.pythonhosted.org/packages/b7/33/8e074fd8b86a1c8668f5493ed28929d87bdccb6aa68c2975b47a02f92287/black-23.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c01d8dac412cf5cc4120a438969a4fafefdc3de8fa13d411f317a9f9f1e268a4", "md5": "7dd97f11d9be75590372b3883c3249ec", "sha256": "0680d4380db3719ebcfb2613f34e86c8e6d15ffeabcf8ec59355c5e7b85bb555" }, "downloads": -1, "filename": "black-23.1.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "7dd97f11d9be75590372b3883c3249ec", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1237539, "upload_time": "2023-02-01T03:07:42", "upload_time_iso_8601": "2023-02-01T03:07:42.476149Z", "url": "https://files.pythonhosted.org/packages/c0/1d/8dac412cf5cc4120a438969a4fafefdc3de8fa13d411f317a9f9f1e268a4/black-23.1.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1899bb1be0ff3a7e912679ad234a3c4884fa7689dfcc4eae85bddb6c04feaa62", "md5": "88f93f677fe7792ac091930b7a7d0534", "sha256": "7a0f701d314cfa0896b9001df70a530eb2472babb76086344e688829efd97d32" }, "downloads": -1, "filename": "black-23.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "88f93f677fe7792ac091930b7a7d0534", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 174078, "upload_time": "2023-02-01T02:54:29", "upload_time_iso_8601": "2023-02-01T02:54:29.227335Z", "url": "https://files.pythonhosted.org/packages/18/99/bb1be0ff3a7e912679ad234a3c4884fa7689dfcc4eae85bddb6c04feaa62/black-23.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1511533355217b1cc4a6df3263048060c1527f733d4720e158de2085293112bb", "md5": "e88e5b9cfb4a737a3b1d4f7eef7158be", "sha256": "b0bd97bea8903f5a2ba7219257a44e3f1f9d00073d6cc1add68f0beec69692ac" }, "downloads": -1, "filename": "black-23.1.0.tar.gz", "has_sig": false, "md5_digest": "e88e5b9cfb4a737a3b1d4f7eef7158be", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 568619, "upload_time": "2023-02-01T02:54:31", "upload_time_iso_8601": "2023-02-01T02:54:31.123278Z", "url": "https://files.pythonhosted.org/packages/15/11/533355217b1cc4a6df3263048060c1527f733d4720e158de2085293112bb/black-23.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "23.10.0": [ { "comment_text": "", "digests": { "blake2b_256": "0e08446af260bd6d18f3bab1488c1db652e0ed682a9877120e22d5d852bf5510", "md5": "25c446bd358eb6344206d87888383608", "sha256": "f8dc7d50d94063cdfd13c82368afd8588bac4ce360e4224ac399e769d6704e98" }, "downloads": -1, "filename": "black-23.10.0-cp310-cp310-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "25c446bd358eb6344206d87888383608", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1350785, "upload_time": "2023-10-17T16:22:36", "upload_time_iso_8601": "2023-10-17T16:22:36.950583Z", "url": "https://files.pythonhosted.org/packages/0e/08/446af260bd6d18f3bab1488c1db652e0ed682a9877120e22d5d852bf5510/black-23.10.0-cp310-cp310-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "cd7e0784f1db23497b6deb68ac184c79fa0768b06765aee7fd3e1c4409e5bd2b", "md5": "11ee8d67f71c8e73e311f106a4396bd4", "sha256": "f20ff03f3fdd2fd4460b4f631663813e57dc277e37fb216463f3b907aa5a9bdd" }, "downloads": -1, "filename": "black-23.10.0-cp310-cp310-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "11ee8d67f71c8e73e311f106a4396bd4", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1499234, "upload_time": "2023-10-17T16:20:06", "upload_time_iso_8601": "2023-10-17T16:20:06.927599Z", "url": "https://files.pythonhosted.org/packages/cd/7e/0784f1db23497b6deb68ac184c79fa0768b06765aee7fd3e1c4409e5bd2b/black-23.10.0-cp310-cp310-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f10163148230637c0511b2d785dd88d170fe239fe702bec4189bcd6dbd26e2b6", "md5": "2c3878ef839ef1a4c4ba05457d59ad4f", "sha256": "d3d9129ce05b0829730323bdcb00f928a448a124af5acf90aa94d9aba6969604" }, "downloads": -1, "filename": "black-23.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2c3878ef839ef1a4c4ba05457d59ad4f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1640176, "upload_time": "2023-10-17T16:17:05", "upload_time_iso_8601": "2023-10-17T16:17:05.346953Z", "url": "https://files.pythonhosted.org/packages/f1/01/63148230637c0511b2d785dd88d170fe239fe702bec4189bcd6dbd26e2b6/black-23.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6ecf0976d86d3f6f19182ff8ade17c54a2c0237778cc5b725099dcfba737e191", "md5": "0e649d1a3167668bf753aabc727c0a25", "sha256": "960c21555be135c4b37b7018d63d6248bdae8514e5c55b71e994ad37407f45b8" }, "downloads": -1, "filename": "black-23.10.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "0e649d1a3167668bf753aabc727c0a25", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1276810, "upload_time": "2023-10-17T16:19:16", "upload_time_iso_8601": "2023-10-17T16:19:16.750222Z", "url": "https://files.pythonhosted.org/packages/6e/cf/0976d86d3f6f19182ff8ade17c54a2c0237778cc5b725099dcfba737e191/black-23.10.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "33acf2d87792e815bd728c1fca139855afc06cbecd74e9666c8e62f97aa82272", "md5": "0c27b032f1a375e5101ee5e5818a08b0", "sha256": "30b78ac9b54cf87bcb9910ee3d499d2bc893afd52495066c49d9ee6b21eee06e" }, "downloads": -1, "filename": "black-23.10.0-cp311-cp311-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "0c27b032f1a375e5101ee5e5818a08b0", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1332302, "upload_time": "2023-10-17T16:20:51", "upload_time_iso_8601": "2023-10-17T16:20:51.429103Z", "url": "https://files.pythonhosted.org/packages/33/ac/f2d87792e815bd728c1fca139855afc06cbecd74e9666c8e62f97aa82272/black-23.10.0-cp311-cp311-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d1d8ca200688b8182aa4a3e214fe99ac2060ab8c8b7c7d641e6637fd948a8d8a", "md5": "cb0f049e097892b648bc81e539247f7a", "sha256": "0e232f24a337fed7a82c1185ae46c56c4a6167fb0fe37411b43e876892c76699" }, "downloads": -1, "filename": "black-23.10.0-cp311-cp311-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "cb0f049e097892b648bc81e539247f7a", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1479932, "upload_time": "2023-10-17T16:21:37", "upload_time_iso_8601": "2023-10-17T16:21:37.348616Z", "url": "https://files.pythonhosted.org/packages/d1/d8/ca200688b8182aa4a3e214fe99ac2060ab8c8b7c7d641e6637fd948a8d8a/black-23.10.0-cp311-cp311-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c4d725e7d09bc90ddb2774a0b7ac15db9a61e473938dadd62f205f07259669b0", "md5": "a736f2b6738b34b8c182d8d3a739e081", "sha256": "31946ec6f9c54ed7ba431c38bc81d758970dd734b96b8e8c2b17a367d7908171" }, "downloads": -1, "filename": "black-23.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a736f2b6738b34b8c182d8d3a739e081", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1623255, "upload_time": "2023-10-17T16:17:06", "upload_time_iso_8601": "2023-10-17T16:17:06.415481Z", "url": "https://files.pythonhosted.org/packages/c4/d7/25e7d09bc90ddb2774a0b7ac15db9a61e473938dadd62f205f07259669b0/black-23.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c813629fd599558830a7497fd2c716efbad0275d20463bfc6bbbbd6766940206", "md5": "f019d3a77ddd12991098506aa4906b8a", "sha256": "c870bee76ad5f7a5ea7bd01dc646028d05568d33b0b09b7ecfc8ec0da3f3f39c" }, "downloads": -1, "filename": "black-23.10.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "f019d3a77ddd12991098506aa4906b8a", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1286124, "upload_time": "2023-10-17T16:19:39", "upload_time_iso_8601": "2023-10-17T16:19:39.159709Z", "url": "https://files.pythonhosted.org/packages/c8/13/629fd599558830a7497fd2c716efbad0275d20463bfc6bbbbd6766940206/black-23.10.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1e3faff4e5be236050fd695dde1888b64c2b2da3f25e561d25e6379dfc34a137", "md5": "331df71fea52467a7b57b73eb9469877", "sha256": "6901631b937acbee93c75537e74f69463adaf34379a04eef32425b88aca88a23" }, "downloads": -1, "filename": "black-23.10.0-cp38-cp38-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "331df71fea52467a7b57b73eb9469877", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1337130, "upload_time": "2023-10-17T16:23:20", "upload_time_iso_8601": "2023-10-17T16:23:20.094386Z", "url": "https://files.pythonhosted.org/packages/1e/3f/aff4e5be236050fd695dde1888b64c2b2da3f25e561d25e6379dfc34a137/black-23.10.0-cp38-cp38-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a04818ec7764acd9c9117cab7449b63cd4c6496fed7e268291336c92ac55958f", "md5": "335e5d271760ce8439a832ee86357d35", "sha256": "481167c60cd3e6b1cb8ef2aac0f76165843a374346aeeaa9d86765fe0dd0318b" }, "downloads": -1, "filename": "black-23.10.0-cp38-cp38-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "335e5d271760ce8439a832ee86357d35", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1487359, "upload_time": "2023-10-17T16:24:08", "upload_time_iso_8601": "2023-10-17T16:24:08.041035Z", "url": "https://files.pythonhosted.org/packages/a0/48/18ec7764acd9c9117cab7449b63cd4c6496fed7e268291336c92ac55958f/black-23.10.0-cp38-cp38-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "be94209a176e4f10c8bddb0c52b2a9282c7adcf20475e79e7e212137f6b2f8de", "md5": "a6f62469af671b571b9790f3baa7ad0d", "sha256": "f74892b4b836e5162aa0452393112a574dac85e13902c57dfbaaf388e4eda37c" }, "downloads": -1, "filename": "black-23.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a6f62469af671b571b9790f3baa7ad0d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1626712, "upload_time": "2023-10-17T16:17:12", "upload_time_iso_8601": "2023-10-17T16:17:12.445064Z", "url": "https://files.pythonhosted.org/packages/be/94/209a176e4f10c8bddb0c52b2a9282c7adcf20475e79e7e212137f6b2f8de/black-23.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "78e09c16f71d6183d5192daa1ed70e251265f4a174d74257210cabbdfb19a9d1", "md5": "f14ebd9b6cdb9c5a5bc0cc0fe578c111", "sha256": "47c4510f70ec2e8f9135ba490811c071419c115e46f143e4dce2ac45afdcf4c9" }, "downloads": -1, "filename": "black-23.10.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "f14ebd9b6cdb9c5a5bc0cc0fe578c111", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1284457, "upload_time": "2023-10-17T16:20:10", "upload_time_iso_8601": "2023-10-17T16:20:10.344216Z", "url": "https://files.pythonhosted.org/packages/78/e0/9c16f71d6183d5192daa1ed70e251265f4a174d74257210cabbdfb19a9d1/black-23.10.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "812e3000b5f9f0ba1c4aa99642e105c40bf96497e6f9a5b970967d9039fe1b13", "md5": "f2dcd376e5d5658f8a47df5bd561e1ea", "sha256": "76baba9281e5e5b230c9b7f83a96daf67a95e919c2dfc240d9e6295eab7b9204" }, "downloads": -1, "filename": "black-23.10.0-cp39-cp39-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "f2dcd376e5d5658f8a47df5bd561e1ea", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1350056, "upload_time": "2023-10-17T16:25:29", "upload_time_iso_8601": "2023-10-17T16:25:29.204674Z", "url": "https://files.pythonhosted.org/packages/81/2e/3000b5f9f0ba1c4aa99642e105c40bf96497e6f9a5b970967d9039fe1b13/black-23.10.0-cp39-cp39-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7d5806645bc2a80c19837812a6098e1d41cfc22db9393d8cd93877d40ee7b2af", "md5": "a961c343d2ea9c05490745b92ac3481f", "sha256": "a3c2ddb35f71976a4cfeca558848c2f2f89abc86b06e8dd89b5a65c1e6c0f22a" }, "downloads": -1, "filename": "black-23.10.0-cp39-cp39-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "a961c343d2ea9c05490745b92ac3481f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1498581, "upload_time": "2023-10-17T16:26:47", "upload_time_iso_8601": "2023-10-17T16:26:47.621441Z", "url": "https://files.pythonhosted.org/packages/7d/58/06645bc2a80c19837812a6098e1d41cfc22db9393d8cd93877d40ee7b2af/black-23.10.0-cp39-cp39-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "dfc61aa616f722fbb9591b87f5fec6556d490f700ede071a4e5096cef2b52025", "md5": "79dc9875d6769e0909b3f6d360e1d244", "sha256": "db451a3363b1e765c172c3fd86213a4ce63fb8524c938ebd82919bf2a6e28c6a" }, "downloads": -1, "filename": "black-23.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "79dc9875d6769e0909b3f6d360e1d244", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1638687, "upload_time": "2023-10-17T16:17:58", "upload_time_iso_8601": "2023-10-17T16:17:58.863780Z", "url": "https://files.pythonhosted.org/packages/df/c6/1aa616f722fbb9591b87f5fec6556d490f700ede071a4e5096cef2b52025/black-23.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "20f3755ffa4586cb9cc8532a6f0d8e32aa6b23c5e6355e2580131a128d8ed846", "md5": "ce69482012b45933ccfe28cdeb7e3841", "sha256": "7fb5fc36bb65160df21498d5a3dd330af8b6401be3f25af60c6ebfe23753f747" }, "downloads": -1, "filename": "black-23.10.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "ce69482012b45933ccfe28cdeb7e3841", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1276666, "upload_time": "2023-10-17T16:18:53", "upload_time_iso_8601": "2023-10-17T16:18:53.355718Z", "url": "https://files.pythonhosted.org/packages/20/f3/755ffa4586cb9cc8532a6f0d8e32aa6b23c5e6355e2580131a128d8ed846/black-23.10.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "977f87ff819b63ce86d7cd44a3004ea14101f0dd81971dad9c636fdda600d9c6", "md5": "d65e72adb8f33e72cb9893cf0d860da5", "sha256": "e223b731a0e025f8ef427dd79d8cd69c167da807f5710add30cdf131f13dd62e" }, "downloads": -1, "filename": "black-23.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d65e72adb8f33e72cb9893cf0d860da5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 184073, "upload_time": "2023-10-17T16:14:25", "upload_time_iso_8601": "2023-10-17T16:14:25.006830Z", "url": "https://files.pythonhosted.org/packages/97/7f/87ff819b63ce86d7cd44a3004ea14101f0dd81971dad9c636fdda600d9c6/black-23.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2de08433441b0236b9d795ffbf5750f98144e0378b6e20401ba4d2db30b99a5c", "md5": "3910ac2b90350569f3cdc892653cab9e", "sha256": "31b9f87b277a68d0e99d2905edae08807c007973eaa609da5f0c62def6b7c0bd" }, "downloads": -1, "filename": "black-23.10.0.tar.gz", "has_sig": false, "md5_digest": "3910ac2b90350569f3cdc892653cab9e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 595880, "upload_time": "2023-10-17T16:14:27", "upload_time_iso_8601": "2023-10-17T16:14:27.188048Z", "url": "https://files.pythonhosted.org/packages/2d/e0/8433441b0236b9d795ffbf5750f98144e0378b6e20401ba4d2db30b99a5c/black-23.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "23.10.1": [ { "comment_text": "", "digests": { "blake2b_256": "ed3d86241acb5d253f79a18901da853cbae321a05dff09cea3aca51c5ffc68d2", "md5": "6ea5c7b532bac0aa70fbcd7116a29401", "sha256": "ec3f8e6234c4e46ff9e16d9ae96f4ef69fa328bb4ad08198c8cee45bb1f08c69" }, "downloads": -1, "filename": "black-23.10.1-cp310-cp310-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "6ea5c7b532bac0aa70fbcd7116a29401", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1355132, "upload_time": "2023-10-23T19:30:21", "upload_time_iso_8601": "2023-10-23T19:30:21.159059Z", "url": "https://files.pythonhosted.org/packages/ed/3d/86241acb5d253f79a18901da853cbae321a05dff09cea3aca51c5ffc68d2/black-23.10.1-cp310-cp310-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "24e28e9b4e9c9ee0f076390fccc566dcde2fc352176ac5a8832295ac5a249563", "md5": "6232ebbc787acd0fecdcc21b4de70fbb", "sha256": "1b917a2aa020ca600483a7b340c165970b26e9029067f019e3755b56e8dd5916" }, "downloads": -1, "filename": "black-23.10.1-cp310-cp310-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "6232ebbc787acd0fecdcc21b4de70fbb", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1504747, "upload_time": "2023-10-23T19:32:07", "upload_time_iso_8601": "2023-10-23T19:32:07.469095Z", "url": "https://files.pythonhosted.org/packages/24/e2/8e9b4e9c9ee0f076390fccc566dcde2fc352176ac5a8832295ac5a249563/black-23.10.1-cp310-cp310-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0f96c778963e523e8c2ab79d461d91d0eaa93d3a1f19e383b6c85db0ebc49c63", "md5": "aaca93f635ab7194b5b6127a8f2cce78", "sha256": "9c74de4c77b849e6359c6f01987e94873c707098322b91490d24296f66d067dc" }, "downloads": -1, "filename": "black-23.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "aaca93f635ab7194b5b6127a8f2cce78", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1646430, "upload_time": "2023-10-23T19:29:21", "upload_time_iso_8601": "2023-10-23T19:29:21.655276Z", "url": "https://files.pythonhosted.org/packages/0f/96/c778963e523e8c2ab79d461d91d0eaa93d3a1f19e383b6c85db0ebc49c63/black-23.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8f5d83eef43f6f50395d0607a2c93419b523fa31f7543ef9919c9fe29cf2098b", "md5": "eda808659011c601f511d34ac5adfe73", "sha256": "7b4d10b0f016616a0d93d24a448100adf1699712fb7a4efd0e2c32bbb219b173" }, "downloads": -1, "filename": "black-23.10.1-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "eda808659011c601f511d34ac5adfe73", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1280445, "upload_time": "2023-10-23T19:29:33", "upload_time_iso_8601": "2023-10-23T19:29:33.570494Z", "url": "https://files.pythonhosted.org/packages/8f/5d/83eef43f6f50395d0607a2c93419b523fa31f7543ef9919c9fe29cf2098b/black-23.10.1-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "bfeb8b3e03153f0cb204244ee9c9e6004bc71afc9740cef3e46788326049fb23", "md5": "452852cfb4ac54b9d286e6d6ca11fcc0", "sha256": "b15b75fc53a2fbcac8a87d3e20f69874d161beef13954747e053bca7a1ce53a0" }, "downloads": -1, "filename": "black-23.10.1-cp311-cp311-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "452852cfb4ac54b9d286e6d6ca11fcc0", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1337149, "upload_time": "2023-10-23T19:30:42", "upload_time_iso_8601": "2023-10-23T19:30:42.852987Z", "url": "https://files.pythonhosted.org/packages/bf/eb/8b3e03153f0cb204244ee9c9e6004bc71afc9740cef3e46788326049fb23/black-23.10.1-cp311-cp311-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8b3cc9a03a4d5dd8c18c4af211e694bcc73dd305a2b85788eb311d3dbb14cfe9", "md5": "9772f7bff6f77e611eedc34218e34d0d", "sha256": "e293e4c2f4a992b980032bbd62df07c1bcff82d6964d6c9496f2cd726e246ace" }, "downloads": -1, "filename": "black-23.10.1-cp311-cp311-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "9772f7bff6f77e611eedc34218e34d0d", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1484835, "upload_time": "2023-10-23T19:31:37", "upload_time_iso_8601": "2023-10-23T19:31:37.141689Z", "url": "https://files.pythonhosted.org/packages/8b/3c/c9a03a4d5dd8c18c4af211e694bcc73dd305a2b85788eb311d3dbb14cfe9/black-23.10.1-cp311-cp311-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "804add74ca838e8a536f3ac061cec9ef1d0c73e3ad2f3584be2127d53cd82f0f", "md5": "219d84752e9516df77417be906a24ced", "sha256": "7d56124b7a61d092cb52cce34182a5280e160e6aff3137172a68c2c2c4b76bcb" }, "downloads": -1, "filename": "black-23.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "219d84752e9516df77417be906a24ced", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1629860, "upload_time": "2023-10-23T19:28:44", "upload_time_iso_8601": "2023-10-23T19:28:44.655963Z", "url": "https://files.pythonhosted.org/packages/80/4a/dd74ca838e8a536f3ac061cec9ef1d0c73e3ad2f3584be2127d53cd82f0f/black-23.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "bff61b039c5ea8fc18a3e710cc1e217fa65369e3fe9173eac9ec5080f89f9f38", "md5": "ae8d67b489ffbb5825479e923490b5be", "sha256": "3f157a8945a7b2d424da3335f7ace89c14a3b0625e6593d21139c2d8214d55ce" }, "downloads": -1, "filename": "black-23.10.1-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "ae8d67b489ffbb5825479e923490b5be", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1290854, "upload_time": "2023-10-23T19:29:31", "upload_time_iso_8601": "2023-10-23T19:29:31.721506Z", "url": "https://files.pythonhosted.org/packages/bf/f6/1b039c5ea8fc18a3e710cc1e217fa65369e3fe9173eac9ec5080f89f9f38/black-23.10.1-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a25eacf7eff1ce3cc035f7a140d7a1a2fab1f04175573ec1586331f8a64f7d30", "md5": "dfb087f8bad6ce769c7eb8dbc8f1bb57", "sha256": "cfcce6f0a384d0da692119f2d72d79ed07c7159879d0bb1bb32d2e443382bf3a" }, "downloads": -1, "filename": "black-23.10.1-cp38-cp38-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "dfb087f8bad6ce769c7eb8dbc8f1bb57", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1342161, "upload_time": "2023-10-23T19:32:04", "upload_time_iso_8601": "2023-10-23T19:32:04.585257Z", "url": "https://files.pythonhosted.org/packages/a2/5e/acf7eff1ce3cc035f7a140d7a1a2fab1f04175573ec1586331f8a64f7d30/black-23.10.1-cp38-cp38-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c643e775dd9c571f6eac939fa25c885745cf7262cdd2c92d9a506302dad88f81", "md5": "4837d78295080c1c06eae8734e0caf1e", "sha256": "33d40f5b06be80c1bbce17b173cda17994fbad096ce60eb22054da021bf933d1" }, "downloads": -1, "filename": "black-23.10.1-cp38-cp38-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "4837d78295080c1c06eae8734e0caf1e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1491509, "upload_time": "2023-10-23T19:33:42", "upload_time_iso_8601": "2023-10-23T19:33:42.178112Z", "url": "https://files.pythonhosted.org/packages/c6/43/e775dd9c571f6eac939fa25c885745cf7262cdd2c92d9a506302dad88f81/black-23.10.1-cp38-cp38-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b0661a67f40228061d9046fa7bf806b2748d17427f14e7bdd3ee98a11fb6e0c4", "md5": "e77434c4b8dc37751239f84e83cf461c", "sha256": "840015166dbdfbc47992871325799fd2dc0dcf9395e401ada6d88fe11498abad" }, "downloads": -1, "filename": "black-23.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e77434c4b8dc37751239f84e83cf461c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1632456, "upload_time": "2023-10-23T19:28:25", "upload_time_iso_8601": "2023-10-23T19:28:25.766266Z", "url": "https://files.pythonhosted.org/packages/b0/66/1a67f40228061d9046fa7bf806b2748d17427f14e7bdd3ee98a11fb6e0c4/black-23.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5e5da30a63bb5397648ec82dc74e25fd377185044040f88089c340a69dac4a85", "md5": "ce3b2b89b7ae1104478836b76ae540bd", "sha256": "037e9b4664cafda5f025a1728c50a9e9aedb99a759c89f760bd83730e76ba884" }, "downloads": -1, "filename": "black-23.10.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ce3b2b89b7ae1104478836b76ae540bd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1289456, "upload_time": "2023-10-23T19:30:18", "upload_time_iso_8601": "2023-10-23T19:30:18.721591Z", "url": "https://files.pythonhosted.org/packages/5e/5d/a30a63bb5397648ec82dc74e25fd377185044040f88089c340a69dac4a85/black-23.10.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "870f0c665af27f6ce286145d747e1e37d9d4ed807af266401f4aa4d7d428fd9c", "md5": "67b4b2df081207f2bf9f305358a9a2c7", "sha256": "7cb5936e686e782fddb1c73f8aa6f459e1ad38a6a7b0e54b403f1f05a1507ee9" }, "downloads": -1, "filename": "black-23.10.1-cp39-cp39-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "67b4b2df081207f2bf9f305358a9a2c7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1354727, "upload_time": "2023-10-23T19:35:01", "upload_time_iso_8601": "2023-10-23T19:35:01.891640Z", "url": "https://files.pythonhosted.org/packages/87/0f/0c665af27f6ce286145d747e1e37d9d4ed807af266401f4aa4d7d428fd9c/black-23.10.1-cp39-cp39-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5761a91a66459dc4885a3b92c1bcf36e0556021f849e8c21732199a72ce9603c", "md5": "324c4c52c00f3fdbf35f88184ff9e9d1", "sha256": "7670242e90dc129c539e9ca17665e39a146a761e681805c54fbd86015c7c84f7" }, "downloads": -1, "filename": "black-23.10.1-cp39-cp39-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "324c4c52c00f3fdbf35f88184ff9e9d1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1504025, "upload_time": "2023-10-23T19:36:05", "upload_time_iso_8601": "2023-10-23T19:36:05.645781Z", "url": "https://files.pythonhosted.org/packages/57/61/a91a66459dc4885a3b92c1bcf36e0556021f849e8c21732199a72ce9603c/black-23.10.1-cp39-cp39-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3c3256126f1991a4dfe31ce82adbf57b100b8bb11d4a8bf3b7ac716cfd52bf4d", "md5": "260546d6f274776c150d194c682b9239", "sha256": "5ed45ac9a613fb52dad3b61c8dea2ec9510bf3108d4db88422bacc7d1ba1243d" }, "downloads": -1, "filename": "black-23.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "260546d6f274776c150d194c682b9239", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1644413, "upload_time": "2023-10-23T19:27:43", "upload_time_iso_8601": "2023-10-23T19:27:43.222014Z", "url": "https://files.pythonhosted.org/packages/3c/32/56126f1991a4dfe31ce82adbf57b100b8bb11d4a8bf3b7ac716cfd52bf4d/black-23.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1be533e5ed299302607adbd9c23d651acd788ffb9095fe6cc0f169e9d71f41d4", "md5": "a46451b3a9391d256f1b206a022d377c", "sha256": "6d23d7822140e3fef190734216cefb262521789367fbdc0b3f22af6744058982" }, "downloads": -1, "filename": "black-23.10.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "a46451b3a9391d256f1b206a022d377c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1280223, "upload_time": "2023-10-23T19:30:48", "upload_time_iso_8601": "2023-10-23T19:30:48.244644Z", "url": "https://files.pythonhosted.org/packages/1b/e5/33e5ed299302607adbd9c23d651acd788ffb9095fe6cc0f169e9d71f41d4/black-23.10.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "726e3c49b5779a087979cb1916b1409e2bcee2d58bab1f880a4d2720251a3bfa", "md5": "1c3081369554cd572bfef9d09e8e4815", "sha256": "d431e6739f727bb2e0495df64a6c7a5310758e87505f5f8cde9ff6c0f2d7e4fe" }, "downloads": -1, "filename": "black-23.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1c3081369554cd572bfef9d09e8e4815", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 184603, "upload_time": "2023-10-23T19:24:27", "upload_time_iso_8601": "2023-10-23T19:24:27.217551Z", "url": "https://files.pythonhosted.org/packages/72/6e/3c49b5779a087979cb1916b1409e2bcee2d58bab1f880a4d2720251a3bfa/black-23.10.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "36bfa462f36723824c60dc3db10528c95656755964279a6a5c287b4f9fd0fa84", "md5": "79749e5c3bf10ee9dbc80e0ecf8819d7", "sha256": "1f8ce316753428ff68749c65a5f7844631aa18c8679dfd3ca9dc1a289979c258" }, "downloads": -1, "filename": "black-23.10.1.tar.gz", "has_sig": false, "md5_digest": "79749e5c3bf10ee9dbc80e0ecf8819d7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 597307, "upload_time": "2023-10-23T19:24:29", "upload_time_iso_8601": "2023-10-23T19:24:29.462145Z", "url": "https://files.pythonhosted.org/packages/36/bf/a462f36723824c60dc3db10528c95656755964279a6a5c287b4f9fd0fa84/black-23.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "23.11.0": [ { "comment_text": "", "digests": { "blake2b_256": "753ae165fdb926e88acfface56a3a4267b20cc08015a141d75247d4f00c62509", "md5": "8b2df589de080e9c93e5bf229839f6ae", "sha256": "dbea0bb8575c6b6303cc65017b46351dc5953eea5c0a59d7b7e3a2d2f433a911" }, "downloads": -1, "filename": "black-23.11.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8b2df589de080e9c93e5bf229839f6ae", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1559813, "upload_time": "2023-11-08T05:47:43", "upload_time_iso_8601": "2023-11-08T05:47:43.258372Z", "url": "https://files.pythonhosted.org/packages/75/3a/e165fdb926e88acfface56a3a4267b20cc08015a141d75247d4f00c62509/black-23.11.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b97d527c9ae32ef45c3828daf5854dcffcb324da77a37ee2d379ef79d24612ee", "md5": "cd5934325ccf4ea98ab737534dbbebe4", "sha256": "412f56bab20ac85927f3a959230331de5614aecda1ede14b373083f62ec24e6f" }, "downloads": -1, "filename": "black-23.11.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "cd5934325ccf4ea98ab737534dbbebe4", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1400610, "upload_time": "2023-11-08T05:46:22", "upload_time_iso_8601": "2023-11-08T05:46:22.876489Z", "url": "https://files.pythonhosted.org/packages/b9/7d/527c9ae32ef45c3828daf5854dcffcb324da77a37ee2d379ef79d24612ee/black-23.11.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "751ad0cfb2ae52ebfe7eeeb4b23090bff5ad9e071015c0373da9790f0e4a790b", "md5": "ef6629d0f1d27a3e065ff92c5a19dfcf", "sha256": "d136ef5b418c81660ad847efe0e55c58c8208b77a57a28a503a5f345ccf01394" }, "downloads": -1, "filename": "black-23.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ef6629d0f1d27a3e065ff92c5a19dfcf", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1704149, "upload_time": "2023-11-08T05:43:45", "upload_time_iso_8601": "2023-11-08T05:43:45.403526Z", "url": "https://files.pythonhosted.org/packages/75/1a/d0cfb2ae52ebfe7eeeb4b23090bff5ad9e071015c0373da9790f0e4a790b/black-23.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ce59b0c04cd9ddccb19660ba92c6ebb559face8533b12f04003b912c5c38f5db", "md5": "a287e7913f2958ef90daf9a26bf45e29", "sha256": "6c1cac07e64433f646a9a838cdc00c9768b3c362805afc3fce341af0e6a9ae9f" }, "downloads": -1, "filename": "black-23.11.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "a287e7913f2958ef90daf9a26bf45e29", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1331495, "upload_time": "2023-11-08T05:44:14", "upload_time_iso_8601": "2023-11-08T05:44:14.356572Z", "url": "https://files.pythonhosted.org/packages/ce/59/b0c04cd9ddccb19660ba92c6ebb559face8533b12f04003b912c5c38f5db/black-23.11.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3bd8ea841502c79d85675e56c40d77de59aae44e311f17b463815d6a9659608c", "md5": "103e6254396c1ff24d1bacbd513e455a", "sha256": "cf57719e581cfd48c4efe28543fea3d139c6b6f1238b3f0102a9c73992cbb479" }, "downloads": -1, "filename": "black-23.11.0-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "103e6254396c1ff24d1bacbd513e455a", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1540054, "upload_time": "2023-11-08T05:48:25", "upload_time_iso_8601": "2023-11-08T05:48:25.366568Z", "url": "https://files.pythonhosted.org/packages/3b/d8/ea841502c79d85675e56c40d77de59aae44e311f17b463815d6a9659608c/black-23.11.0-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4e0975c374a20c458230ed8288d1e68ba38ecf508e948b8bf8980e8b0fd4c3b1", "md5": "58a8c041b7355ff2714686d7d5c71b81", "sha256": "698c1e0d5c43354ec5d6f4d914d0d553a9ada56c85415700b81dc90125aac244" }, "downloads": -1, "filename": "black-23.11.0-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "58a8c041b7355ff2714686d7d5c71b81", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1384800, "upload_time": "2023-11-08T05:47:05", "upload_time_iso_8601": "2023-11-08T05:47:05.858172Z", "url": "https://files.pythonhosted.org/packages/4e/09/75c374a20c458230ed8288d1e68ba38ecf508e948b8bf8980e8b0fd4c3b1/black-23.11.0-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "460a964b242c01b8dbadec60afd2f1d3e08ad574315d34a33a692e96f121a32b", "md5": "2ef1fdc4fe92b420df16db645cbed4d7", "sha256": "760415ccc20f9e8747084169110ef75d545f3b0932ee21368f63ac0fee86b221" }, "downloads": -1, "filename": "black-23.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2ef1fdc4fe92b420df16db645cbed4d7", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1683129, "upload_time": "2023-11-08T05:44:44", "upload_time_iso_8601": "2023-11-08T05:44:44.873640Z", "url": "https://files.pythonhosted.org/packages/46/0a/964b242c01b8dbadec60afd2f1d3e08ad574315d34a33a692e96f121a32b/black-23.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "370b2cf6d012a3cdb3f76d5c4e0c311b39f311a265d7dda315800ae34fb639c6", "md5": "d19852a23ad6360a689e68a09c3249c7", "sha256": "58e5f4d08a205b11800332920e285bd25e1a75c54953e05502052738fe16b3b5" }, "downloads": -1, "filename": "black-23.11.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "d19852a23ad6360a689e68a09c3249c7", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1339007, "upload_time": "2023-11-08T05:45:18", "upload_time_iso_8601": "2023-11-08T05:45:18.414120Z", "url": "https://files.pythonhosted.org/packages/37/0b/2cf6d012a3cdb3f76d5c4e0c311b39f311a265d7dda315800ae34fb639c6/black-23.11.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f4191673913daabd47bfe346ea7ace04ba5e3daaf625ac42478d9d491a741c40", "md5": "98fc124ab43e4ffcaaf6217da8c27f6b", "sha256": "45aa1d4675964946e53ab81aeec7a37613c1cb71647b5394779e6efb79d6d187" }, "downloads": -1, "filename": "black-23.11.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "98fc124ab43e4ffcaaf6217da8c27f6b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1546854, "upload_time": "2023-11-08T05:51:11", "upload_time_iso_8601": "2023-11-08T05:51:11.244939Z", "url": "https://files.pythonhosted.org/packages/f4/19/1673913daabd47bfe346ea7ace04ba5e3daaf625ac42478d9d491a741c40/black-23.11.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "05f502e8453d4afcd595a125267e1842d7ee1777671b1232e0af53d697ae2e66", "md5": "3b675fd8ed9d0cb133248a71eff47cca", "sha256": "4c44b7211a3a0570cc097e81135faa5f261264f4dfaa22bd5ee2875a4e773bd6" }, "downloads": -1, "filename": "black-23.11.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "3b675fd8ed9d0cb133248a71eff47cca", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1390394, "upload_time": "2023-11-08T05:52:02", "upload_time_iso_8601": "2023-11-08T05:52:02.050879Z", "url": "https://files.pythonhosted.org/packages/05/f5/02e8453d4afcd595a125267e1842d7ee1777671b1232e0af53d697ae2e66/black-23.11.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "85a100b6bbc478f455bd6102eb542ab6a8f25ecc357c91db65e6fa246678f3fb", "md5": "7a7067eb27825089cb89bb39e5841d38", "sha256": "2a9acad1451632021ee0d146c8765782a0c3846e0e0ea46659d7c4f89d9b212b" }, "downloads": -1, "filename": "black-23.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7a7067eb27825089cb89bb39e5841d38", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1687524, "upload_time": "2023-11-08T05:43:45", "upload_time_iso_8601": "2023-11-08T05:43:45.003758Z", "url": "https://files.pythonhosted.org/packages/85/a1/00b6bbc478f455bd6102eb542ab6a8f25ecc357c91db65e6fa246678f3fb/black-23.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "70b970ad156cf04ed53d6e671efea412a4515167ce75559815a59a64330f8964", "md5": "446d252c1945cca8d21dacdd716c823b", "sha256": "fc7f6a44d52747e65a02558e1d807c82df1d66ffa80a601862040a43ec2e3142" }, "downloads": -1, "filename": "black-23.11.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "446d252c1945cca8d21dacdd716c823b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1337650, "upload_time": "2023-11-08T05:45:37", "upload_time_iso_8601": "2023-11-08T05:45:37.622385Z", "url": "https://files.pythonhosted.org/packages/70/b9/70ad156cf04ed53d6e671efea412a4515167ce75559815a59a64330f8964/black-23.11.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ecbac10c1f4048bc9eb26f68b230144e5f18f3b8cf6223738ceb14aabd3ec13b", "md5": "cdec28be47a56749b210e1721c360b6e", "sha256": "7f622b6822f02bfaf2a5cd31fdb7cd86fcf33dab6ced5185c35f5db98260b055" }, "downloads": -1, "filename": "black-23.11.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cdec28be47a56749b210e1721c360b6e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1559453, "upload_time": "2023-11-08T05:51:01", "upload_time_iso_8601": "2023-11-08T05:51:01.773013Z", "url": "https://files.pythonhosted.org/packages/ec/ba/c10c1f4048bc9eb26f68b230144e5f18f3b8cf6223738ceb14aabd3ec13b/black-23.11.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c0548b5090ef893cabfc6c261625e944aa03669639f52f2ee7e2e25273be32e5", "md5": "290c89c28a8a7056f43cb9a5c298401a", "sha256": "250d7e60f323fcfc8ea6c800d5eba12f7967400eb6c2d21ae85ad31c204fb1f4" }, "downloads": -1, "filename": "black-23.11.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "290c89c28a8a7056f43cb9a5c298401a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1400058, "upload_time": "2023-11-08T05:50:53", "upload_time_iso_8601": "2023-11-08T05:50:53.804470Z", "url": "https://files.pythonhosted.org/packages/c0/54/8b5090ef893cabfc6c261625e944aa03669639f52f2ee7e2e25273be32e5/black-23.11.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "428db47852614eca99e1178c7598f033fffc8e5a4687549b749216ebe0f24b6f", "md5": "1cfa2b8d16d63014973639eb29a85f09", "sha256": "5133f5507007ba08d8b7b263c7aa0f931af5ba88a29beacc4b2dc23fcefe9c06" }, "downloads": -1, "filename": "black-23.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1cfa2b8d16d63014973639eb29a85f09", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1701974, "upload_time": "2023-11-08T05:44:14", "upload_time_iso_8601": "2023-11-08T05:44:14.926037Z", "url": "https://files.pythonhosted.org/packages/42/8d/b47852614eca99e1178c7598f033fffc8e5a4687549b749216ebe0f24b6f/black-23.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "9a145aabe44a3f8058f02d595a68755150e2cda89103a1f73e7406fb730887dd", "md5": "e147f802794742665c5ac12fe587364d", "sha256": "421f3e44aa67138ab1b9bfbc22ee3780b22fa5b291e4db8ab7eee95200726b07" }, "downloads": -1, "filename": "black-23.11.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "e147f802794742665c5ac12fe587364d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1331013, "upload_time": "2023-11-08T05:45:36", "upload_time_iso_8601": "2023-11-08T05:45:36.450041Z", "url": "https://files.pythonhosted.org/packages/9a/14/5aabe44a3f8058f02d595a68755150e2cda89103a1f73e7406fb730887dd/black-23.11.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "befb8a670d2a246a351d7662e785d85a636c1c60b5800d175421cdfcb2a59b1d", "md5": "126986c3cc5e12ddd88a487f0eef3a42", "sha256": "54caaa703227c6e0c87b76326d0862184729a69b73d3b7305b6288e1d830067e" }, "downloads": -1, "filename": "black-23.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "126986c3cc5e12ddd88a487f0eef3a42", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 191996, "upload_time": "2023-11-08T05:41:28", "upload_time_iso_8601": "2023-11-08T05:41:28.288570Z", "url": "https://files.pythonhosted.org/packages/be/fb/8a670d2a246a351d7662e785d85a636c1c60b5800d175421cdfcb2a59b1d/black-23.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ef21c2d38c7c98a089fd0f7e1a8be16c07f141ed57339b3082737de90db0ca59", "md5": "c32aa30f0c858ddf8d1e24a92bfa0079", "sha256": "4c68855825ff432d197229846f971bc4d6666ce90492e5b02013bcaca4d9ab05" }, "downloads": -1, "filename": "black-23.11.0.tar.gz", "has_sig": false, "md5_digest": "c32aa30f0c858ddf8d1e24a92bfa0079", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 615416, "upload_time": "2023-11-08T05:41:30", "upload_time_iso_8601": "2023-11-08T05:41:30.844622Z", "url": "https://files.pythonhosted.org/packages/ef/21/c2d38c7c98a089fd0f7e1a8be16c07f141ed57339b3082737de90db0ca59/black-23.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "23.12.0": [ { "comment_text": "", "digests": { "blake2b_256": "3c2bae76719dcc163b832a1aba01fd171a6dc5186bd398f9b63f35150108059f", "md5": "52f92da80b86350fc7f8b73d9918d322", "sha256": "67f19562d367468ab59bd6c36a72b2c84bc2f16b59788690e02bbcb140a77175" }, "downloads": -1, "filename": "black-23.12.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "52f92da80b86350fc7f8b73d9918d322", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1560313, "upload_time": "2023-12-12T06:36:44", "upload_time_iso_8601": "2023-12-12T06:36:44.511670Z", "url": "https://files.pythonhosted.org/packages/3c/2b/ae76719dcc163b832a1aba01fd171a6dc5186bd398f9b63f35150108059f/black-23.12.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7ca01057b39747783dfdaf40d2bea62fc9576270c9b2fe229054f491191b66a3", "md5": "ed437b4e7e2081e633e24df101b3be0e", "sha256": "bbd75d9f28a7283b7426160ca21c5bd640ca7cd8ef6630b4754b6df9e2da8462" }, "downloads": -1, "filename": "black-23.12.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "ed437b4e7e2081e633e24df101b3be0e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1404546, "upload_time": "2023-12-12T06:36:42", "upload_time_iso_8601": "2023-12-12T06:36:42.261216Z", "url": "https://files.pythonhosted.org/packages/7c/a0/1057b39747783dfdaf40d2bea62fc9576270c9b2fe229054f491191b66a3/black-23.12.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "eafa15ec0d8d5b97f3637569f26b5967024aef4b2bb1057ec871b2d2ff738248", "md5": "a36a867b127d01a9c90beace04da7642", "sha256": "593596f699ca2dcbbbdfa59fcda7d8ad6604370c10228223cd6cf6ce1ce7ed7e" }, "downloads": -1, "filename": "black-23.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a36a867b127d01a9c90beace04da7642", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1711439, "upload_time": "2023-12-12T06:31:12", "upload_time_iso_8601": "2023-12-12T06:31:12.846596Z", "url": "https://files.pythonhosted.org/packages/ea/fa/15ec0d8d5b97f3637569f26b5967024aef4b2bb1057ec871b2d2ff738248/black-23.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0d5d1218697b48731c06eb128bfa12a11668cd665a0028de8d9ee65ced051b35", "md5": "966894e17115c319ebd42529fbfa5250", "sha256": "12d5f10cce8dc27202e9a252acd1c9a426c83f95496c959406c96b785a92bb7d" }, "downloads": -1, "filename": "black-23.12.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "966894e17115c319ebd42529fbfa5250", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1333091, "upload_time": "2023-12-12T06:31:24", "upload_time_iso_8601": "2023-12-12T06:31:24.808321Z", "url": "https://files.pythonhosted.org/packages/0d/5d/1218697b48731c06eb128bfa12a11668cd665a0028de8d9ee65ced051b35/black-23.12.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "cffbbb3aa5c569a0a49d0491244350e1a6c4a5f94636262bbbf4b19d71c5c5b9", "md5": "fecbe8a62dcd23553ce3a23426672d77", "sha256": "e73c5e3d37e5a3513d16b33305713237a234396ae56769b839d7c40759b8a41c" }, "downloads": -1, "filename": "black-23.12.0-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fecbe8a62dcd23553ce3a23426672d77", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1541713, "upload_time": "2023-12-12T06:38:15", "upload_time_iso_8601": "2023-12-12T06:38:15.544540Z", "url": "https://files.pythonhosted.org/packages/cf/fb/bb3aa5c569a0a49d0491244350e1a6c4a5f94636262bbbf4b19d71c5c5b9/black-23.12.0-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6b5b623a3112e0366ab69d20bb0e1f3348f228c3baef6bb30756cea7dadce37b", "md5": "eaaeed95feaad3c30e30baf459da626d", "sha256": "ba09cae1657c4f8a8c9ff6cfd4a6baaf915bb4ef7d03acffe6a2f6585fa1bd01" }, "downloads": -1, "filename": "black-23.12.0-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "eaaeed95feaad3c30e30baf459da626d", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1388317, "upload_time": "2023-12-12T06:37:32", "upload_time_iso_8601": "2023-12-12T06:37:32.797640Z", "url": "https://files.pythonhosted.org/packages/6b/5b/623a3112e0366ab69d20bb0e1f3348f228c3baef6bb30756cea7dadce37b/black-23.12.0-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8b818c1f506f59b5e5f043e4169cc45465a76e5d3fdd1e91e253c492dda2dac9", "md5": "e30c2e1f509868b7881a34abc32544d0", "sha256": "ace64c1a349c162d6da3cef91e3b0e78c4fc596ffde9413efa0525456148873d" }, "downloads": -1, "filename": "black-23.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e30c2e1f509868b7881a34abc32544d0", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1692153, "upload_time": "2023-12-12T06:30:57", "upload_time_iso_8601": "2023-12-12T06:30:57.636898Z", "url": "https://files.pythonhosted.org/packages/8b/81/8c1f506f59b5e5f043e4169cc45465a76e5d3fdd1e91e253c492dda2dac9/black-23.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "818e8b776a0280ba5b04ce084635b3df45e442c5b37d5861aac7d112c2910af5", "md5": "003b709ff5dfc0c0a35292da0c286e23", "sha256": "72db37a2266b16d256b3ea88b9affcdd5c41a74db551ec3dd4609a59c17d25bf" }, "downloads": -1, "filename": "black-23.12.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "003b709ff5dfc0c0a35292da0c286e23", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1340994, "upload_time": "2023-12-12T06:31:36", "upload_time_iso_8601": "2023-12-12T06:31:36.703655Z", "url": "https://files.pythonhosted.org/packages/81/8e/8b776a0280ba5b04ce084635b3df45e442c5b37d5861aac7d112c2910af5/black-23.12.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d9fb137c645559fd646c6364ebc8b3b121c46173fabb20af5230850c24b365a5", "md5": "803501c3c4ea4d6f8ea8147e807fb4b1", "sha256": "fdf6f23c83078a6c8da2442f4d4eeb19c28ac2a6416da7671b72f0295c4a697b" }, "downloads": -1, "filename": "black-23.12.0-cp312-cp312-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "803501c3c4ea4d6f8ea8147e807fb4b1", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1569918, "upload_time": "2023-12-12T06:40:34", "upload_time_iso_8601": "2023-12-12T06:40:34.843754Z", "url": "https://files.pythonhosted.org/packages/d9/fb/137c645559fd646c6364ebc8b3b121c46173fabb20af5230850c24b365a5/black-23.12.0-cp312-cp312-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "36baabc388fa068e2e172241b83433587a669d50e1f8b16232f5e5b4c7ffaa24", "md5": "1f978d9c9649f48a880225a22b8f6f67", "sha256": "39dda060b9b395a6b7bf9c5db28ac87b3c3f48d4fdff470fa8a94ab8271da47e" }, "downloads": -1, "filename": "black-23.12.0-cp312-cp312-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "1f978d9c9649f48a880225a22b8f6f67", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1398942, "upload_time": "2023-12-12T06:37:29", "upload_time_iso_8601": "2023-12-12T06:37:29.551460Z", "url": "https://files.pythonhosted.org/packages/36/ba/abc388fa068e2e172241b83433587a669d50e1f8b16232f5e5b4c7ffaa24/black-23.12.0-cp312-cp312-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "10a10d40c81f8386f108fca5b0757a7da7d83b71be90c6ed686e91c5bf359ce0", "md5": "fc934434daf6f7d64e7f92f9117c872e", "sha256": "7231670266ca5191a76cb838185d9be59cfa4f5dd401b7c1c70b993c58f6b1b5" }, "downloads": -1, "filename": "black-23.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "fc934434daf6f7d64e7f92f9117c872e", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1720579, "upload_time": "2023-12-12T06:31:07", "upload_time_iso_8601": "2023-12-12T06:31:07.674688Z", "url": "https://files.pythonhosted.org/packages/10/a1/0d40c81f8386f108fca5b0757a7da7d83b71be90c6ed686e91c5bf359ce0/black-23.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "cd4b7972d9b2f249f70a35dfb3f10fd977bc8df6219fd6cf1c2825d8373b1eab", "md5": "6780f5f01acb93442f7fe54d32556741", "sha256": "193946e634e80bfb3aec41830f5d7431f8dd5b20d11d89be14b84a97c6b8bc75" }, "downloads": -1, "filename": "black-23.12.0-cp312-cp312-win_amd64.whl", "has_sig": false, "md5_digest": "6780f5f01acb93442f7fe54d32556741", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1351033, "upload_time": "2023-12-12T06:32:25", "upload_time_iso_8601": "2023-12-12T06:32:25.189043Z", "url": "https://files.pythonhosted.org/packages/cd/4b/7972d9b2f249f70a35dfb3f10fd977bc8df6219fd6cf1c2825d8373b1eab/black-23.12.0-cp312-cp312-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1e5f9e357782acae8c5ed28e972ea699f1397e02250b599e3c2c8a883408f500", "md5": "be999028146860b92389e54447efdf94", "sha256": "bcf91b01ddd91a2fed9a8006d7baa94ccefe7e518556470cf40213bd3d44bbbc" }, "downloads": -1, "filename": "black-23.12.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "be999028146860b92389e54447efdf94", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1548572, "upload_time": "2023-12-12T06:42:05", "upload_time_iso_8601": "2023-12-12T06:42:05.967308Z", "url": "https://files.pythonhosted.org/packages/1e/5f/9e357782acae8c5ed28e972ea699f1397e02250b599e3c2c8a883408f500/black-23.12.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a47c5401139d936f377800e813fa145e9dc52ee87e9192f767c8b51960728abf", "md5": "d631dcbe74628741b63ffede83554b4c", "sha256": "996650a89fe5892714ea4ea87bc45e41a59a1e01675c42c433a35b490e5aa3f0" }, "downloads": -1, "filename": "black-23.12.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "d631dcbe74628741b63ffede83554b4c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1393349, "upload_time": "2023-12-12T06:39:26", "upload_time_iso_8601": "2023-12-12T06:39:26.130414Z", "url": "https://files.pythonhosted.org/packages/a4/7c/5401139d936f377800e813fa145e9dc52ee87e9192f767c8b51960728abf/black-23.12.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "dbe793d6fe9578d3c703a9aa62f90015a9df791e26f0d7654f1e0f5f7584826c", "md5": "ab2e721939669c8798b4aede932fd21e", "sha256": "bdbff34c487239a63d86db0c9385b27cdd68b1bfa4e706aa74bb94a435403672" }, "downloads": -1, "filename": "black-23.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ab2e721939669c8798b4aede932fd21e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1695357, "upload_time": "2023-12-12T06:30:54", "upload_time_iso_8601": "2023-12-12T06:30:54.963971Z", "url": "https://files.pythonhosted.org/packages/db/e7/93d6fe9578d3c703a9aa62f90015a9df791e26f0d7654f1e0f5f7584826c/black-23.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3dc8289ac7cbfb49587668f371a1d4192a7cb668592db4333fa607a4b8ad4d1a", "md5": "4a3902e37b51c065a00181671b6f3ae2", "sha256": "97af22278043a6a1272daca10a6f4d36c04dfa77e61cbaaf4482e08f3640e9f0" }, "downloads": -1, "filename": "black-23.12.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "4a3902e37b51c065a00181671b6f3ae2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1337894, "upload_time": "2023-12-12T06:32:07", "upload_time_iso_8601": "2023-12-12T06:32:07.553543Z", "url": "https://files.pythonhosted.org/packages/3d/c8/289ac7cbfb49587668f371a1d4192a7cb668592db4333fa607a4b8ad4d1a/black-23.12.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2bf5e873825df8f7550243b17bd8f43ca9cc18dddc6c523dbcbf42587f5c0aa0", "md5": "406f6537c75872a1a553b8778e5c47f5", "sha256": "ead25c273adfad1095a8ad32afdb8304933efba56e3c1d31b0fee4143a1e424a" }, "downloads": -1, "filename": "black-23.12.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "406f6537c75872a1a553b8778e5c47f5", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1559928, "upload_time": "2023-12-12T06:41:56", "upload_time_iso_8601": "2023-12-12T06:41:56.069223Z", "url": "https://files.pythonhosted.org/packages/2b/f5/e873825df8f7550243b17bd8f43ca9cc18dddc6c523dbcbf42587f5c0aa0/black-23.12.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "385303a6bbd039fc6c56bc3d96d58c451a2330dd64cf1e384e4401764cfd90de", "md5": "1b0f5c23da4d181087df66a30c3967a2", "sha256": "c71048345bdbced456cddf1622832276d98a710196b842407840ae8055ade6ee" }, "downloads": -1, "filename": "black-23.12.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "1b0f5c23da4d181087df66a30c3967a2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1403634, "upload_time": "2023-12-12T06:41:04", "upload_time_iso_8601": "2023-12-12T06:41:04.610896Z", "url": "https://files.pythonhosted.org/packages/38/53/03a6bbd039fc6c56bc3d96d58c451a2330dd64cf1e384e4401764cfd90de/black-23.12.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ed3524859e6437c9ee2b6d8b209f948a2abc5dd4bf0062b6cc1a6da2fe2119e6", "md5": "56315add4c6619bf010f946f28a0f1c3", "sha256": "81a832b6e00eef2c13b3239d514ea3b7d5cc3eaa03d0474eedcbbda59441ba5d" }, "downloads": -1, "filename": "black-23.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "56315add4c6619bf010f946f28a0f1c3", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1709957, "upload_time": "2023-12-12T06:30:54", "upload_time_iso_8601": "2023-12-12T06:30:54.260101Z", "url": "https://files.pythonhosted.org/packages/ed/35/24859e6437c9ee2b6d8b209f948a2abc5dd4bf0062b6cc1a6da2fe2119e6/black-23.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "eb5df7397c3be29525ddf32fb2a652cdc0aac3b75379bc424089fe666c1e9bdf", "md5": "07052c3c2be65ccc6a51a3d3c0fbc0d0", "sha256": "6a82a711d13e61840fb11a6dfecc7287f2424f1ca34765e70c909a35ffa7fb95" }, "downloads": -1, "filename": "black-23.12.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "07052c3c2be65ccc6a51a3d3c0fbc0d0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1332570, "upload_time": "2023-12-12T06:31:37", "upload_time_iso_8601": "2023-12-12T06:31:37.513717Z", "url": "https://files.pythonhosted.org/packages/eb/5d/f7397c3be29525ddf32fb2a652cdc0aac3b75379bc424089fe666c1e9bdf/black-23.12.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2ed4185d3633dcd9e33b13aa041468293695a91c550e0d18ab1220a2cc0548aa", "md5": "e8d88cb6704fd635aa9ffa1f37218510", "sha256": "a7c07db8200b5315dc07e331dda4d889a56f6bf4db6a9c2a526fa3166a81614f" }, "downloads": -1, "filename": "black-23.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e8d88cb6704fd635aa9ffa1f37218510", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 194336, "upload_time": "2023-12-12T06:28:28", "upload_time_iso_8601": "2023-12-12T06:28:28.275791Z", "url": "https://files.pythonhosted.org/packages/2e/d4/185d3633dcd9e33b13aa041468293695a91c550e0d18ab1220a2cc0548aa/black-23.12.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5a73618bcfd4a4868d52c02ff7136ec60e9d63bc83911d3d8b4998e42acf9557", "md5": "a799669ca320cc414b892dff86708e48", "sha256": "330a327b422aca0634ecd115985c1c7fd7bdb5b5a2ef8aa9888a82e2ebe9437a" }, "downloads": -1, "filename": "black-23.12.0.tar.gz", "has_sig": false, "md5_digest": "a799669ca320cc414b892dff86708e48", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 620742, "upload_time": "2023-12-12T06:28:31", "upload_time_iso_8601": "2023-12-12T06:28:31.353573Z", "url": "https://files.pythonhosted.org/packages/5a/73/618bcfd4a4868d52c02ff7136ec60e9d63bc83911d3d8b4998e42acf9557/black-23.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "23.12.1": [ { "comment_text": "", "digests": { "blake2b_256": "fb58677da52d845b59505a8a787ff22eff9cfd9046b5789aa2bd387b236db5c5", "md5": "b3bfc89d72e88027fed8be5f315bfeee", "sha256": "e0aaf6041986767a5e0ce663c7a2f0e9eaf21e6ff87a5f95cbf3675bfd4c41d2" }, "downloads": -1, "filename": "black-23.12.1-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b3bfc89d72e88027fed8be5f315bfeee", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1560531, "upload_time": "2023-12-22T23:18:20", "upload_time_iso_8601": "2023-12-22T23:18:20.555335Z", "url": "https://files.pythonhosted.org/packages/fb/58/677da52d845b59505a8a787ff22eff9cfd9046b5789aa2bd387b236db5c5/black-23.12.1-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1192522a4f1e4b2b8da62e4ec0cb8acf2d257e6d39b31f4214f0fd94d2eeb5bd", "md5": "8fc708faae3b611900fce54d79895795", "sha256": "c88b3711d12905b74206227109272673edce0cb29f27e1385f33b0163c414bba" }, "downloads": -1, "filename": "black-23.12.1-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "8fc708faae3b611900fce54d79895795", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1404644, "upload_time": "2023-12-22T23:17:46", "upload_time_iso_8601": "2023-12-22T23:17:46.425038Z", "url": "https://files.pythonhosted.org/packages/11/92/522a4f1e4b2b8da62e4ec0cb8acf2d257e6d39b31f4214f0fd94d2eeb5bd/black-23.12.1-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a4dcaf67d8281e9a24f73d24b060f3f03f6d9ad6be259b3c6acef2845e17d09c", "md5": "6754c980710f92990b787c1808952068", "sha256": "a920b569dc6b3472513ba6ddea21f440d4b4c699494d2e972a1753cdc25df7b0" }, "downloads": -1, "filename": "black-23.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6754c980710f92990b787c1808952068", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1711153, "upload_time": "2023-12-22T23:08:34", "upload_time_iso_8601": "2023-12-22T23:08:34.400735Z", "url": "https://files.pythonhosted.org/packages/a4/dc/af67d8281e9a24f73d24b060f3f03f6d9ad6be259b3c6acef2845e17d09c/black-23.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7e0f94d7c36b421ea187359c413be7b9fc66dc105620c3a30b1c94310265830a", "md5": "eb3383dc76ae38ebf2c714648a75d0db", "sha256": "3fa4be75ef2a6b96ea8d92b1587dd8cb3a35c7e3d51f0738ced0781c3aa3a5a3" }, "downloads": -1, "filename": "black-23.12.1-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "eb3383dc76ae38ebf2c714648a75d0db", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1332918, "upload_time": "2023-12-22T23:10:28", "upload_time_iso_8601": "2023-12-22T23:10:28.188786Z", "url": "https://files.pythonhosted.org/packages/7e/0f/94d7c36b421ea187359c413be7b9fc66dc105620c3a30b1c94310265830a/black-23.12.1-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ed2cd9b1a77101e6e5f294f6553d76c39322122bfea2a438aeea4eb6d4b22749", "md5": "054f0b19bb43e96f28d4a06c3ae809ae", "sha256": "8d4df77958a622f9b5a4c96edb4b8c0034f8434032ab11077ec6c56ae9f384ba" }, "downloads": -1, "filename": "black-23.12.1-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "054f0b19bb43e96f28d4a06c3ae809ae", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1541926, "upload_time": "2023-12-22T23:23:17", "upload_time_iso_8601": "2023-12-22T23:23:17.720283Z", "url": "https://files.pythonhosted.org/packages/ed/2c/d9b1a77101e6e5f294f6553d76c39322122bfea2a438aeea4eb6d4b22749/black-23.12.1-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "72e2d981a3ff05ba9abe3cfa33e70c986facb0614fd57c4f802ef435f4dd1697", "md5": "2f647f18253db525af253ca6366ecc0b", "sha256": "602cfb1196dc692424c70b6507593a2b29aac0547c1be9a1d1365f0d964c353b" }, "downloads": -1, "filename": "black-23.12.1-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "2f647f18253db525af253ca6366ecc0b", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1388465, "upload_time": "2023-12-22T23:19:00", "upload_time_iso_8601": "2023-12-22T23:19:00.611901Z", "url": "https://files.pythonhosted.org/packages/72/e2/d981a3ff05ba9abe3cfa33e70c986facb0614fd57c4f802ef435f4dd1697/black-23.12.1-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "eb591f5c8eb7bba8a8b1bb5c87f097d16410c93a48a6655be3773db5d2783deb", "md5": "d60e2f683be4f8ad2c23f1db6c2c99ae", "sha256": "9c4352800f14be5b4864016882cdba10755bd50805c95f728011bcb47a4afd59" }, "downloads": -1, "filename": "black-23.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d60e2f683be4f8ad2c23f1db6c2c99ae", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1691993, "upload_time": "2023-12-22T23:08:32", "upload_time_iso_8601": "2023-12-22T23:08:32.018641Z", "url": "https://files.pythonhosted.org/packages/eb/59/1f5c8eb7bba8a8b1bb5c87f097d16410c93a48a6655be3773db5d2783deb/black-23.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "37bfa80abc6fcdb00f0d4d3d74184b172adbf2197f6b002913fa0fb6af4dc6db", "md5": "0e654aa33c992ee40ca11c03ed1017b9", "sha256": "0808494f2b2df923ffc5723ed3c7b096bd76341f6213989759287611e9837d50" }, "downloads": -1, "filename": "black-23.12.1-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "0e654aa33c992ee40ca11c03ed1017b9", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1340929, "upload_time": "2023-12-22T23:09:37", "upload_time_iso_8601": "2023-12-22T23:09:37.088528Z", "url": "https://files.pythonhosted.org/packages/37/bf/a80abc6fcdb00f0d4d3d74184b172adbf2197f6b002913fa0fb6af4dc6db/black-23.12.1-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "66168726cedc83be841dfa854bbeef1288ee82272282a71048d7935292182b0b", "md5": "773115b5f2f19ada3835d7cbd8e414b5", "sha256": "25e57fd232a6d6ff3f4478a6fd0580838e47c93c83eaf1ccc92d4faf27112c4e" }, "downloads": -1, "filename": "black-23.12.1-cp312-cp312-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "773115b5f2f19ada3835d7cbd8e414b5", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1569989, "upload_time": "2023-12-22T23:20:22", "upload_time_iso_8601": "2023-12-22T23:20:22.158322Z", "url": "https://files.pythonhosted.org/packages/66/16/8726cedc83be841dfa854bbeef1288ee82272282a71048d7935292182b0b/black-23.12.1-cp312-cp312-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d21e30f5eafcc41b8378890ba39b693fa111f7dca8a2620ba5162075d95ffe46", "md5": "49bdda49cc31b55cd43f8b902202de86", "sha256": "2d9e13db441c509a3763a7a3d9a49ccc1b4e974a47be4e08ade2a228876500ec" }, "downloads": -1, "filename": "black-23.12.1-cp312-cp312-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "49bdda49cc31b55cd43f8b902202de86", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1398647, "upload_time": "2023-12-22T23:19:57", "upload_time_iso_8601": "2023-12-22T23:19:57.225488Z", "url": "https://files.pythonhosted.org/packages/d2/1e/30f5eafcc41b8378890ba39b693fa111f7dca8a2620ba5162075d95ffe46/black-23.12.1-cp312-cp312-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "99deddb45cc044256431d96d846ce03164d149d81ca606b5172224d1872e0b58", "md5": "6bbc9f0d871cb70d5738b8dd183e3bb9", "sha256": "6d1bd9c210f8b109b1762ec9fd36592fdd528485aadb3f5849b2740ef17e674e" }, "downloads": -1, "filename": "black-23.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6bbc9f0d871cb70d5738b8dd183e3bb9", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1720450, "upload_time": "2023-12-22T23:08:52", "upload_time_iso_8601": "2023-12-22T23:08:52.675129Z", "url": "https://files.pythonhosted.org/packages/99/de/ddb45cc044256431d96d846ce03164d149d81ca606b5172224d1872e0b58/black-23.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "982b54e5dbe9be5a10cbea2259517206ff7b6a452bb34e07508c7e1395950833", "md5": "b4863224e3eb88fe2e89588d2e484e4f", "sha256": "ae76c22bde5cbb6bfd211ec343ded2163bba7883c7bc77f6b756a1049436fbb9" }, "downloads": -1, "filename": "black-23.12.1-cp312-cp312-win_amd64.whl", "has_sig": false, "md5_digest": "b4863224e3eb88fe2e89588d2e484e4f", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1351070, "upload_time": "2023-12-22T23:09:32", "upload_time_iso_8601": "2023-12-22T23:09:32.762735Z", "url": "https://files.pythonhosted.org/packages/98/2b/54e5dbe9be5a10cbea2259517206ff7b6a452bb34e07508c7e1395950833/black-23.12.1-cp312-cp312-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1a17b9e7302b897330528aab2bb4394120d94c378e75e37baf800e7858c577c8", "md5": "3bcce753e246860d155029997388663d", "sha256": "1fa88a0f74e50e4487477bc0bb900c6781dbddfdfa32691e780bf854c3b4a47f" }, "downloads": -1, "filename": "black-23.12.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3bcce753e246860d155029997388663d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1548775, "upload_time": "2023-12-22T23:24:57", "upload_time_iso_8601": "2023-12-22T23:24:57.639266Z", "url": "https://files.pythonhosted.org/packages/1a/17/b9e7302b897330528aab2bb4394120d94c378e75e37baf800e7858c577c8/black-23.12.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "fc567c6ef15b238b4924587bf3381daf733f0d70f82183876e0ff44f1da25a80", "md5": "80daad0cd38afd067298966d4da17281", "sha256": "a4d6a9668e45ad99d2f8ec70d5c8c04ef4f32f648ef39048d010b0689832ec6d" }, "downloads": -1, "filename": "black-23.12.1-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "80daad0cd38afd067298966d4da17281", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1393271, "upload_time": "2023-12-22T23:22:41", "upload_time_iso_8601": "2023-12-22T23:22:41.644202Z", "url": "https://files.pythonhosted.org/packages/fc/56/7c6ef15b238b4924587bf3381daf733f0d70f82183876e0ff44f1da25a80/black-23.12.1-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "40fe658c1cb463adcd9f34d3b2d89007d576e9f2007d22c70c95700f95ee4a5e", "md5": "d4fee8725dccf7158a64876a5d2c661b", "sha256": "b18fb2ae6c4bb63eebe5be6bd869ba2f14fd0259bda7d18a46b764d8fb86298a" }, "downloads": -1, "filename": "black-23.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d4fee8725dccf7158a64876a5d2c661b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1695150, "upload_time": "2023-12-22T23:08:38", "upload_time_iso_8601": "2023-12-22T23:08:38.370811Z", "url": "https://files.pythonhosted.org/packages/40/fe/658c1cb463adcd9f34d3b2d89007d576e9f2007d22c70c95700f95ee4a5e/black-23.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ddcc3161f41c7d59c5de57fa0b57e97da78c1213daabf96c2259a476bf1d7d07", "md5": "e7d1a8105add45e4f761ecb48a18f8a0", "sha256": "c04b6d9d20e9c13f43eee8ea87d44156b8505ca8a3c878773f68b4e4812a421e" }, "downloads": -1, "filename": "black-23.12.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "e7d1a8105add45e4f761ecb48a18f8a0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1337815, "upload_time": "2023-12-22T23:09:23", "upload_time_iso_8601": "2023-12-22T23:09:23.627117Z", "url": "https://files.pythonhosted.org/packages/dd/cc/3161f41c7d59c5de57fa0b57e97da78c1213daabf96c2259a476bf1d7d07/black-23.12.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8597f5c6b46fa6f47263e6e27d6feef967e3e99f4e1aedaaf93fd98f904580e2", "md5": "281f372fac59042f76db012eb1afd039", "sha256": "3e1b38b3135fd4c025c28c55ddfc236b05af657828a8a6abe5deec419a0b7055" }, "downloads": -1, "filename": "black-23.12.1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "281f372fac59042f76db012eb1afd039", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1560093, "upload_time": "2023-12-22T23:23:40", "upload_time_iso_8601": "2023-12-22T23:23:40.554769Z", "url": "https://files.pythonhosted.org/packages/85/97/f5c6b46fa6f47263e6e27d6feef967e3e99f4e1aedaaf93fd98f904580e2/black-23.12.1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ef5441aec3623ac8c610ea9eabc2092c7c73aab293ef2858fb3b66904debe78c", "md5": "5a9ee70fa4a20f5e5e6e6e1057224086", "sha256": "4f0031eaa7b921db76decd73636ef3a12c942ed367d8c3841a0739412b260a54" }, "downloads": -1, "filename": "black-23.12.1-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "5a9ee70fa4a20f5e5e6e6e1057224086", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1403728, "upload_time": "2023-12-22T23:22:52", "upload_time_iso_8601": "2023-12-22T23:22:52.826437Z", "url": "https://files.pythonhosted.org/packages/ef/54/41aec3623ac8c610ea9eabc2092c7c73aab293ef2858fb3b66904debe78c/black-23.12.1-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e424afa2005a508768228b88ee04e647022be9852e675c8d7237fb1e73e4607d", "md5": "28c541e330fa79103cae502b125f0280", "sha256": "97e56155c6b737854e60a9ab1c598ff2533d57e7506d97af5481141671abf3ea" }, "downloads": -1, "filename": "black-23.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "28c541e330fa79103cae502b125f0280", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1710054, "upload_time": "2023-12-22T23:08:47", "upload_time_iso_8601": "2023-12-22T23:08:47.238136Z", "url": "https://files.pythonhosted.org/packages/e4/24/afa2005a508768228b88ee04e647022be9852e675c8d7237fb1e73e4607d/black-23.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "cb61111749529f766170a6cbe4cce5209a94ddba4bad0dda3793a6af641515b3", "md5": "df10638f4d56d48289cc7a82e0ff528d", "sha256": "dd15245c8b68fe2b6bd0f32c1556509d11bb33aec9b5d0866dd8e2ed3dba09c2" }, "downloads": -1, "filename": "black-23.12.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "df10638f4d56d48289cc7a82e0ff528d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1332558, "upload_time": "2023-12-22T23:09:08", "upload_time_iso_8601": "2023-12-22T23:09:08.454572Z", "url": "https://files.pythonhosted.org/packages/cb/61/111749529f766170a6cbe4cce5209a94ddba4bad0dda3793a6af641515b3/black-23.12.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7b144da7b12a9abc43a601c215cb5a3d176734578da109f0dbf0a832ed78be09", "md5": "c612b7c1c6ec267519f2e8ff8d1e0aa4", "sha256": "78baad24af0f033958cad29731e27363183e140962595def56423e626f4bee3e" }, "downloads": -1, "filename": "black-23.12.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c612b7c1c6ec267519f2e8ff8d1e0aa4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 194363, "upload_time": "2023-12-22T23:06:14", "upload_time_iso_8601": "2023-12-22T23:06:14.278665Z", "url": "https://files.pythonhosted.org/packages/7b/14/4da7b12a9abc43a601c215cb5a3d176734578da109f0dbf0a832ed78be09/black-23.12.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "fdf4a57cde4b60da0e249073009f4a9087e9e0a955deae78d3c2a493208d0c5c", "md5": "045b1165bce4833861f7d16324bfd869", "sha256": "4ce3ef14ebe8d9509188014d96af1c456a910d5b5cbf434a09fef7e024b3d0d5" }, "downloads": -1, "filename": "black-23.12.1.tar.gz", "has_sig": false, "md5_digest": "045b1165bce4833861f7d16324bfd869", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 620809, "upload_time": "2023-12-22T23:06:17", "upload_time_iso_8601": "2023-12-22T23:06:17.382835Z", "url": "https://files.pythonhosted.org/packages/fd/f4/a57cde4b60da0e249073009f4a9087e9e0a955deae78d3c2a493208d0c5c/black-23.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "23.1a1": [ { "comment_text": "", "digests": { "blake2b_256": "102d8644a39884ee055949caf9d291bdefccd367f72d74f7651e99ce1f6e810a", "md5": "dc45ed394072bffa4ee530e621c18de2", "sha256": "5fb7641d442ede92538bc70fa0201f884753a7d0f62f26c722b7b00301b95902" }, "downloads": -1, "filename": "black-23.1a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "dc45ed394072bffa4ee530e621c18de2", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1567457, "upload_time": "2022-12-18T15:51:26", "upload_time_iso_8601": "2022-12-18T15:51:26.779999Z", "url": "https://files.pythonhosted.org/packages/10/2d/8644a39884ee055949caf9d291bdefccd367f72d74f7651e99ce1f6e810a/black-23.1a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "08da790a7431c0b960d4d3a82c93f302be1f05f3ba50ccf2f41eb9dfcd34b52e", "md5": "198953d29864a85de15bd869548d6dce", "sha256": "88288a645402106b8eb9f50d7340ae741e16240bb01c2eed8466549153daa96e" }, "downloads": -1, "filename": "black-23.1a1-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "198953d29864a85de15bd869548d6dce", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1216722, "upload_time": "2022-12-18T15:54:49", "upload_time_iso_8601": "2022-12-18T15:54:49.613841Z", "url": "https://files.pythonhosted.org/packages/08/da/790a7431c0b960d4d3a82c93f302be1f05f3ba50ccf2f41eb9dfcd34b52e/black-23.1a1-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8ac52f452ad19e4e81e1cacf32269f020f3073b904de440b44dad2a89caa6fc5", "md5": "a884b5e4d2b141916c9d72f2e1f7d9a4", "sha256": "4db1d8027ce7ae53f0ccf02b0be0b8808fefb291d6cb1543420f4165d96d364c" }, "downloads": -1, "filename": "black-23.1a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a884b5e4d2b141916c9d72f2e1f7d9a4", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1552076, "upload_time": "2022-12-18T15:51:28", "upload_time_iso_8601": "2022-12-18T15:51:28.557425Z", "url": "https://files.pythonhosted.org/packages/8a/c5/2f452ad19e4e81e1cacf32269f020f3073b904de440b44dad2a89caa6fc5/black-23.1a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1f40743d9bcdf2504362cdbf7373c4945e1b9bff5ed7a09673669c07094fedb9", "md5": "f371e75cdcf2f84ecd5f5d03ffb69eef", "sha256": "88ec25a64063945b4591b6378bead544c5d3260de1c93ad96f3ad2d76ddd76fd" }, "downloads": -1, "filename": "black-23.1a1-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "f371e75cdcf2f84ecd5f5d03ffb69eef", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1220403, "upload_time": "2022-12-18T15:54:51", "upload_time_iso_8601": "2022-12-18T15:54:51.258322Z", "url": "https://files.pythonhosted.org/packages/1f/40/743d9bcdf2504362cdbf7373c4945e1b9bff5ed7a09673669c07094fedb9/black-23.1a1-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a5901438e7cb95574a48f182522f3d5bdff7e45487007802b2b5dc9a66c47756", "md5": "930fa7cdca36c17dca1bfd9e3e29b2e7", "sha256": "8dff6f0157e47fbbeada046fca144b6557d3be2fb2602d668881cd179f04a352" }, "downloads": -1, "filename": "black-23.1a1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "930fa7cdca36c17dca1bfd9e3e29b2e7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1492317, "upload_time": "2022-12-18T15:51:29", "upload_time_iso_8601": "2022-12-18T15:51:29.848011Z", "url": "https://files.pythonhosted.org/packages/a5/90/1438e7cb95574a48f182522f3d5bdff7e45487007802b2b5dc9a66c47756/black-23.1a1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6ba1b5cfb72f084875d88f4a3810fbfd2573e18e5d6f29dc3b3e638488ad6c48", "md5": "897f0f2961c519493a8d745cbd8398b1", "sha256": "ca658b69260a18bf7aa0b0a6562dbbd304a737487d1318998aaca5a75901fd2c" }, "downloads": -1, "filename": "black-23.1a1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "897f0f2961c519493a8d745cbd8398b1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1158836, "upload_time": "2022-12-18T15:54:52", "upload_time_iso_8601": "2022-12-18T15:54:52.709453Z", "url": "https://files.pythonhosted.org/packages/6b/a1/b5cfb72f084875d88f4a3810fbfd2573e18e5d6f29dc3b3e638488ad6c48/black-23.1a1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a315bb2fd3337c3ca86af12152ef9e2537f5afd3d31e9a274c156e213941fdf3", "md5": "caeaee3051771e21c9a5fc2039d49200", "sha256": "85dede655442f5e246e7abd667fe07e14916897ba52f3640b5489bf11f7dbf67" }, "downloads": -1, "filename": "black-23.1a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "caeaee3051771e21c9a5fc2039d49200", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1557158, "upload_time": "2022-12-18T15:51:31", "upload_time_iso_8601": "2022-12-18T15:51:31.527998Z", "url": "https://files.pythonhosted.org/packages/a3/15/bb2fd3337c3ca86af12152ef9e2537f5afd3d31e9a274c156e213941fdf3/black-23.1a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "fb49b82746d6ba5def2283b015eb77237246655692b6cc7f46de4a0d476f1663", "md5": "1042d17980dd6338804a4431301cc272", "sha256": "ddbf9da228726d46f45c29024263e160d41030a415097254817d65127012d1a2" }, "downloads": -1, "filename": "black-23.1a1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "1042d17980dd6338804a4431301cc272", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1225774, "upload_time": "2022-12-18T15:54:54", "upload_time_iso_8601": "2022-12-18T15:54:54.459629Z", "url": "https://files.pythonhosted.org/packages/fb/49/b82746d6ba5def2283b015eb77237246655692b6cc7f46de4a0d476f1663/black-23.1a1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "81eb7bd97387c5f424f9c5b4508200e4390b8729c7fd9e34f03c3c19c080f43b", "md5": "64b6e5e426bdacca9c77a04a140a6265", "sha256": "63330069d8ec909cf4e2c4d43a7f00aeb03335430ef9fec6cd2328e6ebde8a77" }, "downloads": -1, "filename": "black-23.1a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "64b6e5e426bdacca9c77a04a140a6265", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1567207, "upload_time": "2022-12-18T15:51:33", "upload_time_iso_8601": "2022-12-18T15:51:33.036277Z", "url": "https://files.pythonhosted.org/packages/81/eb/7bd97387c5f424f9c5b4508200e4390b8729c7fd9e34f03c3c19c080f43b/black-23.1a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c2f260ef34243ef31f4a9b0161aaeec03c21997f4d8ad020d01da3cea3acd96a", "md5": "8da168a5d9bc5f392e78051393827470", "sha256": "793c9176beb2adf295f6b863d9a4dc953fe2ac359ca3da108d71d14cb2c09e52" }, "downloads": -1, "filename": "black-23.1a1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "8da168a5d9bc5f392e78051393827470", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1216079, "upload_time": "2022-12-18T15:54:56", "upload_time_iso_8601": "2022-12-18T15:54:56.101093Z", "url": "https://files.pythonhosted.org/packages/c2/f2/60ef34243ef31f4a9b0161aaeec03c21997f4d8ad020d01da3cea3acd96a/black-23.1a1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "63e06242c108a97949f6df5555fb8f212e7b4e54bdd65bbd7d16ccf032c737bb", "md5": "cf2d07f092debe9184e1e15845a608b7", "sha256": "e88e4b633d64b9e7adc4a6b922f52bb204af9f90d7b1e3317e6490f2b598b1ea" }, "downloads": -1, "filename": "black-23.1a1-py3-none-any.whl", "has_sig": false, "md5_digest": "cf2d07f092debe9184e1e15845a608b7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 168763, "upload_time": "2022-12-18T15:42:34", "upload_time_iso_8601": "2022-12-18T15:42:34.897230Z", "url": "https://files.pythonhosted.org/packages/63/e0/6242c108a97949f6df5555fb8f212e7b4e54bdd65bbd7d16ccf032c737bb/black-23.1a1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "10ca5c7da1e904c4d6d85b7fcba105bd34b9da75ce91570d6ee54be3833c3a38", "md5": "8ea843d7db4d0549630f4af410591e05", "sha256": "0b945a5a1e5a5321f884de0061d5a8585d947c9b608e37b6d26ceee4dfdf4b62" }, "downloads": -1, "filename": "black-23.1a1.tar.gz", "has_sig": false, "md5_digest": "8ea843d7db4d0549630f4af410591e05", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 557059, "upload_time": "2022-12-18T15:42:37", "upload_time_iso_8601": "2022-12-18T15:42:37.052539Z", "url": "https://files.pythonhosted.org/packages/10/ca/5c7da1e904c4d6d85b7fcba105bd34b9da75ce91570d6ee54be3833c3a38/black-23.1a1.tar.gz", "yanked": false, "yanked_reason": null } ], "23.3.0": [ { "comment_text": "", "digests": { "blake2b_256": "dbf47908f71cc71da08df1317a3619f002cbf91927fb5d3ffc7723905a2113f7", "md5": "4d3f8235d586e84e5ae4048f7220b032", "sha256": "0945e13506be58bf7db93ee5853243eb368ace1c08a24c65ce108986eac65915" }, "downloads": -1, "filename": "black-23.3.0-cp310-cp310-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "4d3f8235d586e84e5ae4048f7220b032", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1342273, "upload_time": "2023-03-29T01:19:03", "upload_time_iso_8601": "2023-03-29T01:19:03.787303Z", "url": "https://files.pythonhosted.org/packages/db/f4/7908f71cc71da08df1317a3619f002cbf91927fb5d3ffc7723905a2113f7/black-23.3.0-cp310-cp310-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "277007aab2623cfd3789786f17e051487a41d5657258c7b1ef8f780512ffea9c", "md5": "7b29b0a33d0230a9b6a1b214227db4f4", "sha256": "67de8d0c209eb5b330cce2469503de11bca4085880d62f1628bd9972cc3366b9" }, "downloads": -1, "filename": "black-23.3.0-cp310-cp310-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "7b29b0a33d0230a9b6a1b214227db4f4", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 2676721, "upload_time": "2023-03-29T01:25:23", "upload_time_iso_8601": "2023-03-29T01:25:23.459387Z", "url": "https://files.pythonhosted.org/packages/27/70/07aab2623cfd3789786f17e051487a41d5657258c7b1ef8f780512ffea9c/black-23.3.0-cp310-cp310-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "29b1b584fc863c155653963039664a592b3327b002405043b7e761b9b0212337", "md5": "d466679b349b4205c9d9a3d532feb7f5", "sha256": "7c3eb7cea23904399866c55826b31c1f55bbcd3890ce22ff70466b907b6775c2" }, "downloads": -1, "filename": "black-23.3.0-cp310-cp310-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "d466679b349b4205c9d9a3d532feb7f5", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1520336, "upload_time": "2023-03-29T01:28:32", "upload_time_iso_8601": "2023-03-29T01:28:32.973759Z", "url": "https://files.pythonhosted.org/packages/29/b1/b584fc863c155653963039664a592b3327b002405043b7e761b9b0212337/black-23.3.0-cp310-cp310-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6db40f13ab7f5e364795ff82b76b0f9a4c9c50afda6f1e2feeb8b03fdd7ec57d", "md5": "425d2196b3ed219d56c32bcf1bf61d24", "sha256": "32daa9783106c28815d05b724238e30718f34155653d4d6e125dc7daec8e260c" }, "downloads": -1, "filename": "black-23.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "425d2196b3ed219d56c32bcf1bf61d24", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1654611, "upload_time": "2023-03-29T01:11:12", "upload_time_iso_8601": "2023-03-29T01:11:12.718280Z", "url": "https://files.pythonhosted.org/packages/6d/b4/0f13ab7f5e364795ff82b76b0f9a4c9c50afda6f1e2feeb8b03fdd7ec57d/black-23.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "deb476f152c5eb0be5471c22cd18380d31d188930377a1a57969073b89d6615d", "md5": "cceb54acd1f271dc64e2f1a3f4f08b38", "sha256": "35d1381d7a22cc5b2be2f72c7dfdae4072a3336060635718cc7e1ede24221d6c" }, "downloads": -1, "filename": "black-23.3.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "cceb54acd1f271dc64e2f1a3f4f08b38", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.7", "size": 1286657, "upload_time": "2023-03-29T01:15:20", "upload_time_iso_8601": "2023-03-29T01:15:20.317122Z", "url": "https://files.pythonhosted.org/packages/de/b4/76f152c5eb0be5471c22cd18380d31d188930377a1a57969073b89d6615d/black-23.3.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d76fd3832960a3b646b333b7f0d80d336a3c123012e9d9d5dba4a622b2b6181d", "md5": "91cd67054b329bff6aac417c1ac7fb5d", "sha256": "a8a968125d0a6a404842fa1bf0b349a568634f856aa08ffaff40ae0dfa52e7c6" }, "downloads": -1, "filename": "black-23.3.0-cp311-cp311-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "91cd67054b329bff6aac417c1ac7fb5d", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1326112, "upload_time": "2023-03-29T01:19:05", "upload_time_iso_8601": "2023-03-29T01:19:05.794618Z", "url": "https://files.pythonhosted.org/packages/d7/6f/d3832960a3b646b333b7f0d80d336a3c123012e9d9d5dba4a622b2b6181d/black-23.3.0-cp311-cp311-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "eba517b40bfd9b607b69fa726b0b3a473d14b093dcd5191ea1a1dd664eccfee3", "md5": "77551f2260ad61550af470f8c18e16b8", "sha256": "c7ab5790333c448903c4b721b59c0d80b11fe5e9803d8703e84dcb8da56fec1b" }, "downloads": -1, "filename": "black-23.3.0-cp311-cp311-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "77551f2260ad61550af470f8c18e16b8", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 2643808, "upload_time": "2023-03-29T01:25:27", "upload_time_iso_8601": "2023-03-29T01:25:27.825065Z", "url": "https://files.pythonhosted.org/packages/eb/a5/17b40bfd9b607b69fa726b0b3a473d14b093dcd5191ea1a1dd664eccfee3/black-23.3.0-cp311-cp311-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "69497e1f0cf585b0d607aad3f971f95982cc4208fc77f92363d632d23021ee57", "md5": "7c32ff6b4f542318234e15da593f8425", "sha256": "a6f6886c9869d4daae2d1715ce34a19bbc4b95006d20ed785ca00fa03cba312d" }, "downloads": -1, "filename": "black-23.3.0-cp311-cp311-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "7c32ff6b4f542318234e15da593f8425", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1503287, "upload_time": "2023-03-29T01:28:35", "upload_time_iso_8601": "2023-03-29T01:28:35.228169Z", "url": "https://files.pythonhosted.org/packages/69/49/7e1f0cf585b0d607aad3f971f95982cc4208fc77f92363d632d23021ee57/black-23.3.0-cp311-cp311-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c05342e312c17cfda5c8fc4b6b396a508218807a3fcbb963b318e49d3ddd11d5", "md5": "1401cb3956f713da9922a517f3118478", "sha256": "6f3c333ea1dd6771b2d3777482429864f8e258899f6ff05826c3a4fcc5ce3f70" }, "downloads": -1, "filename": "black-23.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1401cb3956f713da9922a517f3118478", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1638625, "upload_time": "2023-03-29T01:11:16", "upload_time_iso_8601": "2023-03-29T01:11:16.193252Z", "url": "https://files.pythonhosted.org/packages/c0/53/42e312c17cfda5c8fc4b6b396a508218807a3fcbb963b318e49d3ddd11d5/black-23.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3f0d81dd4194ce7057c199d4f28e4c2a885082d9d929e7a55c514b23784f7787", "md5": "becd9bf8ca02e12c4a96821bcae0908e", "sha256": "11c410f71b876f961d1de77b9699ad19f939094c3a677323f43d7a29855fe326" }, "downloads": -1, "filename": "black-23.3.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "becd9bf8ca02e12c4a96821bcae0908e", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.7", "size": 1293585, "upload_time": "2023-03-29T01:15:22", "upload_time_iso_8601": "2023-03-29T01:15:22.935629Z", "url": "https://files.pythonhosted.org/packages/3f/0d/81dd4194ce7057c199d4f28e4c2a885082d9d929e7a55c514b23784f7787/black-23.3.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "24eb2d2d2c27cb64cfd073896f62a952a802cd83cf943a692a2f278525b57ca9", "md5": "37ebeba9c53d6c701deb11be573348e2", "sha256": "1d06691f1eb8de91cd1b322f21e3bfc9efe0c7ca1f0e1eb1db44ea367dff656b" }, "downloads": -1, "filename": "black-23.3.0-cp37-cp37m-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "37ebeba9c53d6c701deb11be573348e2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1447428, "upload_time": "2023-03-29T01:28:37", "upload_time_iso_8601": "2023-03-29T01:28:37.490759Z", "url": "https://files.pythonhosted.org/packages/24/eb/2d2d2c27cb64cfd073896f62a952a802cd83cf943a692a2f278525b57ca9/black-23.3.0-cp37-cp37m-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "493615d2122f90ff1cd70f06892ebda777b650218cf84b56b5916a993dc1359a", "md5": "4a2d1e03aebd84b896bb4ebc8fbe84ee", "sha256": "50cb33cac881766a5cd9913e10ff75b1e8eb71babf4c7104f2e9c52da1fb7de2" }, "downloads": -1, "filename": "black-23.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4a2d1e03aebd84b896bb4ebc8fbe84ee", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1576467, "upload_time": "2023-03-29T01:11:18", "upload_time_iso_8601": "2023-03-29T01:11:18.293737Z", "url": "https://files.pythonhosted.org/packages/49/36/15d2122f90ff1cd70f06892ebda777b650218cf84b56b5916a993dc1359a/black-23.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ca44eb41edd3f558a6139f09eee052dead4a7a464e563b822ddf236f5a8ee286", "md5": "b58845c9136f52db223d651d3114526f", "sha256": "e114420bf26b90d4b9daa597351337762b63039752bdf72bf361364c1aa05925" }, "downloads": -1, "filename": "black-23.3.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b58845c9136f52db223d651d3114526f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7", "size": 1226437, "upload_time": "2023-03-29T01:15:24", "upload_time_iso_8601": "2023-03-29T01:15:24.920158Z", "url": "https://files.pythonhosted.org/packages/ca/44/eb41edd3f558a6139f09eee052dead4a7a464e563b822ddf236f5a8ee286/black-23.3.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "cef42b0c6ac9e1f8584296747f66dd511898b4ebd51d6510dba118279bff53b6", "md5": "8b045161cdcd25c4247cb2437e2385b8", "sha256": "48f9d345675bb7fbc3dd85821b12487e1b9a75242028adad0333ce36ed2a6d27" }, "downloads": -1, "filename": "black-23.3.0-cp38-cp38-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "8b045161cdcd25c4247cb2437e2385b8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1331955, "upload_time": "2023-03-29T01:19:07", "upload_time_iso_8601": "2023-03-29T01:19:07.695358Z", "url": "https://files.pythonhosted.org/packages/ce/f4/2b0c6ac9e1f8584296747f66dd511898b4ebd51d6510dba118279bff53b6/black-23.3.0-cp38-cp38-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2114d5a2bec5fb15f9118baab7123d344646fac0b1c6939d51c2b05259cd2d9c", "md5": "06f457fada841b8d677eb77a23849a14", "sha256": "714290490c18fb0126baa0fca0a54ee795f7502b44177e1ce7624ba1c00f2331" }, "downloads": -1, "filename": "black-23.3.0-cp38-cp38-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "06f457fada841b8d677eb77a23849a14", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 2658520, "upload_time": "2023-03-29T01:25:30", "upload_time_iso_8601": "2023-03-29T01:25:30.535072Z", "url": "https://files.pythonhosted.org/packages/21/14/d5a2bec5fb15f9118baab7123d344646fac0b1c6939d51c2b05259cd2d9c/black-23.3.0-cp38-cp38-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "130aed8b66c299e896780e4528eed4018f5b084da3b9ba4ee48328550567d866", "md5": "5ceaf7a64abab14a1c840e1b7cf4b326", "sha256": "064101748afa12ad2291c2b91c960be28b817c0c7eaa35bec09cc63aa56493c5" }, "downloads": -1, "filename": "black-23.3.0-cp38-cp38-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "5ceaf7a64abab14a1c840e1b7cf4b326", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1509852, "upload_time": "2023-03-29T01:28:39", "upload_time_iso_8601": "2023-03-29T01:28:39.106909Z", "url": "https://files.pythonhosted.org/packages/13/0a/ed8b66c299e896780e4528eed4018f5b084da3b9ba4ee48328550567d866/black-23.3.0-cp38-cp38-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "124b99c71d1cf1353edd5aff2700b8960f92e9b805c9dab72639b67dbb449d3a", "md5": "63e9005f0e9834c0ee3c50c6762e843a", "sha256": "562bd3a70495facf56814293149e51aa1be9931567474993c7942ff7d3533961" }, "downloads": -1, "filename": "black-23.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "63e9005f0e9834c0ee3c50c6762e843a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1641852, "upload_time": "2023-03-29T01:11:20", "upload_time_iso_8601": "2023-03-29T01:11:20.065572Z", "url": "https://files.pythonhosted.org/packages/12/4b/99c71d1cf1353edd5aff2700b8960f92e9b805c9dab72639b67dbb449d3a/black-23.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d16e5810b6992ed70403124c67e8b3f62858a32b35405177553f1a78ed6b6e31", "md5": "130f328829559501e351a3bb1f09dbb5", "sha256": "e198cf27888ad6f4ff331ca1c48ffc038848ea9f031a3b40ba36aced7e22f2c8" }, "downloads": -1, "filename": "black-23.3.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "130f328829559501e351a3bb1f09dbb5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7", "size": 1297694, "upload_time": "2023-03-29T01:15:26", "upload_time_iso_8601": "2023-03-29T01:15:26.919581Z", "url": "https://files.pythonhosted.org/packages/d1/6e/5810b6992ed70403124c67e8b3f62858a32b35405177553f1a78ed6b6e31/black-23.3.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1325cfa06788d0a936f2445af88f13604b5bcd5c9d050db618c718e6ebe66f74", "md5": "522cb39f1bacaf3df51b562f765c2266", "sha256": "3238f2aacf827d18d26db07524e44741233ae09a584273aa059066d644ca7b30" }, "downloads": -1, "filename": "black-23.3.0-cp39-cp39-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "522cb39f1bacaf3df51b562f765c2266", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1341089, "upload_time": "2023-03-29T01:19:09", "upload_time_iso_8601": "2023-03-29T01:19:09.503898Z", "url": "https://files.pythonhosted.org/packages/13/25/cfa06788d0a936f2445af88f13604b5bcd5c9d050db618c718e6ebe66f74/black-23.3.0-cp39-cp39-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "fd5bfc2d7922c1a6bb49458d424b5be71d251f2d0dc97be9534e35d171bdc653", "md5": "c5ae10d2fb12bbe5a7397b4746ed7932", "sha256": "f0bd2f4a58d6666500542b26354978218a9babcdc972722f4bf90779524515f3" }, "downloads": -1, "filename": "black-23.3.0-cp39-cp39-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "c5ae10d2fb12bbe5a7397b4746ed7932", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 2674699, "upload_time": "2023-03-29T01:25:32", "upload_time_iso_8601": "2023-03-29T01:25:32.853737Z", "url": "https://files.pythonhosted.org/packages/fd/5b/fc2d7922c1a6bb49458d424b5be71d251f2d0dc97be9534e35d171bdc653/black-23.3.0-cp39-cp39-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "49d7f3b7da6c772800f5375aeb050a3dcf682f0bbeb41d313c9c2820d0156e4e", "md5": "deedd835e4b8a33e835d772c842a3e3a", "sha256": "92c543f6854c28a3c7f39f4d9b7694f9a6eb9d3c5e2ece488c327b6e7ea9b266" }, "downloads": -1, "filename": "black-23.3.0-cp39-cp39-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "deedd835e4b8a33e835d772c842a3e3a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1519946, "upload_time": "2023-03-29T01:28:40", "upload_time_iso_8601": "2023-03-29T01:28:40.746258Z", "url": "https://files.pythonhosted.org/packages/49/d7/f3b7da6c772800f5375aeb050a3dcf682f0bbeb41d313c9c2820d0156e4e/black-23.3.0-cp39-cp39-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3cd785f3d79f9e543402de2244c4d117793f262149e404ea0168841613c33e07", "md5": "1e6e7019d3f05872e7c0a0df6d237398", "sha256": "3a150542a204124ed00683f0db1f5cf1c2aaaa9cc3495b7a3b5976fb136090ab" }, "downloads": -1, "filename": "black-23.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1e6e7019d3f05872e7c0a0df6d237398", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1654176, "upload_time": "2023-03-29T01:11:21", "upload_time_iso_8601": "2023-03-29T01:11:21.715874Z", "url": "https://files.pythonhosted.org/packages/3c/d7/85f3d79f9e543402de2244c4d117793f262149e404ea0168841613c33e07/black-23.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "061e273d610249f0335afb1ddb03664a03223f4826e3d1a95170a0142cb19fb4", "md5": "08a4bd9d25021cec7c72880ae0c6c62b", "sha256": "6b39abdfb402002b8a7d030ccc85cf5afff64ee90fa4c5aebc531e3ad0175ddb" }, "downloads": -1, "filename": "black-23.3.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "08a4bd9d25021cec7c72880ae0c6c62b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7", "size": 1286299, "upload_time": "2023-03-29T01:15:28", "upload_time_iso_8601": "2023-03-29T01:15:28.898330Z", "url": "https://files.pythonhosted.org/packages/06/1e/273d610249f0335afb1ddb03664a03223f4826e3d1a95170a0142cb19fb4/black-23.3.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ade74642b7f462381799393fbad894ba4b32db00870a797f0616c197b07129a9", "md5": "857383d8166f444f0eee3eb09dddfbca", "sha256": "ec751418022185b0c1bb7d7736e6933d40bbb14c14a0abcf9123d1b159f98dd4" }, "downloads": -1, "filename": "black-23.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "857383d8166f444f0eee3eb09dddfbca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 180965, "upload_time": "2023-03-29T01:00:52", "upload_time_iso_8601": "2023-03-29T01:00:52.253538Z", "url": "https://files.pythonhosted.org/packages/ad/e7/4642b7f462381799393fbad894ba4b32db00870a797f0616c197b07129a9/black-23.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d63666370f5017b100225ec4950a60caeef60201a10080da57ddb24124453fba", "md5": "2d592afe2a4a2ac0996781b4e95d71d3", "sha256": "1c7b8d606e728a41ea1ccbd7264677e494e87cf630e399262ced92d4a8dac940" }, "downloads": -1, "filename": "black-23.3.0.tar.gz", "has_sig": false, "md5_digest": "2d592afe2a4a2ac0996781b4e95d71d3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 582156, "upload_time": "2023-03-29T01:00:54", "upload_time_iso_8601": "2023-03-29T01:00:54.457030Z", "url": "https://files.pythonhosted.org/packages/d6/36/66370f5017b100225ec4950a60caeef60201a10080da57ddb24124453fba/black-23.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "23.7.0": [ { "comment_text": "", "digests": { "blake2b_256": "9065742e1dbcced37750a5c6bd450eb2ecd2b3d8eced31918be6dc0e7c23caaf", "md5": "46009cc4d782a36a017fe3d4a8e174d2", "sha256": "5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587" }, "downloads": -1, "filename": "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "46009cc4d782a36a017fe3d4a8e174d2", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1342188, "upload_time": "2023-07-11T00:32:13", "upload_time_iso_8601": "2023-07-11T00:32:13.042242Z", "url": "https://files.pythonhosted.org/packages/90/65/742e1dbcced37750a5c6bd450eb2ecd2b3d8eced31918be6dc0e7c23caaf/black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "10bb025dced0f7a2c00c59810700fbdab877b9a49cf817383133b79b0df5f0fe", "md5": "c4168a3ae885d658feb6f9b2270e550a", "sha256": "552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f" }, "downloads": -1, "filename": "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "c4168a3ae885d658feb6f9b2270e550a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 2676824, "upload_time": "2023-07-11T00:40:36", "upload_time_iso_8601": "2023-07-11T00:40:36.300346Z", "url": "https://files.pythonhosted.org/packages/10/bb/025dced0f7a2c00c59810700fbdab877b9a49cf817383133b79b0df5f0fe/black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f50724fc7f8381b18fb83adf619f137628da9993387e2a35616ee95cc4fccb5c", "md5": "be1da9cd820b137689f97567f781c0c8", "sha256": "86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be" }, "downloads": -1, "filename": "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "be1da9cd820b137689f97567f781c0c8", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1520260, "upload_time": "2023-07-11T00:38:06", "upload_time_iso_8601": "2023-07-11T00:38:06.415160Z", "url": "https://files.pythonhosted.org/packages/f5/07/24fc7f8381b18fb83adf619f137628da9993387e2a35616ee95cc4fccb5c/black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e417a819f00990e8cf4e652186603ddc8d29477362da2b7717858732b6abd13d", "md5": "06dddfc0e786abc1bc4dbfb0deb05ab0", "sha256": "501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc" }, "downloads": -1, "filename": "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "06dddfc0e786abc1bc4dbfb0deb05ab0", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1658854, "upload_time": "2023-07-11T00:29:17", "upload_time_iso_8601": "2023-07-11T00:29:17.054013Z", "url": "https://files.pythonhosted.org/packages/e4/17/a819f00990e8cf4e652186603ddc8d29477362da2b7717858732b6abd13d/black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f45dd92ee301ec03a78945bd5e9d750446449832a1bf2d12919f667baec7b404", "md5": "3b49fd3bcd37bac1ddabe8ad2cb0d6db", "sha256": "fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995" }, "downloads": -1, "filename": "black-23.7.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "3b49fd3bcd37bac1ddabe8ad2cb0d6db", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1285147, "upload_time": "2023-07-11T00:34:08", "upload_time_iso_8601": "2023-07-11T00:34:08.606031Z", "url": "https://files.pythonhosted.org/packages/f4/5d/d92ee301ec03a78945bd5e9d750446449832a1bf2d12919f667baec7b404/black-23.7.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4ca5e9f138d6bacc9f31906cbd5afe674ed2c48c59f5a7e46bcc466d760cd375", "md5": "696a705be3ebff34c0f75e87045a8818", "sha256": "b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2" }, "downloads": -1, "filename": "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "696a705be3ebff34c0f75e87045a8818", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1327029, "upload_time": "2023-07-11T00:32:15", "upload_time_iso_8601": "2023-07-11T00:32:15.333002Z", "url": "https://files.pythonhosted.org/packages/4c/a5/e9f138d6bacc9f31906cbd5afe674ed2c48c59f5a7e46bcc466d760cd375/black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ca4e6d625c4030280d7c8b17e014ad6a6ba434acd8c6bd86d8f375d6a1235dfe", "md5": "d4654b14dac214ab808e803d48d25c94", "sha256": "893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd" }, "downloads": -1, "filename": "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "d4654b14dac214ab808e803d48d25c94", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 2644908, "upload_time": "2023-07-11T00:40:38", "upload_time_iso_8601": "2023-07-11T00:40:38.831519Z", "url": "https://files.pythonhosted.org/packages/ca/4e/6d625c4030280d7c8b17e014ad6a6ba434acd8c6bd86d8f375d6a1235dfe/black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "51324dacd14494e60d93cbfaea023f9a82c1db998ddfa5a359afeaf5e2c11f8c", "md5": "7fbde03364cdc1d28007ed20032990b7", "sha256": "c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a" }, "downloads": -1, "filename": "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "7fbde03364cdc1d28007ed20032990b7", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1503071, "upload_time": "2023-07-11T00:38:08", "upload_time_iso_8601": "2023-07-11T00:38:08.105150Z", "url": "https://files.pythonhosted.org/packages/51/32/4dacd14494e60d93cbfaea023f9a82c1db998ddfa5a359afeaf5e2c11f8c/black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4d2406c20da91df8d0b0f67e2dd3ce0feedff0b0fa6792e24e3f83452f3c38a2", "md5": "1664558ae3c9fe56e0261810f3fe4692", "sha256": "831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926" }, "downloads": -1, "filename": "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1664558ae3c9fe56e0261810f3fe4692", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1643345, "upload_time": "2023-07-11T00:29:19", "upload_time_iso_8601": "2023-07-11T00:29:19.670676Z", "url": "https://files.pythonhosted.org/packages/4d/24/06c20da91df8d0b0f67e2dd3ce0feedff0b0fa6792e24e3f83452f3c38a2/black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "517aede3fec916bb5c00005a16e60c3be9d00b076f462ee38e7b396c5fea3411", "md5": "38d1eaa923edc713e088680516eb9cd0", "sha256": "7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad" }, "downloads": -1, "filename": "black-23.7.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "38d1eaa923edc713e088680516eb9cd0", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1293544, "upload_time": "2023-07-11T00:34:11", "upload_time_iso_8601": "2023-07-11T00:34:11.463165Z", "url": "https://files.pythonhosted.org/packages/51/7a/ede3fec916bb5c00005a16e60c3be9d00b076f462ee38e7b396c5fea3411/black-23.7.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a89aeb903dd74e3dbf04981b45465b64020936317273168b4be9647c435b0f65", "md5": "513d16b1334ba25ba2af7789cd01a9e6", "sha256": "f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f" }, "downloads": -1, "filename": "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "513d16b1334ba25ba2af7789cd01a9e6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1331714, "upload_time": "2023-07-11T00:32:17", "upload_time_iso_8601": "2023-07-11T00:32:17.555425Z", "url": "https://files.pythonhosted.org/packages/a8/9a/eb903dd74e3dbf04981b45465b64020936317273168b4be9647c435b0f65/black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5df876aec9b0d1eb3ac1ba3c1a143eb8fa4813b8a80a59d07fe0a8e7e914ae55", "md5": "e111cde813ff9e1c74f98c76e683e338", "sha256": "01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3" }, "downloads": -1, "filename": "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "e111cde813ff9e1c74f98c76e683e338", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 2657925, "upload_time": "2023-07-11T00:40:41", "upload_time_iso_8601": "2023-07-11T00:40:41.539636Z", "url": "https://files.pythonhosted.org/packages/5d/f8/76aec9b0d1eb3ac1ba3c1a143eb8fa4813b8a80a59d07fe0a8e7e914ae55/black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8e6f67b20e7bd900b88cd4710fb5061e79740f360677f094271d73cbcaace43c", "md5": "7f786e530860be485f4c89753f77ad88", "sha256": "327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6" }, "downloads": -1, "filename": "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "7f786e530860be485f4c89753f77ad88", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1509565, "upload_time": "2023-07-11T00:38:11", "upload_time_iso_8601": "2023-07-11T00:38:11.206349Z", "url": "https://files.pythonhosted.org/packages/8e/6f/67b20e7bd900b88cd4710fb5061e79740f360677f094271d73cbcaace43c/black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a7a44ce0eeaccfd2665b2020cf759b05868f9be5e22a4f96b789417fce8ec57c", "md5": "c417d37117b04f90907f49b26df502f1", "sha256": "6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a" }, "downloads": -1, "filename": "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c417d37117b04f90907f49b26df502f1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1646005, "upload_time": "2023-07-11T00:29:21", "upload_time_iso_8601": "2023-07-11T00:29:21.690462Z", "url": "https://files.pythonhosted.org/packages/a7/a4/4ce0eeaccfd2665b2020cf759b05868f9be5e22a4f96b789417fce8ec57c/black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "cd89748f5367f98f65a92cbe6b5542bb33f44fbac25f3d3d224509ac65955441", "md5": "5904215aa80000c5117c01075e79935b", "sha256": "27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320" }, "downloads": -1, "filename": "black-23.7.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "5904215aa80000c5117c01075e79935b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1295856, "upload_time": "2023-07-11T00:34:13", "upload_time_iso_8601": "2023-07-11T00:34:13.019232Z", "url": "https://files.pythonhosted.org/packages/cd/89/748f5367f98f65a92cbe6b5542bb33f44fbac25f3d3d224509ac65955441/black-23.7.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1393b62741e817592e9dbb29935bb30daf3d7ad089dcb347e240271fe687b513", "md5": "6cac528db7055dd51a9949a70e2ce500", "sha256": "8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9" }, "downloads": -1, "filename": "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "6cac528db7055dd51a9949a70e2ce500", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1341350, "upload_time": "2023-07-11T00:32:19", "upload_time_iso_8601": "2023-07-11T00:32:19.763551Z", "url": "https://files.pythonhosted.org/packages/13/93/b62741e817592e9dbb29935bb30daf3d7ad089dcb347e240271fe687b513/black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "320070def913a7a3f870a03e469e733c53ca016e2bf8cadf90b7bc09b98022d1", "md5": "016eeb87e22820b2e48e420faa06d17f", "sha256": "47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3" }, "downloads": -1, "filename": "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "016eeb87e22820b2e48e420faa06d17f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 2675054, "upload_time": "2023-07-11T00:40:43", "upload_time_iso_8601": "2023-07-11T00:40:43.925140Z", "url": "https://files.pythonhosted.org/packages/32/00/70def913a7a3f870a03e469e733c53ca016e2bf8cadf90b7bc09b98022d1/black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7f1a9e58b91b6f4ecd552de530b2309b5da32cf41e2fc116c0807c0960a96708", "md5": "f6868df7e33e143b0ed362e20b468594", "sha256": "25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087" }, "downloads": -1, "filename": "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "f6868df7e33e143b0ed362e20b468594", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1519376, "upload_time": "2023-07-11T00:38:13", "upload_time_iso_8601": "2023-07-11T00:38:13.374505Z", "url": "https://files.pythonhosted.org/packages/7f/1a/9e58b91b6f4ecd552de530b2309b5da32cf41e2fc116c0807c0960a96708/black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0916ec8d08d2501a39258955c16fccb55a02faa6ef44190ca9fb0b88be0f494d", "md5": "e1081a1b31db052bdf0a72a012d12664", "sha256": "642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91" }, "downloads": -1, "filename": "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e1081a1b31db052bdf0a72a012d12664", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1657994, "upload_time": "2023-07-11T00:29:24", "upload_time_iso_8601": "2023-07-11T00:29:24.168347Z", "url": "https://files.pythonhosted.org/packages/09/16/ec8d08d2501a39258955c16fccb55a02faa6ef44190ca9fb0b88be0f494d/black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f17ec8f9173e5142ff0a01e6e31b338cbda30b603a855cbb9ba7afd9552e8a36", "md5": "67a462412d4c590aa08fc90e541bc40a", "sha256": "ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491" }, "downloads": -1, "filename": "black-23.7.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "67a462412d4c590aa08fc90e541bc40a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1284681, "upload_time": "2023-07-11T00:34:15", "upload_time_iso_8601": "2023-07-11T00:34:15.798020Z", "url": "https://files.pythonhosted.org/packages/f1/7e/c8f9173e5142ff0a01e6e31b338cbda30b603a855cbb9ba7afd9552e8a36/black-23.7.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "32df1d4ca6b76b0a077599b133b9c9dceea0b465938170043d886d4821809d40", "md5": "a805c83c2b0268fc7f07e62149fa595a", "sha256": "9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96" }, "downloads": -1, "filename": "black-23.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a805c83c2b0268fc7f07e62149fa595a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 181130, "upload_time": "2023-07-11T00:21:20", "upload_time_iso_8601": "2023-07-11T00:21:20.056954Z", "url": "https://files.pythonhosted.org/packages/32/df/1d4ca6b76b0a077599b133b9c9dceea0b465938170043d886d4821809d40/black-23.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e92029d7a6614606785923edf9e8ec3ff630231992cc2fabc02eacb0d475372e", "md5": "46061fdd0339e837a68c2bb1286f6cd9", "sha256": "022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb" }, "downloads": -1, "filename": "black-23.7.0.tar.gz", "has_sig": false, "md5_digest": "46061fdd0339e837a68c2bb1286f6cd9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 586177, "upload_time": "2023-07-11T00:21:22", "upload_time_iso_8601": "2023-07-11T00:21:22.399479Z", "url": "https://files.pythonhosted.org/packages/e9/20/29d7a6614606785923edf9e8ec3ff630231992cc2fabc02eacb0d475372e/black-23.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "23.9.0": [ { "comment_text": "", "digests": { "blake2b_256": "2ac2e2cd7f95aa0f1a4d77ed0153efb213b99bfa5f086226a8f1fcc67483f62a", "md5": "2c9c2e5aa4445ab953bd9bdff730914a", "sha256": "9366c1f898981f09eb8da076716c02fd021f5a0e63581c66501d68a2e4eab844" }, "downloads": -1, "filename": "black-23.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2c9c2e5aa4445ab953bd9bdff730914a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 182236, "upload_time": "2023-09-09T03:30:31", "upload_time_iso_8601": "2023-09-09T03:30:31.478005Z", "url": "https://files.pythonhosted.org/packages/2a/c2/e2cd7f95aa0f1a4d77ed0153efb213b99bfa5f086226a8f1fcc67483f62a/black-23.9.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "41b77ee0cae729ef330c9483a9544a34d5c77b71b5dccf1339dae61106729ffc", "md5": "9eedd5c9f49a93c56dfed5c2a5d01724", "sha256": "3511c8a7e22ce653f89ae90dfddaf94f3bb7e2587a245246572d3b9c92adf066" }, "downloads": -1, "filename": "black-23.9.0.tar.gz", "has_sig": false, "md5_digest": "9eedd5c9f49a93c56dfed5c2a5d01724", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 588540, "upload_time": "2023-09-09T03:30:33", "upload_time_iso_8601": "2023-09-09T03:30:33.799417Z", "url": "https://files.pythonhosted.org/packages/41/b7/7ee0cae729ef330c9483a9544a34d5c77b71b5dccf1339dae61106729ffc/black-23.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "23.9.1": [ { "comment_text": "", "digests": { "blake2b_256": "2647f122503a49ae43151514e263a76d0d6e9d26b3ab81523bd018eaf58d6945", "md5": "8452d807b8acfa21a257b69a8546997f", "sha256": "d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301" }, "downloads": -1, "filename": "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "8452d807b8acfa21a257b69a8546997f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1324065, "upload_time": "2023-09-11T00:50:06", "upload_time_iso_8601": "2023-09-11T00:50:06.658258Z", "url": "https://files.pythonhosted.org/packages/26/47/f122503a49ae43151514e263a76d0d6e9d26b3ab81523bd018eaf58d6945/black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c7051fcef662781db9ea93af67a9b9b29529aa6855986d8e565626a0519d17b3", "md5": "0b015839c26abc8224e483f0e34a37ee", "sha256": "13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100" }, "downloads": -1, "filename": "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "0b015839c26abc8224e483f0e34a37ee", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 2630561, "upload_time": "2023-09-11T00:59:22", "upload_time_iso_8601": "2023-09-11T00:59:22.889819Z", "url": "https://files.pythonhosted.org/packages/c7/05/1fcef662781db9ea93af67a9b9b29529aa6855986d8e565626a0519d17b3/black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "565b9906247d9144c9a48c63cee2caaec02af99af17b98f8b8fa23b447b3c5cc", "md5": "595b44fb1ebfb16b38f6d400e8fd5bac", "sha256": "75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71" }, "downloads": -1, "filename": "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "595b44fb1ebfb16b38f6d400e8fd5bac", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1492495, "upload_time": "2023-09-11T00:53:53", "upload_time_iso_8601": "2023-09-11T00:53:53.035203Z", "url": "https://files.pythonhosted.org/packages/56/5b/9906247d9144c9a48c63cee2caaec02af99af17b98f8b8fa23b447b3c5cc/black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2124b6ee7df9690e5d6eb6c6bad1e36aa030002c14c921324fad265e89799273", "md5": "e2125fd3e76cd9c8e3122ecab1d659fd", "sha256": "13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7" }, "downloads": -1, "filename": "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e2125fd3e76cd9c8e3122ecab1d659fd", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1635922, "upload_time": "2023-09-11T00:48:21", "upload_time_iso_8601": "2023-09-11T00:48:21.393480Z", "url": "https://files.pythonhosted.org/packages/21/24/b6ee7df9690e5d6eb6c6bad1e36aa030002c14c921324fad265e89799273/black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "600243df13c5f99b3d32d9eef254d8c87bd54257fd3202931e4b9e70a8868f8d", "md5": "3ea14649d75196789a07a0875e1c2744", "sha256": "adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80" }, "downloads": -1, "filename": "black-23.9.1-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "3ea14649d75196789a07a0875e1c2744", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1269649, "upload_time": "2023-09-11T00:52:47", "upload_time_iso_8601": "2023-09-11T00:52:47.654956Z", "url": "https://files.pythonhosted.org/packages/60/02/43df13c5f99b3d32d9eef254d8c87bd54257fd3202931e4b9e70a8868f8d/black-23.9.1-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "64fa1107aafc073fd6340c09a95b2367c8f5127083bf6cb9738bdd11c671350f", "md5": "61753885a4ae32cd2029daf45be31999", "sha256": "8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f" }, "downloads": -1, "filename": "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "61753885a4ae32cd2029daf45be31999", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1307893, "upload_time": "2023-09-11T00:50:09", "upload_time_iso_8601": "2023-09-11T00:50:09.006213Z", "url": "https://files.pythonhosted.org/packages/64/fa/1107aafc073fd6340c09a95b2367c8f5127083bf6cb9738bdd11c671350f/black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "721afc7a669677250d73ea190342d360b3bd150043e61e85d1dbb7ae8bd8525a", "md5": "b9087c221c483aae73cf46e51ab2c28b", "sha256": "8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe" }, "downloads": -1, "filename": "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "b9087c221c483aae73cf46e51ab2c28b", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 2597509, "upload_time": "2023-09-11T00:59:25", "upload_time_iso_8601": "2023-09-11T00:59:25.270912Z", "url": "https://files.pythonhosted.org/packages/72/1a/fc7a669677250d73ea190342d360b3bd150043e61e85d1dbb7ae8bd8525a/black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "db9e1efe457688f60c8a3b364724828a75dd9939d77c9deaa821d7fb09af3c7f", "md5": "5665bf78b72e9a928017f40a0e43c293", "sha256": "7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186" }, "downloads": -1, "filename": "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "5665bf78b72e9a928017f40a0e43c293", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1476578, "upload_time": "2023-09-11T00:53:54", "upload_time_iso_8601": "2023-09-11T00:53:54.707464Z", "url": "https://files.pythonhosted.org/packages/db/9e/1efe457688f60c8a3b364724828a75dd9939d77c9deaa821d7fb09af3c7f/black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2fe69f5100305e53f2722c161fafa6cea97d3631f3afa173db95efb8501ad9f4", "md5": "3736903daca65d6555baf657bb47bbd4", "sha256": "031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f" }, "downloads": -1, "filename": "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3736903daca65d6555baf657bb47bbd4", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1620001, "upload_time": "2023-09-11T00:48:24", "upload_time_iso_8601": "2023-09-11T00:48:24.006289Z", "url": "https://files.pythonhosted.org/packages/2f/e6/9f5100305e53f2722c161fafa6cea97d3631f3afa173db95efb8501ad9f4/black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "33a9702924cb0c30446f24cc5d0145d5147686e27f575066b3f37a2d207bd8eb", "md5": "61a354719b8fd3fed3ddbd9e57b9110d", "sha256": "538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300" }, "downloads": -1, "filename": "black-23.9.1-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "61a354719b8fd3fed3ddbd9e57b9110d", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1275776, "upload_time": "2023-09-11T00:52:49", "upload_time_iso_8601": "2023-09-11T00:52:49.643396Z", "url": "https://files.pythonhosted.org/packages/33/a9/702924cb0c30446f24cc5d0145d5147686e27f575066b3f37a2d207bd8eb/black-23.9.1-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "67be7c12173507d809a2bfb4d5500fab673503b98e3b7064db18114678b0e57e", "md5": "7bc6d5203e791ba3a7fb996c453651a4", "sha256": "638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948" }, "downloads": -1, "filename": "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "7bc6d5203e791ba3a7fb996c453651a4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1314719, "upload_time": "2023-09-11T00:50:10", "upload_time_iso_8601": "2023-09-11T00:50:10.462145Z", "url": "https://files.pythonhosted.org/packages/67/be/7c12173507d809a2bfb4d5500fab673503b98e3b7064db18114678b0e57e/black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2ddc093cec6ec762b55f2bd66034fc7464d5714e1e6c0e547e15c1926961fb62", "md5": "85692da49c05047773dd35d505971c70", "sha256": "a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855" }, "downloads": -1, "filename": "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "85692da49c05047773dd35d505971c70", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 2611872, "upload_time": "2023-09-11T00:59:27", "upload_time_iso_8601": "2023-09-11T00:59:27.535895Z", "url": "https://files.pythonhosted.org/packages/2d/dc/093cec6ec762b55f2bd66034fc7464d5714e1e6c0e547e15c1926961fb62/black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b8008c5b88e548e10b22f846aa4fe8dc0b050cd42748dc4445cd6fbb90198a15", "md5": "b084cb2a84057fc0a9adb0f9f1c870bf", "sha256": "cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204" }, "downloads": -1, "filename": "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "b084cb2a84057fc0a9adb0f9f1c870bf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1483754, "upload_time": "2023-09-11T00:53:57", "upload_time_iso_8601": "2023-09-11T00:53:57.145440Z", "url": "https://files.pythonhosted.org/packages/b8/00/8c5b88e548e10b22f846aa4fe8dc0b050cd42748dc4445cd6fbb90198a15/black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b43226beae8735a859030aa93d326dd529941fa9163d88110cee18cbbbc88547", "md5": "4dc1aad6f31ac524415bdd2c6e4a6fad", "sha256": "cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377" }, "downloads": -1, "filename": "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4dc1aad6f31ac524415bdd2c6e4a6fad", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1621598, "upload_time": "2023-09-11T00:48:26", "upload_time_iso_8601": "2023-09-11T00:48:26.592174Z", "url": "https://files.pythonhosted.org/packages/b4/32/26beae8735a859030aa93d326dd529941fa9163d88110cee18cbbbc88547/black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "53c57a2256d0a9900d0be18dc07bb6783b0f2973dc4a4f67f44d2f16930d5645", "md5": "416ba6f034df488646e03bec88622375", "sha256": "14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573" }, "downloads": -1, "filename": "black-23.9.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "416ba6f034df488646e03bec88622375", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1273852, "upload_time": "2023-09-11T00:52:51", "upload_time_iso_8601": "2023-09-11T00:52:51.670581Z", "url": "https://files.pythonhosted.org/packages/53/c5/7a2256d0a9900d0be18dc07bb6783b0f2973dc4a4f67f44d2f16930d5645/black-23.9.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0477bd9578cb5a418d5934fedb15f0297e19eed06278547c7d8c9022f4a348d2", "md5": "a78df9cd4f3ff6344d76a95a70466ddd", "sha256": "c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c" }, "downloads": -1, "filename": "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", "has_sig": false, "md5_digest": "a78df9cd4f3ff6344d76a95a70466ddd", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1323500, "upload_time": "2023-09-11T00:50:12", "upload_time_iso_8601": "2023-09-11T00:50:12.517190Z", "url": "https://files.pythonhosted.org/packages/04/77/bd9578cb5a418d5934fedb15f0297e19eed06278547c7d8c9022f4a348d2/black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "574f0b4cd9039fd70f94db313afccd2e5084af0c86a1eb9f880d61e530f23f1a", "md5": "81373dbdf69543c69404dd9f51fdd1b8", "sha256": "6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325" }, "downloads": -1, "filename": "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", "has_sig": false, "md5_digest": "81373dbdf69543c69404dd9f51fdd1b8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 2628646, "upload_time": "2023-09-11T00:59:29", "upload_time_iso_8601": "2023-09-11T00:59:29.958451Z", "url": "https://files.pythonhosted.org/packages/57/4f/0b4cd9039fd70f94db313afccd2e5084af0c86a1eb9f880d61e530f23f1a/black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a6340607a7f58bae0c45eb5efde4db4d2517e3e1ca70a568e145d43e3ca5d641", "md5": "d12d474035aeae43d3727aa8963ced37", "sha256": "c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393" }, "downloads": -1, "filename": "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", "has_sig": false, "md5_digest": "d12d474035aeae43d3727aa8963ced37", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1491945, "upload_time": "2023-09-11T00:53:59", "upload_time_iso_8601": "2023-09-11T00:53:59.208810Z", "url": "https://files.pythonhosted.org/packages/a6/34/0607a7f58bae0c45eb5efde4db4d2517e3e1ca70a568e145d43e3ca5d641/black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e297975cfd8fe4e06aac6e438ba08add0ae73412f0d5cbfce868f571d6443332", "md5": "14f14d8604bd309a070fb59a3c80f2d1", "sha256": "50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9" }, "downloads": -1, "filename": "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "14f14d8604bd309a070fb59a3c80f2d1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1634353, "upload_time": "2023-09-11T00:48:29", "upload_time_iso_8601": "2023-09-11T00:48:29.219481Z", "url": "https://files.pythonhosted.org/packages/e2/97/975cfd8fe4e06aac6e438ba08add0ae73412f0d5cbfce868f571d6443332/black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "bf3274ae8f54dc0d99dc7d3a0ba3c14b98f0d719d0ff731f17985f90c4bb87f7", "md5": "58bab1221ca56aa5fee6e0480d3c8ea6", "sha256": "403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f" }, "downloads": -1, "filename": "black-23.9.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "58bab1221ca56aa5fee6e0480d3c8ea6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1269138, "upload_time": "2023-09-11T00:52:53", "upload_time_iso_8601": "2023-09-11T00:52:53.764777Z", "url": "https://files.pythonhosted.org/packages/bf/32/74ae8f54dc0d99dc7d3a0ba3c14b98f0d719d0ff731f17985f90c4bb87f7/black-23.9.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "28c7150de595f9e5ee1efffeb398acfac3e37d218171100049c77e494326dc4b", "md5": "99d3092369181c4b3e515040b81a1f41", "sha256": "6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9" }, "downloads": -1, "filename": "black-23.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "99d3092369181c4b3e515040b81a1f41", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 182604, "upload_time": "2023-09-11T00:38:59", "upload_time_iso_8601": "2023-09-11T00:38:59.817665Z", "url": "https://files.pythonhosted.org/packages/28/c7/150de595f9e5ee1efffeb398acfac3e37d218171100049c77e494326dc4b/black-23.9.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "12c3257adbdbf2cc60bf844b5c0e3791a9d49e4fb4f7bcd8a2e875824ca0b7bc", "md5": "2fafe68c18e071d0a990c82fdabf2e87", "sha256": "24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d" }, "downloads": -1, "filename": "black-23.9.1.tar.gz", "has_sig": false, "md5_digest": "2fafe68c18e071d0a990c82fdabf2e87", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 589529, "upload_time": "2023-09-11T00:39:01", "upload_time_iso_8601": "2023-09-11T00:39:01.740660Z", "url": "https://files.pythonhosted.org/packages/12/c3/257adbdbf2cc60bf844b5c0e3791a9d49e4fb4f7bcd8a2e875824ca0b7bc/black-23.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "24.1.0": [ { "comment_text": "", "digests": { "blake2b_256": "93a6ea58daea12a565ec2dabcc973867a8eda39568112c2e4bed9ba20c8e16da", "md5": "949737e9560b817daee1ccf78a05a3ae", "sha256": "94d5280d020dadfafc75d7cae899609ed38653d3f5e82e7ce58f75e76387ed3d" }, "downloads": -1, "filename": "black-24.1.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "949737e9560b817daee1ccf78a05a3ae", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1553193, "upload_time": "2024-01-26T05:20:49", "upload_time_iso_8601": "2024-01-26T05:20:49.034837Z", "url": "https://files.pythonhosted.org/packages/93/a6/ea58daea12a565ec2dabcc973867a8eda39568112c2e4bed9ba20c8e16da/black-24.1.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "cfda41534a3009124a9448955bbb6fc407d3398f37252274e2a007a0c1fba288", "md5": "d3cd8f4470a0c159bb35284618695d7c", "sha256": "aaf9aa85aaaa466bf969e7dd259547f4481b712fe7ee14befeecc152c403ee05" }, "downloads": -1, "filename": "black-24.1.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "d3cd8f4470a0c159bb35284618695d7c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1401185, "upload_time": "2024-01-26T05:20:33", "upload_time_iso_8601": "2024-01-26T05:20:33.996607Z", "url": "https://files.pythonhosted.org/packages/cf/da/41534a3009124a9448955bbb6fc407d3398f37252274e2a007a0c1fba288/black-24.1.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "9f6d4e8e7d4ae02a84755e58e674596554156633ab285be2efff69aba2157167", "md5": "7a557dd456e98b18257ce41d990d3dc1", "sha256": "ec489cae76eac3f7573629955573c3a0e913641cafb9e3bfc87d8ce155ebdb29" }, "downloads": -1, "filename": "black-24.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7a557dd456e98b18257ce41d990d3dc1", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1708843, "upload_time": "2024-01-26T05:15:21", "upload_time_iso_8601": "2024-01-26T05:15:21.354984Z", "url": "https://files.pythonhosted.org/packages/9f/6d/4e8e7d4ae02a84755e58e674596554156633ab285be2efff69aba2157167/black-24.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b8712db91a19ec935fed22b304381cee632a738e680f21c1ab52c04f343b1edb", "md5": "dc4c78688b17f7cefbfe497f783daca7", "sha256": "a5a0100b4bdb3744dd68412c3789f472d822dc058bb3857743342f8d7f93a5a7" }, "downloads": -1, "filename": "black-24.1.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "dc4c78688b17f7cefbfe497f783daca7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1329553, "upload_time": "2024-01-26T05:16:03", "upload_time_iso_8601": "2024-01-26T05:16:03.224028Z", "url": "https://files.pythonhosted.org/packages/b8/71/2db91a19ec935fed22b304381cee632a738e680f21c1ab52c04f343b1edb/black-24.1.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7cea760d8133face5b392d2d6691de20b5f2bea8b2fe568648e4f59a47fe11f7", "md5": "9c0afe668030a2e597a09514b33ffb48", "sha256": "6cc5a6ba3e671cfea95a40030b16a98ee7dc2e22b6427a6f3389567ecf1b5262" }, "downloads": -1, "filename": "black-24.1.0-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9c0afe668030a2e597a09514b33ffb48", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1536952, "upload_time": "2024-01-26T05:21:06", "upload_time_iso_8601": "2024-01-26T05:21:06.063314Z", "url": "https://files.pythonhosted.org/packages/7c/ea/760d8133face5b392d2d6691de20b5f2bea8b2fe568648e4f59a47fe11f7/black-24.1.0-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "9e54b68bef0017848c02ef2ce0e885689da311e741eba078ee63c9448a8a9704", "md5": "818ed814fdfb16ff3d3ab63c4c7fc9a6", "sha256": "e0e367759062dcabcd9a426d12450c6d61faf1704a352a49055a04c9f9ce8f5a" }, "downloads": -1, "filename": "black-24.1.0-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "818ed814fdfb16ff3d3ab63c4c7fc9a6", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1384832, "upload_time": "2024-01-26T05:22:07", "upload_time_iso_8601": "2024-01-26T05:22:07.876653Z", "url": "https://files.pythonhosted.org/packages/9e/54/b68bef0017848c02ef2ce0e885689da311e741eba078ee63c9448a8a9704/black-24.1.0-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "23ae84d712006b42a8fbce640c355f1eb29eb5e966af35e5c328cbbbf8bf1321", "md5": "36aa2e4f0a56f2d75b9949454326aa78", "sha256": "be305563ff4a2dea813f699daaffac60b977935f3264f66922b1936a5e492ee4" }, "downloads": -1, "filename": "black-24.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "36aa2e4f0a56f2d75b9949454326aa78", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1688080, "upload_time": "2024-01-26T05:14:45", "upload_time_iso_8601": "2024-01-26T05:14:45.265443Z", "url": "https://files.pythonhosted.org/packages/23/ae/84d712006b42a8fbce640c355f1eb29eb5e966af35e5c328cbbbf8bf1321/black-24.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "315ff903a7bd3924ba5a91e1d8fe9c486be5cea103f5ae839328a9fbeeb63a85", "md5": "7b14de8cec79762cb1732eb0f7c23419", "sha256": "6a8977774929b5db90442729f131221e58cc5d8208023c6af9110f26f75b6b20" }, "downloads": -1, "filename": "black-24.1.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "7b14de8cec79762cb1732eb0f7c23419", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1339638, "upload_time": "2024-01-26T05:15:55", "upload_time_iso_8601": "2024-01-26T05:15:55.308901Z", "url": "https://files.pythonhosted.org/packages/31/5f/f903a7bd3924ba5a91e1d8fe9c486be5cea103f5ae839328a9fbeeb63a85/black-24.1.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a4364877583cc05d0152d119f74ccd39516b81593cdda3f3142e7b0254619fe9", "md5": "3e17fb40fa79a8e21cb0f3ac2d58c3f4", "sha256": "d74d4d0da276fbe3b95aa1f404182562c28a04402e4ece60cf373d0b902f33a0" }, "downloads": -1, "filename": "black-24.1.0-cp312-cp312-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3e17fb40fa79a8e21cb0f3ac2d58c3f4", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1565463, "upload_time": "2024-01-26T05:24:33", "upload_time_iso_8601": "2024-01-26T05:24:33.012686Z", "url": "https://files.pythonhosted.org/packages/a4/36/4877583cc05d0152d119f74ccd39516b81593cdda3f3142e7b0254619fe9/black-24.1.0-cp312-cp312-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4df6a1b2d9d343bf9023e7471adc4e5505e3aa9b1d916ae43150dc550e2037db", "md5": "900104e816106608368d42457e1391f1", "sha256": "39addf23f7070dbc0b5518cdb2018468ac249d7412a669b50ccca18427dba1f3" }, "downloads": -1, "filename": "black-24.1.0-cp312-cp312-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "900104e816106608368d42457e1391f1", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1396556, "upload_time": "2024-01-26T05:24:22", "upload_time_iso_8601": "2024-01-26T05:24:22.127131Z", "url": "https://files.pythonhosted.org/packages/4d/f6/a1b2d9d343bf9023e7471adc4e5505e3aa9b1d916ae43150dc550e2037db/black-24.1.0-cp312-cp312-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "50b8fc7fda91bfa12597241e952447422698197951aaa18d9c332aab7489748a", "md5": "c000d5a901bc0f14e6af5fbd8df508e2", "sha256": "827a7c0da520dd2f8e6d7d3595f4591aa62ccccce95b16c0e94bb4066374c4c2" }, "downloads": -1, "filename": "black-24.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c000d5a901bc0f14e6af5fbd8df508e2", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1716439, "upload_time": "2024-01-26T05:14:52", "upload_time_iso_8601": "2024-01-26T05:14:52.256537Z", "url": "https://files.pythonhosted.org/packages/50/b8/fc7fda91bfa12597241e952447422698197951aaa18d9c332aab7489748a/black-24.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "073239217587b93675832c8d06acbb2c6260e1e840ce495c0bfbfb750b6fd0ec", "md5": "f3449aad9d27eb0f5020e9f08b9d2d8e", "sha256": "0cd59d01bf3306ff7e3076dd7f4435fcd2fafe5506a6111cae1138fc7de52382" }, "downloads": -1, "filename": "black-24.1.0-cp312-cp312-win_amd64.whl", "has_sig": false, "md5_digest": "f3449aad9d27eb0f5020e9f08b9d2d8e", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1349450, "upload_time": "2024-01-26T05:16:21", "upload_time_iso_8601": "2024-01-26T05:16:21.038848Z", "url": "https://files.pythonhosted.org/packages/07/32/39217587b93675832c8d06acbb2c6260e1e840ce495c0bfbfb750b6fd0ec/black-24.1.0-cp312-cp312-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f1560d06ec8590fa5082b78c6fdd4768a09ed5aebc0061c23ab4dfdad969053c", "md5": "5cec3468e1b750fab5450e973db54a72", "sha256": "bf8dd261ee82df1abfb591f97e174345ab7375a55019cc93ad38993b9ff5c6ad" }, "downloads": -1, "filename": "black-24.1.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5cec3468e1b750fab5450e973db54a72", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1544270, "upload_time": "2024-01-26T05:28:24", "upload_time_iso_8601": "2024-01-26T05:28:24.031872Z", "url": "https://files.pythonhosted.org/packages/f1/56/0d06ec8590fa5082b78c6fdd4768a09ed5aebc0061c23ab4dfdad969053c/black-24.1.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a584b0a6005feacdadc6a2a16e783c943c558491b06b3bf987b0d3bf081d8aee", "md5": "2f1a4188695c80b91583a93ca2e052d1", "sha256": "82d9452aeabd51d1c8f0d52d4d18e82b9f010ecb30fd55867b5ff95904f427ff" }, "downloads": -1, "filename": "black-24.1.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "2f1a4188695c80b91583a93ca2e052d1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1389903, "upload_time": "2024-01-26T05:23:37", "upload_time_iso_8601": "2024-01-26T05:23:37.724256Z", "url": "https://files.pythonhosted.org/packages/a5/84/b0a6005feacdadc6a2a16e783c943c558491b06b3bf987b0d3bf081d8aee/black-24.1.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2cf0c83923a8918e49eb734a260fbd055d47cfce394b1a162791fbc7d630f88a", "md5": "4ed2d9cbf04000968e05967487a7c786", "sha256": "9aede09f72b2a466e673ee9fca96e4bccc36f463cac28a35ce741f0fd13aea8b" }, "downloads": -1, "filename": "black-24.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4ed2d9cbf04000968e05967487a7c786", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1690714, "upload_time": "2024-01-26T05:15:01", "upload_time_iso_8601": "2024-01-26T05:15:01.211464Z", "url": "https://files.pythonhosted.org/packages/2c/f0/c83923a8918e49eb734a260fbd055d47cfce394b1a162791fbc7d630f88a/black-24.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a9b97c96ba26d9557ea2066d4be6a33f558db268572f1ecc1c9a1474bfc7bd26", "md5": "ad725e8e81d8f2d05e1daba76e344814", "sha256": "780f13d03066a7daf1707ec723fdb36bd698ffa29d95a2e7ef33a8dd8fe43b5c" }, "downloads": -1, "filename": "black-24.1.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ad725e8e81d8f2d05e1daba76e344814", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1334533, "upload_time": "2024-01-26T05:16:08", "upload_time_iso_8601": "2024-01-26T05:16:08.905414Z", "url": "https://files.pythonhosted.org/packages/a9/b9/7c96ba26d9557ea2066d4be6a33f558db268572f1ecc1c9a1474bfc7bd26/black-24.1.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "fce844124a065bd0f5debaa69a242ef64c94a87efd47648d5025395a6eefb0ff", "md5": "e4f5525ccd3b4c69a03ba4c7433d5e6f", "sha256": "a15670c650668399c4b5eae32e222728185961d6ef6b568f62c1681d57b381ba" }, "downloads": -1, "filename": "black-24.1.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e4f5525ccd3b4c69a03ba4c7433d5e6f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1552921, "upload_time": "2024-01-26T05:27:10", "upload_time_iso_8601": "2024-01-26T05:27:10.670189Z", "url": "https://files.pythonhosted.org/packages/fc/e8/44124a065bd0f5debaa69a242ef64c94a87efd47648d5025395a6eefb0ff/black-24.1.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8e6e41507bbb00f00c0d8cb7d15ac469e2db5e603a946b37a1eb9e3959d2c1a0", "md5": "ba87b1a8c78ede73e2ee9592c01b5334", "sha256": "1e0fa70b8464055069864a4733901b31cbdbe1273f63a24d2fa9d726723d45ac" }, "downloads": -1, "filename": "black-24.1.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "ba87b1a8c78ede73e2ee9592c01b5334", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1400351, "upload_time": "2024-01-26T05:27:06", "upload_time_iso_8601": "2024-01-26T05:27:06.921593Z", "url": "https://files.pythonhosted.org/packages/8e/6e/41507bbb00f00c0d8cb7d15ac469e2db5e603a946b37a1eb9e3959d2c1a0/black-24.1.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d2e18f2071ab23deb9cf84e314b78e379453137091e59efd8bceeeea325a9afb", "md5": "258f82514a977239ed876c8bfe3a44b5", "sha256": "7fa8d9aaa22d846f8c0f7f07391148e5e346562e9b215794f9101a8339d8b6d8" }, "downloads": -1, "filename": "black-24.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "258f82514a977239ed876c8bfe3a44b5", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1707701, "upload_time": "2024-01-26T05:14:53", "upload_time_iso_8601": "2024-01-26T05:14:53.580206Z", "url": "https://files.pythonhosted.org/packages/d2/e1/8f2071ab23deb9cf84e314b78e379453137091e59efd8bceeeea325a9afb/black-24.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8be24823d9f02d2743a02e2c236f98b96b52f7a16b2bedc0e3148322dffbd06f", "md5": "8adc027aadb32965de9be8c2a1735908", "sha256": "f0dfbfbacfbf9cd1fac7a5ddd3e72510ffa93e841a69fcf4a6358feab1685382" }, "downloads": -1, "filename": "black-24.1.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "8adc027aadb32965de9be8c2a1735908", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1328950, "upload_time": "2024-01-26T05:16:06", "upload_time_iso_8601": "2024-01-26T05:16:06.074547Z", "url": "https://files.pythonhosted.org/packages/8b/e2/4823d9f02d2743a02e2c236f98b96b52f7a16b2bedc0e3148322dffbd06f/black-24.1.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4969cfd27026c25f49eb97d1e6992a8fada9b4a3f225e89ef361cd3a65462d84", "md5": "316db648877ccf5c90f98e7a94dd99a5", "sha256": "5134a6f6b683aa0a5592e3fd61dd3519d8acd953d93e2b8b76f9981245b65594" }, "downloads": -1, "filename": "black-24.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "316db648877ccf5c90f98e7a94dd99a5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 195345, "upload_time": "2024-01-26T05:12:30", "upload_time_iso_8601": "2024-01-26T05:12:30.775755Z", "url": "https://files.pythonhosted.org/packages/49/69/cfd27026c25f49eb97d1e6992a8fada9b4a3f225e89ef361cd3a65462d84/black-24.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ea1933d4f2f0babcbc07d3e2c058a64c76606cf19884a600536c837aaf4e4f2d", "md5": "c23bce00dc54472de785b34ea7381f1d", "sha256": "30fbf768cd4f4576598b1db0202413fafea9a227ef808d1a12230c643cefe9fc" }, "downloads": -1, "filename": "black-24.1.0.tar.gz", "has_sig": false, "md5_digest": "c23bce00dc54472de785b34ea7381f1d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 622911, "upload_time": "2024-01-26T05:12:33", "upload_time_iso_8601": "2024-01-26T05:12:33.568355Z", "url": "https://files.pythonhosted.org/packages/ea/19/33d4f2f0babcbc07d3e2c058a64c76606cf19884a600536c837aaf4e4f2d/black-24.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "24.1.1": [ { "comment_text": "", "digests": { "blake2b_256": "959e70f6f3e8e3137c282f7729241d6fede8a1e0dc7a14653c8ac54530b0ea0d", "md5": "d64cdc60721a62cb1f087b57a02bc003", "sha256": "2588021038bd5ada078de606f2a804cadd0a3cc6a79cb3e9bb3a8bf581325a4c" }, "downloads": -1, "filename": "black-24.1.1-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d64cdc60721a62cb1f087b57a02bc003", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1554494, "upload_time": "2024-01-28T05:37:38", "upload_time_iso_8601": "2024-01-28T05:37:38.937459Z", "url": "https://files.pythonhosted.org/packages/95/9e/70f6f3e8e3137c282f7729241d6fede8a1e0dc7a14653c8ac54530b0ea0d/black-24.1.1-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a83e9e02aa484f3c0f23ccbb69152b0d20d239b78aed87c15e8583bd92dcc8c4", "md5": "71bda986cc135c9f13a06b92c8615b66", "sha256": "1a95915c98d6e32ca43809d46d932e2abc5f1f7d582ffbe65a5b4d1588af7445" }, "downloads": -1, "filename": "black-24.1.1-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "71bda986cc135c9f13a06b92c8615b66", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1402333, "upload_time": "2024-01-28T05:35:45", "upload_time_iso_8601": "2024-01-28T05:35:45.650373Z", "url": "https://files.pythonhosted.org/packages/a8/3e/9e02aa484f3c0f23ccbb69152b0d20d239b78aed87c15e8583bd92dcc8c4/black-24.1.1-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ee938abf6f3722460eb53f37a55356cd33462502748867d767ec2adc4d43cecd", "md5": "c8d5dc4c3b64002ae65a6e8c85b0bfc5", "sha256": "2fa6a0e965779c8f2afb286f9ef798df770ba2b6cee063c650b96adec22c056a" }, "downloads": -1, "filename": "black-24.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c8d5dc4c3b64002ae65a6e8c85b0bfc5", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1710463, "upload_time": "2024-01-28T05:31:15", "upload_time_iso_8601": "2024-01-28T05:31:15.234830Z", "url": "https://files.pythonhosted.org/packages/ee/93/8abf6f3722460eb53f37a55356cd33462502748867d767ec2adc4d43cecd/black-24.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d59f939787bd274d55c235d3f6692c7b40f92c9538b6875c4a838e5baf4dcf09", "md5": "3d61b27071306b27dd297f6495232aaf", "sha256": "5242ecd9e990aeb995b6d03dc3b2d112d4a78f2083e5a8e86d566340ae80fec4" }, "downloads": -1, "filename": "black-24.1.1-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "3d61b27071306b27dd297f6495232aaf", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1331084, "upload_time": "2024-01-28T05:32:24", "upload_time_iso_8601": "2024-01-28T05:32:24.720005Z", "url": "https://files.pythonhosted.org/packages/d5/9f/939787bd274d55c235d3f6692c7b40f92c9538b6875c4a838e5baf4dcf09/black-24.1.1-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "efccb205025212eaa90a73985873d5b88210d7c337c02afc4d9fa6ce438a080f", "md5": "a4670d40ad647b4155ead611d2ceabf0", "sha256": "fc1ec9aa6f4d98d022101e015261c056ddebe3da6a8ccfc2c792cbe0349d48b7" }, "downloads": -1, "filename": "black-24.1.1-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a4670d40ad647b4155ead611d2ceabf0", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1538440, "upload_time": "2024-01-28T05:42:42", "upload_time_iso_8601": "2024-01-28T05:42:42.506479Z", "url": "https://files.pythonhosted.org/packages/ef/cc/b205025212eaa90a73985873d5b88210d7c337c02afc4d9fa6ce438a080f/black-24.1.1-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c092cc543b133cd1337cbfce3e7d2c9d45b5e913224ed1fc791875d062d7be46", "md5": "e492cb895aadfec1f00ca65a76653238", "sha256": "0269dfdea12442022e88043d2910429bed717b2d04523867a85dacce535916b8" }, "downloads": -1, "filename": "black-24.1.1-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "e492cb895aadfec1f00ca65a76653238", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1386681, "upload_time": "2024-01-28T05:41:01", "upload_time_iso_8601": "2024-01-28T05:41:01.203888Z", "url": "https://files.pythonhosted.org/packages/c0/92/cc543b133cd1337cbfce3e7d2c9d45b5e913224ed1fc791875d062d7be46/black-24.1.1-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e8e38519496759b4f15d73323b00f70bde3eb097efd177382a4bed3899162a9e", "md5": "ed9db89b01e38f04e39727c6f4d32482", "sha256": "b3d64db762eae4a5ce04b6e3dd745dcca0fb9560eb931a5be97472e38652a161" }, "downloads": -1, "filename": "black-24.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ed9db89b01e38f04e39727c6f4d32482", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1690441, "upload_time": "2024-01-28T05:31:07", "upload_time_iso_8601": "2024-01-28T05:31:07.511590Z", "url": "https://files.pythonhosted.org/packages/e8/e3/8519496759b4f15d73323b00f70bde3eb097efd177382a4bed3899162a9e/black-24.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1d2585c545f605f005a1724ccc654f4981461ea0234835ba7689f6c5a97d3e5d", "md5": "1e37fddc905664211dd7b305e075e08c", "sha256": "5d7b06ea8816cbd4becfe5f70accae953c53c0e53aa98730ceccb0395520ee5d" }, "downloads": -1, "filename": "black-24.1.1-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "1e37fddc905664211dd7b305e075e08c", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1340846, "upload_time": "2024-01-28T05:32:05", "upload_time_iso_8601": "2024-01-28T05:32:05.545898Z", "url": "https://files.pythonhosted.org/packages/1d/25/85c545f605f005a1724ccc654f4981461ea0234835ba7689f6c5a97d3e5d/black-24.1.1-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "179e104321dd49d30f7e9475afef76db7ad14b43f56933a315a657504d8fbdd7", "md5": "eb17d38ce34d757520ee2649bf3bd30e", "sha256": "e2c8dfa14677f90d976f68e0c923947ae68fa3961d61ee30976c388adc0b02c8" }, "downloads": -1, "filename": "black-24.1.1-cp312-cp312-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "eb17d38ce34d757520ee2649bf3bd30e", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1567927, "upload_time": "2024-01-28T05:43:39", "upload_time_iso_8601": "2024-01-28T05:43:39.588620Z", "url": "https://files.pythonhosted.org/packages/17/9e/104321dd49d30f7e9475afef76db7ad14b43f56933a315a657504d8fbdd7/black-24.1.1-cp312-cp312-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "beff9380fb957347ab897543b53228cfd85112e421bdaf243e3865fa2d5e80ce", "md5": "0c988b9f5077ab1ef70ef24bf971397b", "sha256": "a21725862d0e855ae05da1dd25e3825ed712eaaccef6b03017fe0853a01aa45e" }, "downloads": -1, "filename": "black-24.1.1-cp312-cp312-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "0c988b9f5077ab1ef70ef24bf971397b", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1397655, "upload_time": "2024-01-28T05:39:08", "upload_time_iso_8601": "2024-01-28T05:39:08.418179Z", "url": "https://files.pythonhosted.org/packages/be/ff/9380fb957347ab897543b53228cfd85112e421bdaf243e3865fa2d5e80ce/black-24.1.1-cp312-cp312-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "551407a41fb78fe81aa4852f16af4211fab5a130fcd3150b44a336042a3252d5", "md5": "744a1cda4dfce75cf78d344dd8f1bf1d", "sha256": "07204d078e25327aad9ed2c64790d681238686bce254c910de640c7cc4fc3aa6" }, "downloads": -1, "filename": "black-24.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "744a1cda4dfce75cf78d344dd8f1bf1d", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1718031, "upload_time": "2024-01-28T05:31:22", "upload_time_iso_8601": "2024-01-28T05:31:22.398004Z", "url": "https://files.pythonhosted.org/packages/55/14/07a41fb78fe81aa4852f16af4211fab5a130fcd3150b44a336042a3252d5/black-24.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e5faeaa2c165840a2496654366fcdc17f63459b89e3296b9269a18ba6d71f596", "md5": "4839624c5857e106e5631467d71f7462", "sha256": "a83fe522d9698d8f9a101b860b1ee154c1d25f8a82ceb807d319f085b2627c5b" }, "downloads": -1, "filename": "black-24.1.1-cp312-cp312-win_amd64.whl", "has_sig": false, "md5_digest": "4839624c5857e106e5631467d71f7462", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1350588, "upload_time": "2024-01-28T05:32:22", "upload_time_iso_8601": "2024-01-28T05:32:22.839620Z", "url": "https://files.pythonhosted.org/packages/e5/fa/eaa2c165840a2496654366fcdc17f63459b89e3296b9269a18ba6d71f596/black-24.1.1-cp312-cp312-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "527172e0e1bf7de04917acfeeaa3c9c5a658b749b57931b2405cc18cee93e8a4", "md5": "7d3ec081038cc884d4aec765c9d2a4dd", "sha256": "08b34e85170d368c37ca7bf81cf67ac863c9d1963b2c1780c39102187ec8dd62" }, "downloads": -1, "filename": "black-24.1.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7d3ec081038cc884d4aec765c9d2a4dd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1545738, "upload_time": "2024-01-28T05:42:47", "upload_time_iso_8601": "2024-01-28T05:42:47.154977Z", "url": "https://files.pythonhosted.org/packages/52/71/72e0e1bf7de04917acfeeaa3c9c5a658b749b57931b2405cc18cee93e8a4/black-24.1.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "573ece76db3147720a3e1e2e8f6aaa7655eb3afb7b33d678823eeaed76707693", "md5": "34cd112cf15a689d29cc231600e0634e", "sha256": "7258c27115c1e3b5de9ac6c4f9957e3ee2c02c0b39222a24dc7aa03ba0e986f5" }, "downloads": -1, "filename": "black-24.1.1-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "34cd112cf15a689d29cc231600e0634e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1391619, "upload_time": "2024-01-28T05:39:59", "upload_time_iso_8601": "2024-01-28T05:39:59.443581Z", "url": "https://files.pythonhosted.org/packages/57/3e/ce76db3147720a3e1e2e8f6aaa7655eb3afb7b33d678823eeaed76707693/black-24.1.1-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1201612da7e09bdb7f4a5e0aece4ffe556538ab3a990cf7394b1fe24d91997d2", "md5": "0002e63d73374c060b4978ebeb6096ef", "sha256": "40657e1b78212d582a0edecafef133cf1dd02e6677f539b669db4746150d38f6" }, "downloads": -1, "filename": "black-24.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0002e63d73374c060b4978ebeb6096ef", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1693075, "upload_time": "2024-01-28T05:31:01", "upload_time_iso_8601": "2024-01-28T05:31:01.267739Z", "url": "https://files.pythonhosted.org/packages/12/01/612da7e09bdb7f4a5e0aece4ffe556538ab3a990cf7394b1fe24d91997d2/black-24.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2eb543ad100a2b3bd5c4ba60ef4b8a07ffa453a2a3458700ee98f34c568f7698", "md5": "a9572d44cb9c0c7efe7bd9d165f375f0", "sha256": "e298d588744efda02379521a19639ebcd314fba7a49be22136204d7ed1782717" }, "downloads": -1, "filename": "black-24.1.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "a9572d44cb9c0c7efe7bd9d165f375f0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1335867, "upload_time": "2024-01-28T05:31:34", "upload_time_iso_8601": "2024-01-28T05:31:34.552841Z", "url": "https://files.pythonhosted.org/packages/2e/b5/43ad100a2b3bd5c4ba60ef4b8a07ffa453a2a3458700ee98f34c568f7698/black-24.1.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b8eebaf094c4cc0bf2345af8690edb7f32cadf29ba81d6a9eef21ddea42de728", "md5": "e515efbd14e86a33c1e3ca48d9025de4", "sha256": "34afe9da5056aa123b8bfda1664bfe6fb4e9c6f311d8e4a6eb089da9a9173bf9" }, "downloads": -1, "filename": "black-24.1.1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e515efbd14e86a33c1e3ca48d9025de4", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1554037, "upload_time": "2024-01-28T05:44:15", "upload_time_iso_8601": "2024-01-28T05:44:15.156450Z", "url": "https://files.pythonhosted.org/packages/b8/ee/baf094c4cc0bf2345af8690edb7f32cadf29ba81d6a9eef21ddea42de728/black-24.1.1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "debb27d8b72ae150a5b11eeeb332a23ab53e2965d6c575a069ced0d8a42630e8", "md5": "6f03bac8a84b824b07f4d076520f52ed", "sha256": "854c06fb86fd854140f37fb24dbf10621f5dab9e3b0c29a690ba595e3d543024" }, "downloads": -1, "filename": "black-24.1.1-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "6f03bac8a84b824b07f4d076520f52ed", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1401926, "upload_time": "2024-01-28T05:42:12", "upload_time_iso_8601": "2024-01-28T05:42:12.986676Z", "url": "https://files.pythonhosted.org/packages/de/bb/27d8b72ae150a5b11eeeb332a23ab53e2965d6c575a069ced0d8a42630e8/black-24.1.1-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "519c66639d55f96ca0dff924db2b72f03fccac90c1b8fe0f7f33452669d1bdb9", "md5": "0270c8fc82749542c33b2a4ecccc0da9", "sha256": "3897ae5a21ca132efa219c029cce5e6bfc9c3d34ed7e892113d199c0b1b444a2" }, "downloads": -1, "filename": "black-24.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0270c8fc82749542c33b2a4ecccc0da9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1709158, "upload_time": "2024-01-28T05:31:09", "upload_time_iso_8601": "2024-01-28T05:31:09.282576Z", "url": "https://files.pythonhosted.org/packages/51/9c/66639d55f96ca0dff924db2b72f03fccac90c1b8fe0f7f33452669d1bdb9/black-24.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4a7d044d6e90a28b4bb4bfd281b478867457ee9395caf876318ac5cfc05af2f8", "md5": "5515e884133539197335b218bd52089d", "sha256": "ecba2a15dfb2d97105be74bbfe5128bc5e9fa8477d8c46766505c1dda5883aac" }, "downloads": -1, "filename": "black-24.1.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "5515e884133539197335b218bd52089d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1330894, "upload_time": "2024-01-28T05:32:04", "upload_time_iso_8601": "2024-01-28T05:32:04.147230Z", "url": "https://files.pythonhosted.org/packages/4a/7d/044d6e90a28b4bb4bfd281b478867457ee9395caf876318ac5cfc05af2f8/black-24.1.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "95f3c3d59ae490c627950efc97a27c3f73776577e2ec32d35737e72aee3d6738", "md5": "b7d0355b59733935ad9d03e94858c102", "sha256": "5cdc2e2195212208fbcae579b931407c1fa9997584f0a415421748aeafff1168" }, "downloads": -1, "filename": "black-24.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b7d0355b59733935ad9d03e94858c102", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 195702, "upload_time": "2024-01-28T05:28:45", "upload_time_iso_8601": "2024-01-28T05:28:45.636338Z", "url": "https://files.pythonhosted.org/packages/95/f3/c3d59ae490c627950efc97a27c3f73776577e2ec32d35737e72aee3d6738/black-24.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "77eca429d15d2e7f996203bff98e2b2e84ad4cb3de318de147b0038dc93fbc71", "md5": "9bdb630bd78ea67a2e7809faa75f2cb3", "sha256": "48b5760dcbfe5cf97fd4fba23946681f3a81514c6ab8a45b50da67ac8fbc6c7b" }, "downloads": -1, "filename": "black-24.1.1.tar.gz", "has_sig": false, "md5_digest": "9bdb630bd78ea67a2e7809faa75f2cb3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 623755, "upload_time": "2024-01-28T05:28:48", "upload_time_iso_8601": "2024-01-28T05:28:48.365656Z", "url": "https://files.pythonhosted.org/packages/77/ec/a429d15d2e7f996203bff98e2b2e84ad4cb3de318de147b0038dc93fbc71/black-24.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "24.1a1": [ { "comment_text": "", "digests": { "blake2b_256": "90170a0298874d967725593381587cfaeca58812bc7d1f5b3d36d0d2e0ad810c", "md5": "ec244cd2d09b3ce7b7972a2774063764", "sha256": "3d139b9531e6bb6d129497a46475535d8289dddc861a5b980f908c36597b9817" }, "downloads": -1, "filename": "black-24.1a1-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ec244cd2d09b3ce7b7972a2774063764", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1546156, "upload_time": "2023-12-12T06:22:38", "upload_time_iso_8601": "2023-12-12T06:22:38.530133Z", "url": "https://files.pythonhosted.org/packages/90/17/0a0298874d967725593381587cfaeca58812bc7d1f5b3d36d0d2e0ad810c/black-24.1a1-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "26d632fac413058ac943ee4292f6950c1af7b3c4a3a589f63887ba605cdb931b", "md5": "5afc4748aa96fb8802f339c351201f94", "sha256": "2220c470c22476ca9631337b0daae41be2b215599919b19d576a956ad38aca69" }, "downloads": -1, "filename": "black-24.1a1-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "5afc4748aa96fb8802f339c351201f94", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1393425, "upload_time": "2023-12-12T06:22:50", "upload_time_iso_8601": "2023-12-12T06:22:50.397066Z", "url": "https://files.pythonhosted.org/packages/26/d6/32fac413058ac943ee4292f6950c1af7b3c4a3a589f63887ba605cdb931b/black-24.1a1-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ea47970c7f76e8025f8be025b62e975aff3a04e919a7be1539fd898e3485f3de", "md5": "727a08d8d6b4519426cf6afbba5f1602", "sha256": "2a12829e372563ffff10c18c7aff1ef274da6afbc7bc8ccdb5fcc8ff84cab43f" }, "downloads": -1, "filename": "black-24.1a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "727a08d8d6b4519426cf6afbba5f1602", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1695900, "upload_time": "2023-12-12T06:15:35", "upload_time_iso_8601": "2023-12-12T06:15:35.298634Z", "url": "https://files.pythonhosted.org/packages/ea/47/970c7f76e8025f8be025b62e975aff3a04e919a7be1539fd898e3485f3de/black-24.1a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "def8402c0e0d4534bb0974c1e4d02af8f6ad89909c4ad62a65a47270966ed9c7", "md5": "14c6dbfdadedd2cf2e1a7f8d55ca4a51", "sha256": "d47b6530c55c092a9d841a12c8b3ad838bd639bebf6660a3df9dae83d4ab83c1" }, "downloads": -1, "filename": "black-24.1a1-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "14c6dbfdadedd2cf2e1a7f8d55ca4a51", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1322239, "upload_time": "2023-12-12T06:16:23", "upload_time_iso_8601": "2023-12-12T06:16:23.520713Z", "url": "https://files.pythonhosted.org/packages/de/f8/402c0e0d4534bb0974c1e4d02af8f6ad89909c4ad62a65a47270966ed9c7/black-24.1a1-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3878a8bff706078a795613b9cdde69c3b5127a10d44141bfcfb98953742d2c0f", "md5": "7dd50fde5d1db1651e8c90e87d4d022b", "sha256": "6b594b3ede60182215d258c76de2de64712d2e8424442ff4402276e22684abbe" }, "downloads": -1, "filename": "black-24.1a1-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7dd50fde5d1db1651e8c90e87d4d022b", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1525386, "upload_time": "2023-12-12T06:23:30", "upload_time_iso_8601": "2023-12-12T06:23:30.205917Z", "url": "https://files.pythonhosted.org/packages/38/78/a8bff706078a795613b9cdde69c3b5127a10d44141bfcfb98953742d2c0f/black-24.1a1-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "48df368f0984d604e41389a2086f8316b1ad342a16d2a10ace8722ae74c37c42", "md5": "650186d51f403c796ecdd04fbf18f649", "sha256": "915a6b6b916fc66edec886fc71b60284e447d8fa39d22b879af7ae6efccca90f" }, "downloads": -1, "filename": "black-24.1a1-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "650186d51f403c796ecdd04fbf18f649", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1375058, "upload_time": "2023-12-12T06:22:19", "upload_time_iso_8601": "2023-12-12T06:22:19.570361Z", "url": "https://files.pythonhosted.org/packages/48/df/368f0984d604e41389a2086f8316b1ad342a16d2a10ace8722ae74c37c42/black-24.1a1-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d86759a1cfa02ce13c5293c64e6ef368d7fd05bd8f266d5603c254ae82fc078e", "md5": "b3b7399a3ca0a06807d4d3d6997a7661", "sha256": "cb0a7ea9aa1c108924e31f1204a1e2534af255dbaa24ecbb8c05f47341a7b6f1" }, "downloads": -1, "filename": "black-24.1a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b3b7399a3ca0a06807d4d3d6997a7661", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1679512, "upload_time": "2023-12-12T06:15:27", "upload_time_iso_8601": "2023-12-12T06:15:27.060086Z", "url": "https://files.pythonhosted.org/packages/d8/67/59a1cfa02ce13c5293c64e6ef368d7fd05bd8f266d5603c254ae82fc078e/black-24.1a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "9e2b00cf98ef300ccacfcb9b92a96121285e80220ec5a60b44f00c09772b70a8", "md5": "88233a7a638cff836075092336c5e0ae", "sha256": "41c0ce5cbdb701900c166bcca08ac941b64cf1d6967509e3caeab126da0ae0d0" }, "downloads": -1, "filename": "black-24.1a1-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "88233a7a638cff836075092336c5e0ae", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1332565, "upload_time": "2023-12-12T06:16:08", "upload_time_iso_8601": "2023-12-12T06:16:08.565904Z", "url": "https://files.pythonhosted.org/packages/9e/2b/00cf98ef300ccacfcb9b92a96121285e80220ec5a60b44f00c09772b70a8/black-24.1a1-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6930d04e2c6ddd17955476060ba2b58a6df34f424ee00fdd153e52cc1536ef26", "md5": "6e52605d02693e21de4a1978c8723e60", "sha256": "87c8165fad00b03d9c1d400b1dd250479792f49d012807ee45162d323d04fc06" }, "downloads": -1, "filename": "black-24.1a1-cp312-cp312-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6e52605d02693e21de4a1978c8723e60", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1554704, "upload_time": "2023-12-12T06:25:36", "upload_time_iso_8601": "2023-12-12T06:25:36.026916Z", "url": "https://files.pythonhosted.org/packages/69/30/d04e2c6ddd17955476060ba2b58a6df34f424ee00fdd153e52cc1536ef26/black-24.1a1-cp312-cp312-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0acec1c7445a62238c75e5cb84c6598fad6ab56d91ebc29a239023a132db8d32", "md5": "d7ad3174f9db30d2d6e42c9cbdb8f9db", "sha256": "6e3c74b35ea179bb69440286b81c309a64c34a032746a9eef3399dc3ce671352" }, "downloads": -1, "filename": "black-24.1a1-cp312-cp312-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "d7ad3174f9db30d2d6e42c9cbdb8f9db", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1388911, "upload_time": "2023-12-12T06:26:01", "upload_time_iso_8601": "2023-12-12T06:26:01.884861Z", "url": "https://files.pythonhosted.org/packages/0a/ce/c1c7445a62238c75e5cb84c6598fad6ab56d91ebc29a239023a132db8d32/black-24.1a1-cp312-cp312-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8a217ba13793991097401829b9ce8ae70d983cf47f6f8f81c8fc9eda78b77d09", "md5": "e7653d8420a30fa9f69dcbf1ceaf93e2", "sha256": "d30a018fc03fd1e83c75d40b8a156ef541d0b56b6403b63754e1cc96889849d9" }, "downloads": -1, "filename": "black-24.1a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e7653d8420a30fa9f69dcbf1ceaf93e2", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1707564, "upload_time": "2023-12-12T06:16:15", "upload_time_iso_8601": "2023-12-12T06:16:15.892958Z", "url": "https://files.pythonhosted.org/packages/8a/21/7ba13793991097401829b9ce8ae70d983cf47f6f8f81c8fc9eda78b77d09/black-24.1a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "99cdc6f3eb848a502dfab0f31c8a3866efe86f25b98bb8bb136e3274afd62f33", "md5": "7bc568611fcfea5b871fc3d143d002d2", "sha256": "88d1c60bac2044a409154e895abb9d74c8ff5d034fb70f3e1f7c3ae96206bc0c" }, "downloads": -1, "filename": "black-24.1a1-cp312-cp312-win_amd64.whl", "has_sig": false, "md5_digest": "7bc568611fcfea5b871fc3d143d002d2", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1343915, "upload_time": "2023-12-12T06:16:58", "upload_time_iso_8601": "2023-12-12T06:16:58.717926Z", "url": "https://files.pythonhosted.org/packages/99/cd/c6f3eb848a502dfab0f31c8a3866efe86f25b98bb8bb136e3274afd62f33/black-24.1a1-cp312-cp312-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "65846c024f9048bb57c82ef81e89a4ee03a421618a10ab4bd17438e6f6e014d1", "md5": "d4bb057648cf33b0229b6e212f080891", "sha256": "4de8ba5825588017f90e63d7a25fc4df33a6342d1f4d628ad76130d8f4488fc6" }, "downloads": -1, "filename": "black-24.1a1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d4bb057648cf33b0229b6e212f080891", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1534471, "upload_time": "2023-12-12T06:26:09", "upload_time_iso_8601": "2023-12-12T06:26:09.814512Z", "url": "https://files.pythonhosted.org/packages/65/84/6c024f9048bb57c82ef81e89a4ee03a421618a10ab4bd17438e6f6e014d1/black-24.1a1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8370fa08a9dce162926d708713d914f8ddaad4ee6645cf16948fd649d4e04ff6", "md5": "2bcc255ab9d3783505c6c9717fd1cbd5", "sha256": "c86ecd9d3da3d91e96da5f4a43d9c4fe35c5698b0633e91f171ba9468d112a8b" }, "downloads": -1, "filename": "black-24.1a1-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "2bcc255ab9d3783505c6c9717fd1cbd5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1380837, "upload_time": "2023-12-12T06:28:18", "upload_time_iso_8601": "2023-12-12T06:28:18.100499Z", "url": "https://files.pythonhosted.org/packages/83/70/fa08a9dce162926d708713d914f8ddaad4ee6645cf16948fd649d4e04ff6/black-24.1a1-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b638254d2b84e71878d51bba5ef9754f1e3ef0479107e78d996fe89a3238dc0f", "md5": "bf5f6845b23416ed9cae94307e90444e", "sha256": "623efdb54e7290ba75f7b822dfd2d8a47a55e721ae63aab671ccfd46b2ba6c5d" }, "downloads": -1, "filename": "black-24.1a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "bf5f6845b23416ed9cae94307e90444e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1682356, "upload_time": "2023-12-12T06:15:20", "upload_time_iso_8601": "2023-12-12T06:15:20.574323Z", "url": "https://files.pythonhosted.org/packages/b6/38/254d2b84e71878d51bba5ef9754f1e3ef0479107e78d996fe89a3238dc0f/black-24.1a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e5227eecdc2adcbbe53594cd4a3a9682dd98460b5240228a5c29ec1d6ffb95a4", "md5": "81d026f6e5a2ff33835dd5c051b3b0d4", "sha256": "ec345caf15ae2c61540812500979e92f2989c6b6d4d13d21bdc82908043b3265" }, "downloads": -1, "filename": "black-24.1a1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "81d026f6e5a2ff33835dd5c051b3b0d4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1326133, "upload_time": "2023-12-12T06:16:45", "upload_time_iso_8601": "2023-12-12T06:16:45.287239Z", "url": "https://files.pythonhosted.org/packages/e5/22/7eecdc2adcbbe53594cd4a3a9682dd98460b5240228a5c29ec1d6ffb95a4/black-24.1a1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "17920ba296cda068e1fa8859f644ddae3673a19613c5d2bf02342b7ed119fd2e", "md5": "acec9f8c71e995cabd78d8a608bfd57e", "sha256": "ac226f37fc429b386d6447df6256dc958c28dd602f86f950072febf886995f80" }, "downloads": -1, "filename": "black-24.1a1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "acec9f8c71e995cabd78d8a608bfd57e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1545863, "upload_time": "2023-12-12T06:29:40", "upload_time_iso_8601": "2023-12-12T06:29:40.262005Z", "url": "https://files.pythonhosted.org/packages/17/92/0ba296cda068e1fa8859f644ddae3673a19613c5d2bf02342b7ed119fd2e/black-24.1a1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4a6766038a181a997fa81f4d0b749e5163e5df7b93b33107faa05892399bb47c", "md5": "bb583fb8ef3998b6953937d07e155fcd", "sha256": "cad114d8673adab76b3602c28c461c613b7be3da28415500e42aed47415eb561" }, "downloads": -1, "filename": "black-24.1a1-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "bb583fb8ef3998b6953937d07e155fcd", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1392832, "upload_time": "2023-12-12T06:28:52", "upload_time_iso_8601": "2023-12-12T06:28:52.952076Z", "url": "https://files.pythonhosted.org/packages/4a/67/66038a181a997fa81f4d0b749e5163e5df7b93b33107faa05892399bb47c/black-24.1a1-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "dec6deea85a21d32605a8c7671e17366af108a5caa000fa5b8e350f34bc55ae9", "md5": "76ef2d14870f26712d990f794508257b", "sha256": "e8a054dbb8947718820be2ed6953d66b912ec2795f282725efdd08381a11b0d0" }, "downloads": -1, "filename": "black-24.1a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "76ef2d14870f26712d990f794508257b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1695104, "upload_time": "2023-12-12T06:15:23", "upload_time_iso_8601": "2023-12-12T06:15:23.503862Z", "url": "https://files.pythonhosted.org/packages/de/c6/deea85a21d32605a8c7671e17366af108a5caa000fa5b8e350f34bc55ae9/black-24.1a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ffc185539113fdf0701c7dbedd04700759d02a03dfc2c064ae6fd553d431383e", "md5": "ad351b14543be77a672671cf19561f47", "sha256": "b03cdf8a4e15929adf47e5e40a0ddeea1d63b65cf59c22553c12417a0c7ccbf4" }, "downloads": -1, "filename": "black-24.1a1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "ad351b14543be77a672671cf19561f47", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1321873, "upload_time": "2023-12-12T06:16:32", "upload_time_iso_8601": "2023-12-12T06:16:32.995903Z", "url": "https://files.pythonhosted.org/packages/ff/c1/85539113fdf0701c7dbedd04700759d02a03dfc2c064ae6fd553d431383e/black-24.1a1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "210f6d4e40490913683eed97359fe2a178fa8b77cb454ba808ea2c7d3fec07b4", "md5": "a36793191a754660ec472f13ed2b03fa", "sha256": "a2c977909557439d0f17dc82adaea84e48374950d53416efc0b8451a594d42c3" }, "downloads": -1, "filename": "black-24.1a1-py3-none-any.whl", "has_sig": false, "md5_digest": "a36793191a754660ec472f13ed2b03fa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 193516, "upload_time": "2023-12-12T06:12:48", "upload_time_iso_8601": "2023-12-12T06:12:48.598392Z", "url": "https://files.pythonhosted.org/packages/21/0f/6d4e40490913683eed97359fe2a178fa8b77cb454ba808ea2c7d3fec07b4/black-24.1a1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "82ccee55b8bca95b58861931b517c8126918a1229b9419fa182d7b1a52ea2ce5", "md5": "67b471b831062ee5d0c760ff4bb78afd", "sha256": "4a159ae57f239f3f1ef6a78784b00c1c617c7bb188cc351b3017b9e0702df11c" }, "downloads": -1, "filename": "black-24.1a1.tar.gz", "has_sig": false, "md5_digest": "67b471b831062ee5d0c760ff4bb78afd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 620429, "upload_time": "2023-12-12T06:12:51", "upload_time_iso_8601": "2023-12-12T06:12:51.282571Z", "url": "https://files.pythonhosted.org/packages/82/cc/ee55b8bca95b58861931b517c8126918a1229b9419fa182d7b1a52ea2ce5/black-24.1a1.tar.gz", "yanked": false, "yanked_reason": null } ], "24.2.0": [ { "comment_text": "", "digests": { "blake2b_256": "eb7525d478751e03a46663b3ae9ff961deb3c2ce1b24885f6fc010df5ba08b1d", "md5": "12afb97236214d8548f3aaaaa116cec5", "sha256": "6981eae48b3b33399c8757036c7f5d48a535b962a7c2310d19361edeef64ce29" }, "downloads": -1, "filename": "black-24.2.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "12afb97236214d8548f3aaaaa116cec5", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1575905, "upload_time": "2024-02-12T20:32:30", "upload_time_iso_8601": "2024-02-12T20:32:30.688051Z", "url": "https://files.pythonhosted.org/packages/eb/75/25d478751e03a46663b3ae9ff961deb3c2ce1b24885f6fc010df5ba08b1d/black-24.2.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "881259b6ed8eefa43a0b131a97db5820141b94f6722c627cb10346c5408cf7f3", "md5": "09f1b622ee88867685b898234c03f3e6", "sha256": "d533d5e3259720fdbc1b37444491b024003e012c5173f7d06825a77508085430" }, "downloads": -1, "filename": "black-24.2.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "09f1b622ee88867685b898234c03f3e6", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1423215, "upload_time": "2024-02-12T20:31:24", "upload_time_iso_8601": "2024-02-12T20:31:24.135830Z", "url": "https://files.pythonhosted.org/packages/88/12/59b6ed8eefa43a0b131a97db5820141b94f6722c627cb10346c5408cf7f3/black-24.2.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "46b870a3cab340301d480f601d483452e6e68da61202abad881f1a91250c2d27", "md5": "8e02fc76180cd38ac659b7cad147e682", "sha256": "61a0391772490ddfb8a693c067df1ef5227257e72b0e4108482b8d41b5aee13f" }, "downloads": -1, "filename": "black-24.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8e02fc76180cd38ac659b7cad147e682", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1730127, "upload_time": "2024-02-12T20:23:44", "upload_time_iso_8601": "2024-02-12T20:23:44.397779Z", "url": "https://files.pythonhosted.org/packages/46/b8/70a3cab340301d480f601d483452e6e68da61202abad881f1a91250c2d27/black-24.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "645f74be45f22ac104b4759084c792798f6b5695a5b4b2064e31222fea7fd3c7", "md5": "82a413b2b4be85715c431a4c52805555", "sha256": "992e451b04667116680cb88f63449267c13e1ad134f30087dec8527242e9862a" }, "downloads": -1, "filename": "black-24.2.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "82a413b2b4be85715c431a4c52805555", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1355109, "upload_time": "2024-02-12T20:25:09", "upload_time_iso_8601": "2024-02-12T20:25:09.905418Z", "url": "https://files.pythonhosted.org/packages/64/5f/74be45f22ac104b4759084c792798f6b5695a5b4b2064e31222fea7fd3c7/black-24.2.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6cde938fd8c271ee903212f3599d7ece0d4a930af667c51135d4e6d1fac50455", "md5": "0aa81a95fb81188a44dbd908ac13e1a3", "sha256": "163baf4ef40e6897a2a9b83890e59141cc8c2a98f2dda5080dc15c00ee1e62cd" }, "downloads": -1, "filename": "black-24.2.0-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0aa81a95fb81188a44dbd908ac13e1a3", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1556863, "upload_time": "2024-02-12T20:33:27", "upload_time_iso_8601": "2024-02-12T20:33:27.299500Z", "url": "https://files.pythonhosted.org/packages/6c/de/938fd8c271ee903212f3599d7ece0d4a930af667c51135d4e6d1fac50455/black-24.2.0-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "11154646143c19bc896a0cbc0c6663abf5751b465edefbc49491179454e2e2fd", "md5": "920f30d811d67c217f4aed26d0ae89da", "sha256": "e37c99f89929af50ffaf912454b3e3b47fd64109659026b678c091a4cd450fb2" }, "downloads": -1, "filename": "black-24.2.0-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "920f30d811d67c217f4aed26d0ae89da", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1403471, "upload_time": "2024-02-12T20:33:11", "upload_time_iso_8601": "2024-02-12T20:33:11.704291Z", "url": "https://files.pythonhosted.org/packages/11/15/4646143c19bc896a0cbc0c6663abf5751b465edefbc49491179454e2e2fd/black-24.2.0-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1a530b82f36f0a8beee5388f6bcc3a1591e094c87a275c64532ac6ce69fb491f", "md5": "e3b73bdee737ee7808a1732be9883dd9", "sha256": "4f9de21bafcba9683853f6c96c2d515e364aee631b178eaa5145fc1c61a3cc92" }, "downloads": -1, "filename": "black-24.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e3b73bdee737ee7808a1732be9883dd9", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1710660, "upload_time": "2024-02-12T20:24:29", "upload_time_iso_8601": "2024-02-12T20:24:29.273334Z", "url": "https://files.pythonhosted.org/packages/1a/53/0b82f36f0a8beee5388f6bcc3a1591e094c87a275c64532ac6ce69fb491f/black-24.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "72be58ae1a41e1d174a05d074a7a10524f1cdf37df13be3ac314098ab9435550", "md5": "66e596ec69fafdd8db47bab7560517cd", "sha256": "9db528bccb9e8e20c08e716b3b09c6bdd64da0dd129b11e160bf082d4642ac23" }, "downloads": -1, "filename": "black-24.2.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "66e596ec69fafdd8db47bab7560517cd", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1361881, "upload_time": "2024-02-12T20:25:27", "upload_time_iso_8601": "2024-02-12T20:25:27.484492Z", "url": "https://files.pythonhosted.org/packages/72/be/58ae1a41e1d174a05d074a7a10524f1cdf37df13be3ac314098ab9435550/black-24.2.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "431e67c87a1fb39592aa944f35cc26892946ebe0a10aa324b87f9380b8753862", "md5": "9c2f32a65aeeedc352bb7e6ea6871655", "sha256": "d84f29eb3ee44859052073b7636533ec995bd0f64e2fb43aeceefc70090e752b" }, "downloads": -1, "filename": "black-24.2.0-cp312-cp312-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9c2f32a65aeeedc352bb7e6ea6871655", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1585288, "upload_time": "2024-02-12T20:37:13", "upload_time_iso_8601": "2024-02-12T20:37:13.800714Z", "url": "https://files.pythonhosted.org/packages/43/1e/67c87a1fb39592aa944f35cc26892946ebe0a10aa324b87f9380b8753862/black-24.2.0-cp312-cp312-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5e626437212cf40e40b74dbc7e134700a21cb21a9ac7e46ade940b5d4826456f", "md5": "4a4a98db77427ae9418b3f5fd404f107", "sha256": "1e08fb9a15c914b81dd734ddd7fb10513016e5ce7e6704bdd5e1251ceee51ac9" }, "downloads": -1, "filename": "black-24.2.0-cp312-cp312-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "4a4a98db77427ae9418b3f5fd404f107", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1417360, "upload_time": "2024-02-12T20:34:56", "upload_time_iso_8601": "2024-02-12T20:34:56.410296Z", "url": "https://files.pythonhosted.org/packages/5e/62/6437212cf40e40b74dbc7e134700a21cb21a9ac7e46ade940b5d4826456f/black-24.2.0-cp312-cp312-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "368fde0d339ae683422a8e15d6f74b8022d4947009c347d8c2178c303c68cc4d", "md5": "3443ad6b8fac138610bbf8670d340721", "sha256": "810d445ae6069ce64030c78ff6127cd9cd178a9ac3361435708b907d8a04c693" }, "downloads": -1, "filename": "black-24.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3443ad6b8fac138610bbf8670d340721", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1739406, "upload_time": "2024-02-12T20:23:59", "upload_time_iso_8601": "2024-02-12T20:23:59.596481Z", "url": "https://files.pythonhosted.org/packages/36/8f/de0d339ae683422a8e15d6f74b8022d4947009c347d8c2178c303c68cc4d/black-24.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3e5889e5f5a1c4c5b66dc74eabe6337623d53b4d1c27fbbbe16defee53397f60", "md5": "dfcecb655533c93d969e86beda305d67", "sha256": "ba15742a13de85e9b8f3239c8f807723991fbfae24bad92d34a2b12e81904982" }, "downloads": -1, "filename": "black-24.2.0-cp312-cp312-win_amd64.whl", "has_sig": false, "md5_digest": "dfcecb655533c93d969e86beda305d67", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1373310, "upload_time": "2024-02-12T20:25:27", "upload_time_iso_8601": "2024-02-12T20:25:27.243743Z", "url": "https://files.pythonhosted.org/packages/3e/58/89e5f5a1c4c5b66dc74eabe6337623d53b4d1c27fbbbe16defee53397f60/black-24.2.0-cp312-cp312-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6455cbff981d3fdd3517bbc15eb0c32b042e4850fdb312988d24c561da2a19a6", "md5": "210ef4eb49414a7ff926bea59cfa3a81", "sha256": "7e53a8c630f71db01b28cd9602a1ada68c937cbf2c333e6ed041390d6968faf4" }, "downloads": -1, "filename": "black-24.2.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "210ef4eb49414a7ff926bea59cfa3a81", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1563304, "upload_time": "2024-02-12T20:36:19", "upload_time_iso_8601": "2024-02-12T20:36:19.130255Z", "url": "https://files.pythonhosted.org/packages/64/55/cbff981d3fdd3517bbc15eb0c32b042e4850fdb312988d24c561da2a19a6/black-24.2.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "72fb422391eeba9f27e78b989a8f5e8155ecd352e6a693b2b91e4310d8a9e3f9", "md5": "9d986fae3c95d61bf9fe39ab4a652410", "sha256": "93601c2deb321b4bad8f95df408e3fb3943d85012dddb6121336b8e24a0d1218" }, "downloads": -1, "filename": "black-24.2.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "9d986fae3c95d61bf9fe39ab4a652410", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1409406, "upload_time": "2024-02-12T20:35:04", "upload_time_iso_8601": "2024-02-12T20:35:04.733497Z", "url": "https://files.pythonhosted.org/packages/72/fb/422391eeba9f27e78b989a8f5e8155ecd352e6a693b2b91e4310d8a9e3f9/black-24.2.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c939a8ba1d0aedad01c494d440ea4fbfa11b6d0cc38a7e1829f0ad57e0a8c896", "md5": "09696f02ee957875242bc4fd736d35d6", "sha256": "a0057f800de6acc4407fe75bb147b0c2b5cbb7c3ed110d3e5999cd01184d53b0" }, "downloads": -1, "filename": "black-24.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "09696f02ee957875242bc4fd736d35d6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1714920, "upload_time": "2024-02-12T20:23:47", "upload_time_iso_8601": "2024-02-12T20:23:47.517123Z", "url": "https://files.pythonhosted.org/packages/c9/39/a8ba1d0aedad01c494d440ea4fbfa11b6d0cc38a7e1829f0ad57e0a8c896/black-24.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "32cc94735fbda3f3c6d49b0a5b52db253200f079c169b5ccd7a0a7d1ebe766d3", "md5": "fa3112d2823526ee70fc4118bb709a2b", "sha256": "faf2ee02e6612577ba0181f4347bcbcf591eb122f7841ae5ba233d12c39dcb4d" }, "downloads": -1, "filename": "black-24.2.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "fa3112d2823526ee70fc4118bb709a2b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1358736, "upload_time": "2024-02-12T20:25:12", "upload_time_iso_8601": "2024-02-12T20:25:12.362948Z", "url": "https://files.pythonhosted.org/packages/32/cc/94735fbda3f3c6d49b0a5b52db253200f079c169b5ccd7a0a7d1ebe766d3/black-24.2.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "30e1eb61bca6e1bb69529bc1295f17ca7a0ebadf56c480de37b2acb485dc04e2", "md5": "14046a483217ca7f3f3a1419fdf82b9f", "sha256": "057c3dc602eaa6fdc451069bd027a1b2635028b575a6c3acfd63193ced20d9c8" }, "downloads": -1, "filename": "black-24.2.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "14046a483217ca7f3f3a1419fdf82b9f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1575445, "upload_time": "2024-02-12T20:41:38", "upload_time_iso_8601": "2024-02-12T20:41:38.354122Z", "url": "https://files.pythonhosted.org/packages/30/e1/eb61bca6e1bb69529bc1295f17ca7a0ebadf56c480de37b2acb485dc04e2/black-24.2.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1f4441f6766ad9007b98478547ba5cceada721383ae7a81793c1180cb7ad8b30", "md5": "e3a6c80e3ab4e7d0082e804a01b94a30", "sha256": "08654d0797e65f2423f850fc8e16a0ce50925f9337fb4a4a176a7aa4026e63f8" }, "downloads": -1, "filename": "black-24.2.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "e3a6c80e3ab4e7d0082e804a01b94a30", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1422403, "upload_time": "2024-02-12T20:37:16", "upload_time_iso_8601": "2024-02-12T20:37:16.005468Z", "url": "https://files.pythonhosted.org/packages/1f/44/41f6766ad9007b98478547ba5cceada721383ae7a81793c1180cb7ad8b30/black-24.2.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d4760c4bbb734126cdbbd7e82f6df4b58e67e17742250b15f1bac6901f1e8d9b", "md5": "84df2d7f393c2440a5a10a5c762677fd", "sha256": "ca610d29415ee1a30a3f30fab7a8f4144e9d34c89a235d81292a1edb2b55f540" }, "downloads": -1, "filename": "black-24.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "84df2d7f393c2440a5a10a5c762677fd", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1728526, "upload_time": "2024-02-12T20:23:42", "upload_time_iso_8601": "2024-02-12T20:23:42.220780Z", "url": "https://files.pythonhosted.org/packages/d4/76/0c4bbb734126cdbbd7e82f6df4b58e67e17742250b15f1bac6901f1e8d9b/black-24.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5a727441c2d961140a2273a4047429b4cd30b663d76c8c375d66f7fd57ae10f5", "md5": "6edd4f88786b85538da2c483fd9b8a1c", "sha256": "4dd76e9468d5536abd40ffbc7a247f83b2324f0c050556d9c371c2b9a9a95e31" }, "downloads": -1, "filename": "black-24.2.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "6edd4f88786b85538da2c483fd9b8a1c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1354913, "upload_time": "2024-02-12T20:24:53", "upload_time_iso_8601": "2024-02-12T20:24:53.441132Z", "url": "https://files.pythonhosted.org/packages/5a/72/7441c2d961140a2273a4047429b4cd30b663d76c8c375d66f7fd57ae10f5/black-24.2.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4715b3770bc3328685a53bc9c041136240146c5cd866a1f020c2cf47f2ff9683", "md5": "d9e62b16708d314a87b7d8d2f877217b", "sha256": "e8a6ae970537e67830776488bca52000eaa37fa63b9988e8c487458d9cd5ace6" }, "downloads": -1, "filename": "black-24.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d9e62b16708d314a87b7d8d2f877217b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 200610, "upload_time": "2024-02-12T20:21:17", "upload_time_iso_8601": "2024-02-12T20:21:17.657044Z", "url": "https://files.pythonhosted.org/packages/47/15/b3770bc3328685a53bc9c041136240146c5cd866a1f020c2cf47f2ff9683/black-24.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2969f3ab49cdb938b3eecb048fa64f86bdadb1fac26e92c435d287181d543b0a", "md5": "539a8c9ca9990fd53e7111cfd3256a49", "sha256": "bce4f25c27c3435e4dace4815bcb2008b87e167e3bf4ee47ccdc5ce906eb4894" }, "downloads": -1, "filename": "black-24.2.0.tar.gz", "has_sig": false, "md5_digest": "539a8c9ca9990fd53e7111cfd3256a49", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 631598, "upload_time": "2024-02-12T20:21:26", "upload_time_iso_8601": "2024-02-12T20:21:26.969691Z", "url": "https://files.pythonhosted.org/packages/29/69/f3ab49cdb938b3eecb048fa64f86bdadb1fac26e92c435d287181d543b0a/black-24.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "24.3.0": [ { "comment_text": "", "digests": { "blake2b_256": "3b321a25d1b83147ca128797a627f429f9dc390eb066805c6aa319bea3ffffa5", "md5": "487d9c49259a37068aab9af0498b8b65", "sha256": "7d5e026f8da0322b5662fa7a8e752b3fa2dac1c1cbc213c3d7ff9bdd0ab12395" }, "downloads": -1, "filename": "black-24.3.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "487d9c49259a37068aab9af0498b8b65", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1587891, "upload_time": "2024-03-15T19:43:32", "upload_time_iso_8601": "2024-03-15T19:43:32.908421Z", "url": "https://files.pythonhosted.org/packages/3b/32/1a25d1b83147ca128797a627f429f9dc390eb066805c6aa319bea3ffffa5/black-24.3.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c4916cb204786acc693edc4bf1b9230ffdc3cbfaeb7cd04d3a12fb4b13882a53", "md5": "f4d990a2d6020cbb24409c377a00b159", "sha256": "9f50ea1132e2189d8dff0115ab75b65590a3e97de1e143795adb4ce317934995" }, "downloads": -1, "filename": "black-24.3.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "f4d990a2d6020cbb24409c377a00b159", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1434886, "upload_time": "2024-03-15T19:41:59", "upload_time_iso_8601": "2024-03-15T19:41:59.067632Z", "url": "https://files.pythonhosted.org/packages/c4/91/6cb204786acc693edc4bf1b9230ffdc3cbfaeb7cd04d3a12fb4b13882a53/black-24.3.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "efe453b5d07117381f7d5e946a54dd4c62617faad90713649619bbc683769dfe", "md5": "140a92bde198d9c4eff2c441dfd6f84d", "sha256": "e2af80566f43c85f5797365077fb64a393861a3730bd110971ab7a0c94e873e7" }, "downloads": -1, "filename": "black-24.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "140a92bde198d9c4eff2c441dfd6f84d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1747400, "upload_time": "2024-03-15T19:38:22", "upload_time_iso_8601": "2024-03-15T19:38:22.142677Z", "url": "https://files.pythonhosted.org/packages/ef/e4/53b5d07117381f7d5e946a54dd4c62617faad90713649619bbc683769dfe/black-24.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "139cf2e7532d11b05add5ab383a9f90be1a49954bf510803f98064b45b42f98e", "md5": "8044c62c9dc3c14f105845d063d9d1b7", "sha256": "4be5bb28e090456adfc1255e03967fb67ca846a03be7aadf6249096100ee32d0" }, "downloads": -1, "filename": "black-24.3.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "8044c62c9dc3c14f105845d063d9d1b7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1363816, "upload_time": "2024-03-15T19:39:43", "upload_time_iso_8601": "2024-03-15T19:39:43.559876Z", "url": "https://files.pythonhosted.org/packages/13/9c/f2e7532d11b05add5ab383a9f90be1a49954bf510803f98064b45b42f98e/black-24.3.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "68dfceea5828be9c4931cb5a75b7e8fb02971f57524da7a16dfec0d4d575327f", "md5": "6a8d5f43736122aa8efbad3262864ce5", "sha256": "4f1373a7808a8f135b774039f61d59e4be7eb56b2513d3d2f02a8b9365b8a8a9" }, "downloads": -1, "filename": "black-24.3.0-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6a8d5f43736122aa8efbad3262864ce5", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1571235, "upload_time": "2024-03-15T19:45:27", "upload_time_iso_8601": "2024-03-15T19:45:27.770147Z", "url": "https://files.pythonhosted.org/packages/68/df/ceea5828be9c4931cb5a75b7e8fb02971f57524da7a16dfec0d4d575327f/black-24.3.0-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "465f30398c5056cb72f883b32b6520ad00042a9d0454b693f70509867db03a80", "md5": "06d74baae505441cc4565adb8800f1bf", "sha256": "aadf7a02d947936ee418777e0247ea114f78aff0d0959461057cae8a04f20597" }, "downloads": -1, "filename": "black-24.3.0-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "06d74baae505441cc4565adb8800f1bf", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1414926, "upload_time": "2024-03-15T19:43:52", "upload_time_iso_8601": "2024-03-15T19:43:52.993182Z", "url": "https://files.pythonhosted.org/packages/46/5f/30398c5056cb72f883b32b6520ad00042a9d0454b693f70509867db03a80/black-24.3.0-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6b59498885b279e890f656ea4300a2671c964acb6d97994ea626479c2e5501b4", "md5": "3a2a9796f6983d8887ebbc6cc6ed8873", "sha256": "65c02e4ea2ae09d16314d30912a58ada9a5c4fdfedf9512d23326128ac08ac3d" }, "downloads": -1, "filename": "black-24.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3a2a9796f6983d8887ebbc6cc6ed8873", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1725920, "upload_time": "2024-03-15T19:38:13", "upload_time_iso_8601": "2024-03-15T19:38:13.052714Z", "url": "https://files.pythonhosted.org/packages/6b/59/498885b279e890f656ea4300a2671c964acb6d97994ea626479c2e5501b4/black-24.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8fb04bef40c808cc615187db983b75bacdca1c110a229d41ba9887549fac529c", "md5": "9c27c12056666612f95e06c0bb2328dd", "sha256": "bf21b7b230718a5f08bd32d5e4f1db7fc8788345c8aea1d155fc17852b3410f5" }, "downloads": -1, "filename": "black-24.3.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "9c27c12056666612f95e06c0bb2328dd", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1372608, "upload_time": "2024-03-15T19:39:34", "upload_time_iso_8601": "2024-03-15T19:39:34.973972Z", "url": "https://files.pythonhosted.org/packages/8f/b0/4bef40c808cc615187db983b75bacdca1c110a229d41ba9887549fac529c/black-24.3.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b6c61d174efa9ff02b22d0124c73fc5f4d4fb006d0d9a081aadc354d05754a13", "md5": "8e38438c7dafa374b4434e5f0b20db13", "sha256": "2818cf72dfd5d289e48f37ccfa08b460bf469e67fb7c4abb07edc2e9f16fb63f" }, "downloads": -1, "filename": "black-24.3.0-cp312-cp312-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8e38438c7dafa374b4434e5f0b20db13", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1600822, "upload_time": "2024-03-15T19:45:20", "upload_time_iso_8601": "2024-03-15T19:45:20.337395Z", "url": "https://files.pythonhosted.org/packages/b6/c6/1d174efa9ff02b22d0124c73fc5f4d4fb006d0d9a081aadc354d05754a13/black-24.3.0-cp312-cp312-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d9ed704731afffe460b8ff0672623b40fce9fe569f2ee617c15857e4d4440a3a", "md5": "2577a1b2d79078cd043a83c23dac57b4", "sha256": "4acf672def7eb1725f41f38bf6bf425c8237248bb0804faa3965c036f7672d11" }, "downloads": -1, "filename": "black-24.3.0-cp312-cp312-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "2577a1b2d79078cd043a83c23dac57b4", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1429987, "upload_time": "2024-03-15T19:45:00", "upload_time_iso_8601": "2024-03-15T19:45:00.637063Z", "url": "https://files.pythonhosted.org/packages/d9/ed/704731afffe460b8ff0672623b40fce9fe569f2ee617c15857e4d4440a3a/black-24.3.0-cp312-cp312-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a8058dd038e30caadab7120176d4bc109b7ca2f4457f12eef746b0560a583458", "md5": "ab818860134ca8a5cef16e7380abb401", "sha256": "c7ed6668cbbfcd231fa0dc1b137d3e40c04c7f786e626b405c62bcd5db5857e4" }, "downloads": -1, "filename": "black-24.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ab818860134ca8a5cef16e7380abb401", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1755319, "upload_time": "2024-03-15T19:38:24", "upload_time_iso_8601": "2024-03-15T19:38:24.009713Z", "url": "https://files.pythonhosted.org/packages/a8/05/8dd038e30caadab7120176d4bc109b7ca2f4457f12eef746b0560a583458/black-24.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "719de5fa1ff4ef1940be15a64883c0bb8d2fcf626efec996eab4ae5a8c691d2c", "md5": "6c87072d54ed623d82128c8c2108ef5d", "sha256": "56f52cfbd3dabe2798d76dbdd299faa046a901041faf2cf33288bc4e6dae57b5" }, "downloads": -1, "filename": "black-24.3.0-cp312-cp312-win_amd64.whl", "has_sig": false, "md5_digest": "6c87072d54ed623d82128c8c2108ef5d", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1385180, "upload_time": "2024-03-15T19:39:37", "upload_time_iso_8601": "2024-03-15T19:39:37.014010Z", "url": "https://files.pythonhosted.org/packages/71/9d/e5fa1ff4ef1940be15a64883c0bb8d2fcf626efec996eab4ae5a8c691d2c/black-24.3.0-cp312-cp312-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "37761f85c4349d6b3424c7672dbc6c4b39ab89372b575801ffdc23d34b023c6f", "md5": "1695395badf0b23310fd9f9b9a78194f", "sha256": "79dcf34b33e38ed1b17434693763301d7ccbd1c5860674a8f871bd15139e7837" }, "downloads": -1, "filename": "black-24.3.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1695395badf0b23310fd9f9b9a78194f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1579568, "upload_time": "2024-03-15T19:47:26", "upload_time_iso_8601": "2024-03-15T19:47:26.524944Z", "url": "https://files.pythonhosted.org/packages/37/76/1f85c4349d6b3424c7672dbc6c4b39ab89372b575801ffdc23d34b023c6f/black-24.3.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ba246d82cde63c1340ea55cb74fd697f62b94b6d6fa7069a1aa216475dfd2a30", "md5": "88f0dffb8cbc534a34f9ee97e45009d1", "sha256": "e19cb1c6365fd6dc38a6eae2dcb691d7d83935c10215aef8e6c38edee3f77abd" }, "downloads": -1, "filename": "black-24.3.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "88f0dffb8cbc534a34f9ee97e45009d1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1423188, "upload_time": "2024-03-15T19:46:18", "upload_time_iso_8601": "2024-03-15T19:46:18.942582Z", "url": "https://files.pythonhosted.org/packages/ba/24/6d82cde63c1340ea55cb74fd697f62b94b6d6fa7069a1aa216475dfd2a30/black-24.3.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "716148664319cee4f8e22633e075ff101ec6253195b056cb23e0c5f8a5086e87", "md5": "0984bb5873256978bfd7d57b2a1394ca", "sha256": "65b76c275e4c1c5ce6e9870911384bff5ca31ab63d19c76811cb1fb162678213" }, "downloads": -1, "filename": "black-24.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0984bb5873256978bfd7d57b2a1394ca", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1730623, "upload_time": "2024-03-15T19:38:15", "upload_time_iso_8601": "2024-03-15T19:38:15.895278Z", "url": "https://files.pythonhosted.org/packages/71/61/48664319cee4f8e22633e075ff101ec6253195b056cb23e0c5f8a5086e87/black-24.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "3b95ed26a160d7a13d6afb3e94448ec079fb4e37bbedeaf408b6b6dbf67d6cd2", "md5": "199a5e05cc01cee354b7aeb2174cc3b5", "sha256": "b5991d523eee14756f3c8d5df5231550ae8993e2286b8014e2fdea7156ed0959" }, "downloads": -1, "filename": "black-24.3.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "199a5e05cc01cee354b7aeb2174cc3b5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1370465, "upload_time": "2024-03-15T19:39:43", "upload_time_iso_8601": "2024-03-15T19:39:43.611662Z", "url": "https://files.pythonhosted.org/packages/3b/95/ed26a160d7a13d6afb3e94448ec079fb4e37bbedeaf408b6b6dbf67d6cd2/black-24.3.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "62f578881e9b1c340ccc02d5d4ebe61cfb9140452b3d11272a896b405033511b", "md5": "fbff6f28e42ae28d819c253cba36debb", "sha256": "c45f8dff244b3c431b36e3224b6be4a127c6aca780853574c00faf99258041eb" }, "downloads": -1, "filename": "black-24.3.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fbff6f28e42ae28d819c253cba36debb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1587504, "upload_time": "2024-03-15T19:48:33", "upload_time_iso_8601": "2024-03-15T19:48:33.932231Z", "url": "https://files.pythonhosted.org/packages/62/f5/78881e9b1c340ccc02d5d4ebe61cfb9140452b3d11272a896b405033511b/black-24.3.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "17cc67ba827fe23b39d55e8408937763b2ad21d904d63ca1c60b47d608ee7fb2", "md5": "7e6eced673bb880e98cd4a59726df351", "sha256": "6905238a754ceb7788a73f02b45637d820b2f5478b20fec82ea865e4f5d4d9f7" }, "downloads": -1, "filename": "black-24.3.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "7e6eced673bb880e98cd4a59726df351", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1434037, "upload_time": "2024-03-15T19:47:39", "upload_time_iso_8601": "2024-03-15T19:47:39.409470Z", "url": "https://files.pythonhosted.org/packages/17/cc/67ba827fe23b39d55e8408937763b2ad21d904d63ca1c60b47d608ee7fb2/black-24.3.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "faaa6a2493c7d3506e9b64edbd0782e21637c376da005eecc546904e47b5cdbf", "md5": "d5f570201d39326fd1c37c61b7f24ea1", "sha256": "d7de8d330763c66663661a1ffd432274a2f92f07feeddd89ffd085b5744f85e7" }, "downloads": -1, "filename": "black-24.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d5f570201d39326fd1c37c61b7f24ea1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1745481, "upload_time": "2024-03-15T19:38:16", "upload_time_iso_8601": "2024-03-15T19:38:16.099659Z", "url": "https://files.pythonhosted.org/packages/fa/aa/6a2493c7d3506e9b64edbd0782e21637c376da005eecc546904e47b5cdbf/black-24.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "18689e86e73b58819624af6797ffe68dd7d09ed90fa1f9eb8d4d675f8c5e6ab0", "md5": "6cab8a5af21fc892a6a6c45b5cc384b1", "sha256": "7bb041dca0d784697af4646d3b62ba4a6b028276ae878e53f6b4f74ddd6db99f" }, "downloads": -1, "filename": "black-24.3.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "6cab8a5af21fc892a6a6c45b5cc384b1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1363531, "upload_time": "2024-03-15T19:39:15", "upload_time_iso_8601": "2024-03-15T19:39:15.405068Z", "url": "https://files.pythonhosted.org/packages/18/68/9e86e73b58819624af6797ffe68dd7d09ed90fa1f9eb8d4d675f8c5e6ab0/black-24.3.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4dea31770a7e49f3eedfd8cd7b35e78b3a3aaad860400f8673994bc988318135", "md5": "736840b26930bd066a1f7c47b0908db9", "sha256": "41622020d7120e01d377f74249e677039d20e6344ff5851de8a10f11f513bf93" }, "downloads": -1, "filename": "black-24.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "736840b26930bd066a1f7c47b0908db9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 201493, "upload_time": "2024-03-15T19:35:41", "upload_time_iso_8601": "2024-03-15T19:35:41.572148Z", "url": "https://files.pythonhosted.org/packages/4d/ea/31770a7e49f3eedfd8cd7b35e78b3a3aaad860400f8673994bc988318135/black-24.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8f5fbac24a952668c7482cfdb4ebf91ba57a796c9da8829363a772040c1a3312", "md5": "1f2d0b0d76c513f2f12997350c3c4b94", "sha256": "a0c9c4a0771afc6919578cec71ce82a3e31e054904e7197deacbc9382671c41f" }, "downloads": -1, "filename": "black-24.3.0.tar.gz", "has_sig": false, "md5_digest": "1f2d0b0d76c513f2f12997350c3c4b94", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 634292, "upload_time": "2024-03-15T19:35:43", "upload_time_iso_8601": "2024-03-15T19:35:43.699467Z", "url": "https://files.pythonhosted.org/packages/8f/5f/bac24a952668c7482cfdb4ebf91ba57a796c9da8829363a772040c1a3312/black-24.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "24.4.0": [ { "comment_text": "", "digests": { "blake2b_256": "283e92c4b155420aa9722996ae4fb0b857cea856a701630014283b348c4e9504", "md5": "bdeb521f32e1fd490eaaec0da03f315a", "sha256": "6ad001a9ddd9b8dfd1b434d566be39b1cd502802c8d38bbb1ba612afda2ef436" }, "downloads": -1, "filename": "black-24.4.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bdeb521f32e1fd490eaaec0da03f315a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1588352, "upload_time": "2024-04-12T20:27:38", "upload_time_iso_8601": "2024-04-12T20:27:38.368746Z", "url": "https://files.pythonhosted.org/packages/28/3e/92c4b155420aa9722996ae4fb0b857cea856a701630014283b348c4e9504/black-24.4.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "91a0df4cae0a28c5b32bbef232b81ece9556f96c0d4aeaccdc202b9882d9698b", "md5": "6e71a29b3eeac467252aa8b5e4ed3f0e", "sha256": "e3a3a092b8b756c643fe45f4624dbd5a389f770a4ac294cf4d0fce6af86addaf" }, "downloads": -1, "filename": "black-24.4.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "6e71a29b3eeac467252aa8b5e4ed3f0e", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1435538, "upload_time": "2024-04-12T20:25:29", "upload_time_iso_8601": "2024-04-12T20:25:29.197550Z", "url": "https://files.pythonhosted.org/packages/91/a0/df4cae0a28c5b32bbef232b81ece9556f96c0d4aeaccdc202b9882d9698b/black-24.4.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "99f7bd2b367aa8833d532451d943ecc0deb7f846f872477bfa8deaa04e86373b", "md5": "bdb8a95208de810d75d7f00b45c550f7", "sha256": "dae79397f367ac8d7adb6c779813328f6d690943f64b32983e896bcccd18cbad" }, "downloads": -1, "filename": "black-24.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "bdb8a95208de810d75d7f00b45c550f7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1748027, "upload_time": "2024-04-12T20:17:04", "upload_time_iso_8601": "2024-04-12T20:17:04.380014Z", "url": "https://files.pythonhosted.org/packages/99/f7/bd2b367aa8833d532451d943ecc0deb7f846f872477bfa8deaa04e86373b/black-24.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d5419c3d8ec509cfb35b646c00cb912d769f9a92aa5e469401d90b80314d209f", "md5": "d203d5f3c46b680bf6fef877b9536700", "sha256": "71d998b73c957444fb7c52096c3843875f4b6b47a54972598741fe9a7f737fcb" }, "downloads": -1, "filename": "black-24.4.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "d203d5f3c46b680bf6fef877b9536700", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1364432, "upload_time": "2024-04-12T20:17:44", "upload_time_iso_8601": "2024-04-12T20:17:44.440960Z", "url": "https://files.pythonhosted.org/packages/d5/41/9c3d8ec509cfb35b646c00cb912d769f9a92aa5e469401d90b80314d209f/black-24.4.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "cb954a02a0fed559bf638001f6bf4e4c9d685111db959d221485e7e27c91e954", "md5": "d2709d39a0bc8c74a8de60040d36d56e", "sha256": "8e5537f456a22cf5cfcb2707803431d2feeb82ab3748ade280d6ccd0b40ed2e8" }, "downloads": -1, "filename": "black-24.4.0-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d2709d39a0bc8c74a8de60040d36d56e", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1571500, "upload_time": "2024-04-12T20:31:24", "upload_time_iso_8601": "2024-04-12T20:31:24.081390Z", "url": "https://files.pythonhosted.org/packages/cb/95/4a02a0fed559bf638001f6bf4e4c9d685111db959d221485e7e27c91e954/black-24.4.0-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "97a6f5857f79bba7eca05ebdc7e27e3447e3d2fc23898bb04f34bf3ff5dfb2db", "md5": "bc493c7c68598bd190c9749922838eca", "sha256": "64e60a7edd71fd542a10a9643bf369bfd2644de95ec71e86790b063aa02ff745" }, "downloads": -1, "filename": "black-24.4.0-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "bc493c7c68598bd190c9749922838eca", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1415219, "upload_time": "2024-04-12T20:27:57", "upload_time_iso_8601": "2024-04-12T20:27:57.868479Z", "url": "https://files.pythonhosted.org/packages/97/a6/f5857f79bba7eca05ebdc7e27e3447e3d2fc23898bb04f34bf3ff5dfb2db/black-24.4.0-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0aef37666bae20ba77d9a8420867077879fc0fd26e60e734ba5ee5ebc46f72fb", "md5": "435262769fda5542e4d930935890f53d", "sha256": "5cd5b4f76056cecce3e69b0d4c228326d2595f506797f40b9233424e2524c070" }, "downloads": -1, "filename": "black-24.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "435262769fda5542e4d930935890f53d", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1726518, "upload_time": "2024-04-12T20:17:14", "upload_time_iso_8601": "2024-04-12T20:17:14.229647Z", "url": "https://files.pythonhosted.org/packages/0a/ef/37666bae20ba77d9a8420867077879fc0fd26e60e734ba5ee5ebc46f72fb/black-24.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0f11fa05ac9429d971d0fc10da85f24dafc3fa5788733fbd0d1c186b7577cefd", "md5": "d39bfef3b1ac87c1656d2ac5b25e6366", "sha256": "64578cf99b6b46a6301bc28bdb89f9d6f9b592b1c5837818a177c98525dbe397" }, "downloads": -1, "filename": "black-24.4.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "d39bfef3b1ac87c1656d2ac5b25e6366", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1373368, "upload_time": "2024-04-12T20:17:54", "upload_time_iso_8601": "2024-04-12T20:17:54.222342Z", "url": "https://files.pythonhosted.org/packages/0f/11/fa05ac9429d971d0fc10da85f24dafc3fa5788733fbd0d1c186b7577cefd/black-24.4.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "42d38fa632ab059f2a79f8dd2e2910d245b045bca847373a9017c442e206df49", "md5": "8248fb3781026774d4ee2f96f1a263c5", "sha256": "f95cece33329dc4aa3b0e1a771c41075812e46cf3d6e3f1dfe3d91ff09826ed2" }, "downloads": -1, "filename": "black-24.4.0-cp312-cp312-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8248fb3781026774d4ee2f96f1a263c5", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1601660, "upload_time": "2024-04-12T20:32:29", "upload_time_iso_8601": "2024-04-12T20:32:29.357196Z", "url": "https://files.pythonhosted.org/packages/42/d3/8fa632ab059f2a79f8dd2e2910d245b045bca847373a9017c442e206df49/black-24.4.0-cp312-cp312-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "07fed7b94a17094f646491b27f43b0259a7916597e544fbcfd6bb638a823e29d", "md5": "ea62eb2704f3647131aeeb2c4c76893e", "sha256": "4396ca365a4310beef84d446ca5016f671b10f07abdba3e4e4304218d2c71d33" }, "downloads": -1, "filename": "black-24.4.0-cp312-cp312-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "ea62eb2704f3647131aeeb2c4c76893e", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1430347, "upload_time": "2024-04-12T20:52:15", "upload_time_iso_8601": "2024-04-12T20:52:15.899395Z", "url": "https://files.pythonhosted.org/packages/07/fe/d7b94a17094f646491b27f43b0259a7916597e544fbcfd6bb638a823e29d/black-24.4.0-cp312-cp312-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "57bcc7f2e1665805b79476c4f10b554d0f8659b5f19f49d86eb5ef6c876f15ba", "md5": "66b60f677a6416ff9ce69d39d9249f1d", "sha256": "44d99dfdf37a2a00a6f7a8dcbd19edf361d056ee51093b2445de7ca09adac965" }, "downloads": -1, "filename": "black-24.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "66b60f677a6416ff9ce69d39d9249f1d", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1755689, "upload_time": "2024-04-12T20:17:02", "upload_time_iso_8601": "2024-04-12T20:17:02.722427Z", "url": "https://files.pythonhosted.org/packages/57/bc/c7f2e1665805b79476c4f10b554d0f8659b5f19f49d86eb5ef6c876f15ba/black-24.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0fce28131fefb3bd6197ab2d1841e869e9b6abe90b54080ac29ccb504433263b", "md5": "8bf71a13bc285897d627b5d82cc888d3", "sha256": "21f9407063ec71c5580b8ad975653c66508d6a9f57bd008bb8691d273705adcd" }, "downloads": -1, "filename": "black-24.4.0-cp312-cp312-win_amd64.whl", "has_sig": false, "md5_digest": "8bf71a13bc285897d627b5d82cc888d3", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1385710, "upload_time": "2024-04-12T20:18:16", "upload_time_iso_8601": "2024-04-12T20:18:16.230463Z", "url": "https://files.pythonhosted.org/packages/0f/ce/28131fefb3bd6197ab2d1841e869e9b6abe90b54080ac29ccb504433263b/black-24.4.0-cp312-cp312-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "91de54c1f148c94df20a1490821a54d2fa975e63266e9209248cab29d47a93e9", "md5": "d96d1902f405e915d185d3ee338bf1c8", "sha256": "652e55bb722ca026299eb74e53880ee2315b181dfdd44dca98e43448620ddec1" }, "downloads": -1, "filename": "black-24.4.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d96d1902f405e915d185d3ee338bf1c8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1580299, "upload_time": "2024-04-12T20:33:46", "upload_time_iso_8601": "2024-04-12T20:33:46.265619Z", "url": "https://files.pythonhosted.org/packages/91/de/54c1f148c94df20a1490821a54d2fa975e63266e9209248cab29d47a93e9/black-24.4.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "04e9b7427a524c37fc8ba685a86559bd8699ffb26ffa5e1a3e5fead1065ce6b8", "md5": "c9943d16f197fa9c62015f3069016b7c", "sha256": "7f2966b9b2b3b7104fca9d75b2ee856fe3fdd7ed9e47c753a4bb1a675f2caab8" }, "downloads": -1, "filename": "black-24.4.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "c9943d16f197fa9c62015f3069016b7c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1423970, "upload_time": "2024-04-12T20:31:17", "upload_time_iso_8601": "2024-04-12T20:31:17.740341Z", "url": "https://files.pythonhosted.org/packages/04/e9/b7427a524c37fc8ba685a86559bd8699ffb26ffa5e1a3e5fead1065ce6b8/black-24.4.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1715f9b08b47393ac676f6e9718c0d6c9500e7d81229d1f14300806ff76d3022", "md5": "32b4bb0be61fe2536ae11928a43006d2", "sha256": "1bb9ca06e556a09f7f7177bc7cb604e5ed2d2df1e9119e4f7d2f1f7071c32e5d" }, "downloads": -1, "filename": "black-24.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "32b4bb0be61fe2536ae11928a43006d2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1731437, "upload_time": "2024-04-12T20:16:37", "upload_time_iso_8601": "2024-04-12T20:16:37.189027Z", "url": "https://files.pythonhosted.org/packages/17/15/f9b08b47393ac676f6e9718c0d6c9500e7d81229d1f14300806ff76d3022/black-24.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f5ab2a9a92327771b110fcc8b4fbdb54fc935e367ad1743fe933bff87c80d321", "md5": "8b59558198a1adcf8699b2d1d153dbb2", "sha256": "d4e71cdebdc8efeb6deaf5f2deb28325f8614d48426bed118ecc2dcaefb9ebf3" }, "downloads": -1, "filename": "black-24.4.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "8b59558198a1adcf8699b2d1d153dbb2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1370920, "upload_time": "2024-04-12T20:18:05", "upload_time_iso_8601": "2024-04-12T20:18:05.812912Z", "url": "https://files.pythonhosted.org/packages/f5/ab/2a9a92327771b110fcc8b4fbdb54fc935e367ad1743fe933bff87c80d321/black-24.4.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6cb06dd1ad928d28b52d8f931e94ad94f5ac302dca984cc5aefa616143d8ebdb", "md5": "2b17a9d3d38c88abfdbbb2d3f7d77b57", "sha256": "6644f97a7ef6f401a150cca551a1ff97e03c25d8519ee0bbc9b0058772882665" }, "downloads": -1, "filename": "black-24.4.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2b17a9d3d38c88abfdbbb2d3f7d77b57", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1588088, "upload_time": "2024-04-12T20:36:57", "upload_time_iso_8601": "2024-04-12T20:36:57.557562Z", "url": "https://files.pythonhosted.org/packages/6c/b0/6dd1ad928d28b52d8f931e94ad94f5ac302dca984cc5aefa616143d8ebdb/black-24.4.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "42c61fe1d87c212a91164c7ab35e98350167667da039ce5f92552c7c3e36d0df", "md5": "56194cb6f63895e83499b8fdb2371577", "sha256": "75a2d0b4f5eb81f7eebc31f788f9830a6ce10a68c91fbe0fade34fff7a2836e6" }, "downloads": -1, "filename": "black-24.4.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "56194cb6f63895e83499b8fdb2371577", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1434630, "upload_time": "2024-04-12T20:33:54", "upload_time_iso_8601": "2024-04-12T20:33:54.595451Z", "url": "https://files.pythonhosted.org/packages/42/c6/1fe1d87c212a91164c7ab35e98350167667da039ce5f92552c7c3e36d0df/black-24.4.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a3bbb1054dce88a6405329890a9006b355eb133845da8dcc62e6c88f9a55435b", "md5": "85597f10a9f4ef38235099391959bc02", "sha256": "eb949f56a63c5e134dfdca12091e98ffb5fd446293ebae123d10fc1abad00b9e" }, "downloads": -1, "filename": "black-24.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "85597f10a9f4ef38235099391959bc02", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1746261, "upload_time": "2024-04-12T20:17:17", "upload_time_iso_8601": "2024-04-12T20:17:17.945448Z", "url": "https://files.pythonhosted.org/packages/a3/bb/b1054dce88a6405329890a9006b355eb133845da8dcc62e6c88f9a55435b/black-24.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ef325e59d4aeec3db4964404939ae7d3d9e839df7c882cd50296f3cfcb4738c5", "md5": "a7cfce719ae5a81f0b0f8b2f67961d68", "sha256": "7852b05d02b5b9a8c893ab95863ef8986e4dda29af80bbbda94d7aee1abf8702" }, "downloads": -1, "filename": "black-24.4.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "a7cfce719ae5a81f0b0f8b2f67961d68", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1363972, "upload_time": "2024-04-12T20:18:04", "upload_time_iso_8601": "2024-04-12T20:18:04.577480Z", "url": "https://files.pythonhosted.org/packages/ef/32/5e59d4aeec3db4964404939ae7d3d9e839df7c882cd50296f3cfcb4738c5/black-24.4.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "6c4c3e898e42fb0e14f2639583b10702b69d145c42bdd97e017950479055dd4a", "md5": "8efacf4ee17a0a0a064721b861f86f32", "sha256": "74eb9b5420e26b42c00a3ff470dc0cd144b80a766128b1771d07643165e08d0e" }, "downloads": -1, "filename": "black-24.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8efacf4ee17a0a0a064721b861f86f32", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 201736, "upload_time": "2024-04-12T20:14:18", "upload_time_iso_8601": "2024-04-12T20:14:18.916710Z", "url": "https://files.pythonhosted.org/packages/6c/4c/3e898e42fb0e14f2639583b10702b69d145c42bdd97e017950479055dd4a/black-24.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e72958e93d7775544b6058f1df71dce4a8f5b039c2f8e381d3c695444c3d3d5f", "md5": "780ece057a841384e6be43430ff60e49", "sha256": "f07b69fda20578367eaebbd670ff8fc653ab181e1ff95d84497f9fa20e7d0641" }, "downloads": -1, "filename": "black-24.4.0.tar.gz", "has_sig": false, "md5_digest": "780ece057a841384e6be43430ff60e49", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 635902, "upload_time": "2024-04-12T20:14:24", "upload_time_iso_8601": "2024-04-12T20:14:24.856950Z", "url": "https://files.pythonhosted.org/packages/e7/29/58e93d7775544b6058f1df71dce4a8f5b039c2f8e381d3c695444c3d3d5f/black-24.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "24.4.1": [ { "comment_text": "", "digests": { "blake2b_256": "aa0655cf642396fb8d163f27d411addc5ae76727fdc8e39e057653e0543d42bd", "md5": "f98aa21d63ea65b3f142144a3e857f6a", "sha256": "1f7749fd0d97ff9415975a1432fac7df89bf13c3833cea079e55fa004d5f28c0" }, "downloads": -1, "filename": "black-24.4.1-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f98aa21d63ea65b3f142144a3e857f6a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1657442, "upload_time": "2024-04-24T15:28:39", "upload_time_iso_8601": "2024-04-24T15:28:39.201742Z", "url": "https://files.pythonhosted.org/packages/aa/06/55cf642396fb8d163f27d411addc5ae76727fdc8e39e057653e0543d42bd/black-24.4.1-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ab45d8fa4e04a0690d03f100e227967d765093ed0d281b6f65da3bdb1fd1476b", "md5": "7de7112860b88575194a39365d4025ff", "sha256": "859f3cc5d2051adadf8fd504a01e02b0fd866d7549fff54bc9202d524d2e8bd7" }, "downloads": -1, "filename": "black-24.4.1-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "7de7112860b88575194a39365d4025ff", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1490265, "upload_time": "2024-04-24T15:26:02", "upload_time_iso_8601": "2024-04-24T15:26:02.263547Z", "url": "https://files.pythonhosted.org/packages/ab/45/d8fa4e04a0690d03f100e227967d765093ed0d281b6f65da3bdb1fd1476b/black-24.4.1-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b612862d30e3e1f0df3ea162d5839195ca5b7bad594558c084b1d3a0e65eae32", "md5": "cf527290252d0af4d2ceed587ce7fb14", "sha256": "59271c9c29dfa97f7fda51f56c7809b3f78e72fd8d2205189bbd23022a0618b6" }, "downloads": -1, "filename": "black-24.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "cf527290252d0af4d2ceed587ce7fb14", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1814519, "upload_time": "2024-04-24T15:20:50", "upload_time_iso_8601": "2024-04-24T15:20:50.467940Z", "url": "https://files.pythonhosted.org/packages/b6/12/862d30e3e1f0df3ea162d5839195ca5b7bad594558c084b1d3a0e65eae32/black-24.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0ff181be5b67dc89cf94dce38ac8a26e187d1b895fb4b79995127dcfa6f87f57", "md5": "166d1fdb1e3df73a52412570efefbda1", "sha256": "5ed9c34cba223149b5a0144951a0f33d65507cf82c5449cb3c35fe4b515fea9a" }, "downloads": -1, "filename": "black-24.4.1-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "166d1fdb1e3df73a52412570efefbda1", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1404929, "upload_time": "2024-04-24T15:22:05", "upload_time_iso_8601": "2024-04-24T15:22:05.321053Z", "url": "https://files.pythonhosted.org/packages/0f/f1/81be5b67dc89cf94dce38ac8a26e187d1b895fb4b79995127dcfa6f87f57/black-24.4.1-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "811afc2e158c7ee09b5fc1300b479e0a30e67b29e17fae0a2e8da5afb643aa8c", "md5": "e6691575a3d81dcd68ed410e3eebe5e5", "sha256": "9dae3ae59d6f2dc93700fd5034a3115434686e66fd6e63d4dcaa48d19880f2b0" }, "downloads": -1, "filename": "black-24.4.1-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e6691575a3d81dcd68ed410e3eebe5e5", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1636824, "upload_time": "2024-04-24T15:29:49", "upload_time_iso_8601": "2024-04-24T15:29:49.596417Z", "url": "https://files.pythonhosted.org/packages/81/1a/fc2e158c7ee09b5fc1300b479e0a30e67b29e17fae0a2e8da5afb643aa8c/black-24.4.1-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b85ea0962e52499d42adc763fa16f0d44c8d74e42768f3495bfb6eab07e9d5ce", "md5": "b2a42bf596aa94d20d35d80856c786de", "sha256": "5f8698974a81af83283eb47644f2711b5261138d6d9180c863fce673cbe04b13" }, "downloads": -1, "filename": "black-24.4.1-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "b2a42bf596aa94d20d35d80856c786de", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1470097, "upload_time": "2024-04-24T15:28:29", "upload_time_iso_8601": "2024-04-24T15:28:29.691569Z", "url": "https://files.pythonhosted.org/packages/b8/5e/a0962e52499d42adc763fa16f0d44c8d74e42768f3495bfb6eab07e9d5ce/black-24.4.1-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "64e57d1211fb78bc69444ced146782c9fc97bfb6454efefbbbfabe6b703057f9", "md5": "b36511ff3c31b91f9b2f206d980b8211", "sha256": "0f404b6e77043b23d0321fb7772522b876b6de737ad3cb97d6b156638d68ce81" }, "downloads": -1, "filename": "black-24.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b36511ff3c31b91f9b2f206d980b8211", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1795739, "upload_time": "2024-04-24T15:20:49", "upload_time_iso_8601": "2024-04-24T15:20:49.396107Z", "url": "https://files.pythonhosted.org/packages/64/e5/7d1211fb78bc69444ced146782c9fc97bfb6454efefbbbfabe6b703057f9/black-24.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0a83e32a6d06420aed4c957db8ab29c1d8c65f781d988e812f430b9ba44b9d42", "md5": "102ec23023cbf93eb51e75e5f74f3214", "sha256": "c94e52b766477bdcd010b872ba0714d5458536dc9d0734eff6583ba7266ffd89" }, "downloads": -1, "filename": "black-24.4.1-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "102ec23023cbf93eb51e75e5f74f3214", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1414473, "upload_time": "2024-04-24T15:21:58", "upload_time_iso_8601": "2024-04-24T15:21:58.551280Z", "url": "https://files.pythonhosted.org/packages/0a/83/e32a6d06420aed4c957db8ab29c1d8c65f781d988e812f430b9ba44b9d42/black-24.4.1-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "700fa735c537d37e4d640f25624d46e1612cb96d0f8fb79bc82a7acb376ba4a6", "md5": "eda913b96fb41b6fcdf2b197b93d1911", "sha256": "962d9e953872cdb83b97bb737ad47244ce2938054dc946685a4cad98520dab38" }, "downloads": -1, "filename": "black-24.4.1-cp312-cp312-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "eda913b96fb41b6fcdf2b197b93d1911", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1668205, "upload_time": "2024-04-24T15:31:53", "upload_time_iso_8601": "2024-04-24T15:31:53.786929Z", "url": "https://files.pythonhosted.org/packages/70/0f/a735c537d37e4d640f25624d46e1612cb96d0f8fb79bc82a7acb376ba4a6/black-24.4.1-cp312-cp312-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "1bcff1c3925f35a63bede25a17ecfed4529bf12e14fdf592917b36c17caf0b30", "md5": "116afc7fab3454e4d148852c0a611a1d", "sha256": "b1d8e3b2486b7dd522b1ab2ba1ec4907f0aa8f5e10a33c4271fb331d1d10b70c" }, "downloads": -1, "filename": "black-24.4.1-cp312-cp312-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "116afc7fab3454e4d148852c0a611a1d", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1486136, "upload_time": "2024-04-24T15:29:04", "upload_time_iso_8601": "2024-04-24T15:29:04.005928Z", "url": "https://files.pythonhosted.org/packages/1b/cf/f1c3925f35a63bede25a17ecfed4529bf12e14fdf592917b36c17caf0b30/black-24.4.1-cp312-cp312-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "8910f362bebb2485171d4fec9cda01d637c51fe2133ba16c353ff2f8af6a3263", "md5": "439fedaed326b7069e69daa28e250d65", "sha256": "ed77e214b785148f57e43ca425b6e0850165144aa727d66ac604e56a70bb7825" }, "downloads": -1, "filename": "black-24.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "439fedaed326b7069e69daa28e250d65", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1823176, "upload_time": "2024-04-24T15:20:48", "upload_time_iso_8601": "2024-04-24T15:20:48.401117Z", "url": "https://files.pythonhosted.org/packages/89/10/f362bebb2485171d4fec9cda01d637c51fe2133ba16c353ff2f8af6a3263/black-24.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f61e99988e31d32ed0eaa13d5171a75bd6139c98fa9ddcfef3c234f6e7c51e78", "md5": "b0005883fdc1b844ad5c9920fc6b14d0", "sha256": "4ef4764437d7eba8386689cd06e1fb5341ee0ae2e9e22582b21178782de7ed94" }, "downloads": -1, "filename": "black-24.4.1-cp312-cp312-win_amd64.whl", "has_sig": false, "md5_digest": "b0005883fdc1b844ad5c9920fc6b14d0", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1424790, "upload_time": "2024-04-24T15:21:59", "upload_time_iso_8601": "2024-04-24T15:21:59.172274Z", "url": "https://files.pythonhosted.org/packages/f6/1e/99988e31d32ed0eaa13d5171a75bd6139c98fa9ddcfef3c234f6e7c51e78/black-24.4.1-cp312-cp312-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e235e9f60893ee84329863425a191249f458f0d96aa82952d12db45a9017b27e", "md5": "ff90f88ca91fca5cd5ddb7bab2607ffa", "sha256": "92b183f8eef5baf7b20a513abcf982ad616f544f593f6688bb2850d2982911f1" }, "downloads": -1, "filename": "black-24.4.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ff90f88ca91fca5cd5ddb7bab2607ffa", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1642649, "upload_time": "2024-04-24T15:36:43", "upload_time_iso_8601": "2024-04-24T15:36:43.075619Z", "url": "https://files.pythonhosted.org/packages/e2/35/e9f60893ee84329863425a191249f458f0d96aa82952d12db45a9017b27e/black-24.4.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "99d8edcffdfe5a6018e8c3711265fc5e6e62edecd6bb4d0e615b2800e6425062", "md5": "329027cfdb2f8745b3154c920fa3925a", "sha256": "945abd7b3572add997757c94295bb3e73c6ffaf3366b1f26cb2356a4bffd1dc3" }, "downloads": -1, "filename": "black-24.4.1-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "329027cfdb2f8745b3154c920fa3925a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1477668, "upload_time": "2024-04-24T15:31:04", "upload_time_iso_8601": "2024-04-24T15:31:04.315001Z", "url": "https://files.pythonhosted.org/packages/99/d8/edcffdfe5a6018e8c3711265fc5e6e62edecd6bb4d0e615b2800e6425062/black-24.4.1-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b0472ce1f876704cae36ab935cb2cc33d65faad634b577fc9c4b196687632ee4", "md5": "df5d8bb3910ae3d5df49164fa480c08a", "sha256": "db5154b9e5b478031371d8bc41ff37b33855fa223a6cfba456c9b73fb96f77d4" }, "downloads": -1, "filename": "black-24.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "df5d8bb3910ae3d5df49164fa480c08a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1800100, "upload_time": "2024-04-24T15:20:39", "upload_time_iso_8601": "2024-04-24T15:20:39.349719Z", "url": "https://files.pythonhosted.org/packages/b0/47/2ce1f876704cae36ab935cb2cc33d65faad634b577fc9c4b196687632ee4/black-24.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b17cb34fefef40ddfd54ccc5f0948a220735ea30fd535689b17262ef427ca25f", "md5": "ccfebdd18d473127dee4af1f5ae2a259", "sha256": "afc84c33c1a9aaf3d73140cee776b4ddf73ff429ffe6b7c56dc1c9c10725856d" }, "downloads": -1, "filename": "black-24.4.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ccfebdd18d473127dee4af1f5ae2a259", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1414615, "upload_time": "2024-04-24T15:21:54", "upload_time_iso_8601": "2024-04-24T15:21:54.788321Z", "url": "https://files.pythonhosted.org/packages/b1/7c/b34fefef40ddfd54ccc5f0948a220735ea30fd535689b17262ef427ca25f/black-24.4.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "b93fc9a40ed9ea18968a15c4857d4d0b709b58833ccef434c9d6255ff56c226a", "md5": "8c00603e29a260f929643e74f796079e", "sha256": "0889f4eb8b3bdf8b189e41a71cf0dbb8141a98346cd1a2695dea5995d416e940" }, "downloads": -1, "filename": "black-24.4.1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8c00603e29a260f929643e74f796079e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1656850, "upload_time": "2024-04-24T15:36:15", "upload_time_iso_8601": "2024-04-24T15:36:15.698869Z", "url": "https://files.pythonhosted.org/packages/b9/3f/c9a40ed9ea18968a15c4857d4d0b709b58833ccef434c9d6255ff56c226a/black-24.4.1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ec0e03e7152d952cff75e57d8b3b307a75ab43663cb2e120c7e820a512eb2c80", "md5": "f1bf2d4cf3d124305d181920dbc1bf63", "sha256": "5bb0143f175db45a55227eefd63e90849d96c266330ba31719e9667d0d5ec3b9" }, "downloads": -1, "filename": "black-24.4.1-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "f1bf2d4cf3d124305d181920dbc1bf63", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1489855, "upload_time": "2024-04-24T15:31:23", "upload_time_iso_8601": "2024-04-24T15:31:23.119977Z", "url": "https://files.pythonhosted.org/packages/ec/0e/03e7152d952cff75e57d8b3b307a75ab43663cb2e120c7e820a512eb2c80/black-24.4.1-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a749b07ec542e77b022752b97a89000ca3c49de193fcb93b7e8a4dc66bf9122d", "md5": "45b63c77b275034b343abbcbad666ac3", "sha256": "713a04a78e78f28ef7e8df7a16fe075670ea164860fcef3885e4f3dffc0184b3" }, "downloads": -1, "filename": "black-24.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "45b63c77b275034b343abbcbad666ac3", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1812688, "upload_time": "2024-04-24T15:20:49", "upload_time_iso_8601": "2024-04-24T15:20:49.293804Z", "url": "https://files.pythonhosted.org/packages/a7/49/b07ec542e77b022752b97a89000ca3c49de193fcb93b7e8a4dc66bf9122d/black-24.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "172dd92247d7fc3f9a9580b210e3d27539da8b8da4689e7cbc98655c183d9237", "md5": "451a137b4cef36be46438184cf8bf489", "sha256": "171959bc879637a8cdbc53dc3fddae2a83e151937a28cf605fd175ce61e0e94a" }, "downloads": -1, "filename": "black-24.4.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "451a137b4cef36be46438184cf8bf489", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1404524, "upload_time": "2024-04-24T15:21:47", "upload_time_iso_8601": "2024-04-24T15:21:47.220752Z", "url": "https://files.pythonhosted.org/packages/17/2d/d92247d7fc3f9a9580b210e3d27539da8b8da4689e7cbc98655c183d9237/black-24.4.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "2e9f1756108178a57fd3202ee1d2d3552dc1fe6f0097cc77faf34f053c77bf71", "md5": "e99638b3fa628c11bcafc1429a1fc187", "sha256": "ecbab810604fe02c70b3a08afd39beb599f7cc9afd13e81f5336014133b4fe35" }, "downloads": -1, "filename": "black-24.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e99638b3fa628c11bcafc1429a1fc187", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 205086, "upload_time": "2024-04-24T15:17:55", "upload_time_iso_8601": "2024-04-24T15:17:55.798636Z", "url": "https://files.pythonhosted.org/packages/2e/9f/1756108178a57fd3202ee1d2d3552dc1fe6f0097cc77faf34f053c77bf71/black-24.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "57134075f1b5b394e4ccd7fccf6646957e6b454260a0a89b2093fa1b60dc6de6", "md5": "6001ade24d8ef3fa715f1acda53c1321", "sha256": "5241612dc8cad5b6fd47432b8bd04db80e07cfbc53bb69e9ae18985063bcb8dd" }, "downloads": -1, "filename": "black-24.4.1.tar.gz", "has_sig": false, "md5_digest": "6001ade24d8ef3fa715f1acda53c1321", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 641335, "upload_time": "2024-04-24T15:17:58", "upload_time_iso_8601": "2024-04-24T15:17:58.621076Z", "url": "https://files.pythonhosted.org/packages/57/13/4075f1b5b394e4ccd7fccf6646957e6b454260a0a89b2093fa1b60dc6de6/black-24.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "24.4.2": [ { "comment_text": "", "digests": { "blake2b_256": "40f63adc48c210527a7b651aaed43824a9b8bd04b3fb361a5227bad046e1c876", "md5": "bf34dde6de986f8ec2da464a14addf95", "sha256": "dd1b5a14e417189db4c7b64a6540f31730713d173f0b63e55fabd52d61d8fdce" }, "downloads": -1, "filename": "black-24.4.2-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bf34dde6de986f8ec2da464a14addf95", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1631487, "upload_time": "2024-04-26T00:40:28", "upload_time_iso_8601": "2024-04-26T00:40:28.969005Z", "url": "https://files.pythonhosted.org/packages/40/f6/3adc48c210527a7b651aaed43824a9b8bd04b3fb361a5227bad046e1c876/black-24.4.2-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a22570aa1bec12c841a03e333e312daa0cf2fee50ea6336ac4851c93c0e2b411", "md5": "991804c127cc55ef6ddd61ff3f8764a9", "sha256": "8e537d281831ad0e71007dcdcbe50a71470b978c453fa41ce77186bbe0ed6021" }, "downloads": -1, "filename": "black-24.4.2-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "991804c127cc55ef6ddd61ff3f8764a9", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1456317, "upload_time": "2024-04-26T00:39:10", "upload_time_iso_8601": "2024-04-26T00:39:10.333455Z", "url": "https://files.pythonhosted.org/packages/a2/25/70aa1bec12c841a03e333e312daa0cf2fee50ea6336ac4851c93c0e2b411/black-24.4.2-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e07d7f8df0fdbbbefc4362d3eca6b69b7a8a4249a8a88dabc00a207d31fddcd7", "md5": "62d8c1ce6c3093e2e6f6e7cb2f33e36f", "sha256": "eaea3008c281f1038edb473c1aa8ed8143a5535ff18f978a318f10302b254063" }, "downloads": -1, "filename": "black-24.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "62d8c1ce6c3093e2e6f6e7cb2f33e36f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1822765, "upload_time": "2024-04-26T00:34:56", "upload_time_iso_8601": "2024-04-26T00:34:56.436326Z", "url": "https://files.pythonhosted.org/packages/e0/7d/7f8df0fdbbbefc4362d3eca6b69b7a8a4249a8a88dabc00a207d31fddcd7/black-24.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "5c211ee97841c469c1551133cbe47448cdba9628c7d9431f74f114f02e3b233c", "md5": "f0c2ebee182f3a98e8a278352827ffb7", "sha256": "7768a0dbf16a39aa5e9a3ded568bb545c8c2727396d063bbaf847df05b08cd96" }, "downloads": -1, "filename": "black-24.4.2-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "f0c2ebee182f3a98e8a278352827ffb7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1409336, "upload_time": "2024-04-26T00:35:30", "upload_time_iso_8601": "2024-04-26T00:35:30.392724Z", "url": "https://files.pythonhosted.org/packages/5c/21/1ee97841c469c1551133cbe47448cdba9628c7d9431f74f114f02e3b233c/black-24.4.2-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "9bf7591d601c3046ceb65b97291dfe87fa25124cffac3d97aaaba89d0f0d7bdf", "md5": "c43106f359d28bcdd3a419a9774e1e90", "sha256": "257d724c2c9b1660f353b36c802ccece186a30accc7742c176d29c146df6e474" }, "downloads": -1, "filename": "black-24.4.2-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c43106f359d28bcdd3a419a9774e1e90", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1615013, "upload_time": "2024-04-26T00:39:49", "upload_time_iso_8601": "2024-04-26T00:39:49.415321Z", "url": "https://files.pythonhosted.org/packages/9b/f7/591d601c3046ceb65b97291dfe87fa25124cffac3d97aaaba89d0f0d7bdf/black-24.4.2-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c9175e0036b265bbf6bc44970d93d48febcbc03701b671db3c9603fd43ebc616", "md5": "dd1b6ab5168fd4940f326b1ba096dd96", "sha256": "bdde6f877a18f24844e381d45e9947a49e97933573ac9d4345399be37621e26c" }, "downloads": -1, "filename": "black-24.4.2-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "dd1b6ab5168fd4940f326b1ba096dd96", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1436163, "upload_time": "2024-04-26T00:40:20", "upload_time_iso_8601": "2024-04-26T00:40:20.267867Z", "url": "https://files.pythonhosted.org/packages/c9/17/5e0036b265bbf6bc44970d93d48febcbc03701b671db3c9603fd43ebc616/black-24.4.2-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "c54834176b522e8cff4620a5d96c2e323ff2413f574870eb25efa8025885e028", "md5": "25bb417985d381addd7332e44371aa8a", "sha256": "e151054aa00bad1f4e1f04919542885f89f5f7d086b8a59e5000e6c616896ffb" }, "downloads": -1, "filename": "black-24.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "25bb417985d381addd7332e44371aa8a", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1803382, "upload_time": "2024-04-26T00:34:38", "upload_time_iso_8601": "2024-04-26T00:34:38.665827Z", "url": "https://files.pythonhosted.org/packages/c5/48/34176b522e8cff4620a5d96c2e323ff2413f574870eb25efa8025885e028/black-24.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "74cee8eec1a77edbfa982bee3b5460dcdd4fe0e4e3165fc15d8ec44d04da7776", "md5": "bc0348d6a49699ac501861b72e675e82", "sha256": "7e122b1c4fb252fd85df3ca93578732b4749d9be076593076ef4d07a0233c3e1" }, "downloads": -1, "filename": "black-24.4.2-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "bc0348d6a49699ac501861b72e675e82", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1417802, "upload_time": "2024-04-26T00:35:08", "upload_time_iso_8601": "2024-04-26T00:35:08.804539Z", "url": "https://files.pythonhosted.org/packages/74/ce/e8eec1a77edbfa982bee3b5460dcdd4fe0e4e3165fc15d8ec44d04da7776/black-24.4.2-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "f4753a29de3bda4006cc280d833b5d961cf7df3810a21f49e7a63a7e551fb351", "md5": "23c632e62b4df18095ca530dd4652d8c", "sha256": "accf49e151c8ed2c0cdc528691838afd217c50412534e876a19270fea1e28e2d" }, "downloads": -1, "filename": "black-24.4.2-cp312-cp312-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "23c632e62b4df18095ca530dd4652d8c", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1645176, "upload_time": "2024-04-26T00:42:35", "upload_time_iso_8601": "2024-04-26T00:42:35.606675Z", "url": "https://files.pythonhosted.org/packages/f4/75/3a29de3bda4006cc280d833b5d961cf7df3810a21f49e7a63a7e551fb351/black-24.4.2-cp312-cp312-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "beb89c152301774fa62a265b035a8ede4d6280827904ea1af8c3be10a28d3187", "md5": "f33d193b2d17e50f4bd29942d0879466", "sha256": "88c57dc656038f1ab9f92b3eb5335ee9b021412feaa46330d5eba4e51fe49b04" }, "downloads": -1, "filename": "black-24.4.2-cp312-cp312-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "f33d193b2d17e50f4bd29942d0879466", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1446227, "upload_time": "2024-04-26T00:40:35", "upload_time_iso_8601": "2024-04-26T00:40:35.195173Z", "url": "https://files.pythonhosted.org/packages/be/b8/9c152301774fa62a265b035a8ede4d6280827904ea1af8c3be10a28d3187/black-24.4.2-cp312-cp312-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "256deb15a1b155f755f43766cc473618c6e1de6555d6a1764965643f486dcf01", "md5": "d180ba63cddd9586295576d108e41e96", "sha256": "be8bef99eb46d5021bf053114442914baeb3649a89dc5f3a555c88737e5e98fc" }, "downloads": -1, "filename": "black-24.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d180ba63cddd9586295576d108e41e96", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1832011, "upload_time": "2024-04-26T00:34:37", "upload_time_iso_8601": "2024-04-26T00:34:37.825402Z", "url": "https://files.pythonhosted.org/packages/25/6d/eb15a1b155f755f43766cc473618c6e1de6555d6a1764965643f486dcf01/black-24.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "4324942b22571b0171be7c6f701cdc3e3b7221f5b522ef02cf82503a547a657b", "md5": "74e53d612a969f760ca1a1a8cf5e3595", "sha256": "415e686e87dbbe6f4cd5ef0fbf764af7b89f9057b97c908742b6008cc554b9c0" }, "downloads": -1, "filename": "black-24.4.2-cp312-cp312-win_amd64.whl", "has_sig": false, "md5_digest": "74e53d612a969f760ca1a1a8cf5e3595", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1428800, "upload_time": "2024-04-26T00:35:55", "upload_time_iso_8601": "2024-04-26T00:35:55.838625Z", "url": "https://files.pythonhosted.org/packages/43/24/942b22571b0171be7c6f701cdc3e3b7221f5b522ef02cf82503a547a657b/black-24.4.2-cp312-cp312-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "07081d37f90156e39c2cc9d27942a6585dcad571177f57d0de1d90836e87b16e", "md5": "7a2efb8d6330fae74b6ad53ce070f262", "sha256": "bf10f7310db693bb62692609b397e8d67257c55f949abde4c67f9cc574492cc7" }, "downloads": -1, "filename": "black-24.4.2-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7a2efb8d6330fae74b6ad53ce070f262", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1617432, "upload_time": "2024-04-26T00:45:24", "upload_time_iso_8601": "2024-04-26T00:45:24.603613Z", "url": "https://files.pythonhosted.org/packages/07/08/1d37f90156e39c2cc9d27942a6585dcad571177f57d0de1d90836e87b16e/black-24.4.2-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "432c44c8e8be21339ed9df023255596b749ddc75a9a6858794fc51304defd0e8", "md5": "4682a82f0c1f4361770c199999456be9", "sha256": "98e123f1d5cfd42f886624d84464f7756f60ff6eab89ae845210631714f6db94" }, "downloads": -1, "filename": "black-24.4.2-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "4682a82f0c1f4361770c199999456be9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1440463, "upload_time": "2024-04-26T00:44:18", "upload_time_iso_8601": "2024-04-26T00:44:18.628908Z", "url": "https://files.pythonhosted.org/packages/43/2c/44c8e8be21339ed9df023255596b749ddc75a9a6858794fc51304defd0e8/black-24.4.2-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e06feae724bfcbcef64fbda4f2b2d6c1670b7d4b29bd31c4e463e1d951207e26", "md5": "50cedc93c0dfbec73d941ad6bfd2f83b", "sha256": "48a85f2cb5e6799a9ef05347b476cce6c182d6c71ee36925a6c194d074336ef8" }, "downloads": -1, "filename": "black-24.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "50cedc93c0dfbec73d941ad6bfd2f83b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1807196, "upload_time": "2024-04-26T00:34:38", "upload_time_iso_8601": "2024-04-26T00:34:38.130116Z", "url": "https://files.pythonhosted.org/packages/e0/6f/eae724bfcbcef64fbda4f2b2d6c1670b7d4b29bd31c4e463e1d951207e26/black-24.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d01466c3f0a211c97cb315ee0f56d72ffa99fae333a2cebd28a49a5af77397c3", "md5": "765faa199defe10c3744c552c9768b76", "sha256": "b1530ae42e9d6d5b670a34db49a94115a64596bc77710b1d05e9801e62ca0a7c" }, "downloads": -1, "filename": "black-24.4.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "765faa199defe10c3744c552c9768b76", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1417638, "upload_time": "2024-04-26T00:35:31", "upload_time_iso_8601": "2024-04-26T00:35:31.291849Z", "url": "https://files.pythonhosted.org/packages/d0/14/66c3f0a211c97cb315ee0f56d72ffa99fae333a2cebd28a49a5af77397c3/black-24.4.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "e91e10035a567cb756a74d63330389c19e9b60acc958f7cb243cd01a313fae28", "md5": "67d11441c9e9c04d9039ae309ccf4457", "sha256": "37aae07b029fa0174d39daf02748b379399b909652a806e5708199bd93899da1" }, "downloads": -1, "filename": "black-24.4.2-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "67d11441c9e9c04d9039ae309ccf4457", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1630974, "upload_time": "2024-04-26T00:43:01", "upload_time_iso_8601": "2024-04-26T00:43:01.788635Z", "url": "https://files.pythonhosted.org/packages/e9/1e/10035a567cb756a74d63330389c19e9b60acc958f7cb243cd01a313fae28/black-24.4.2-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "218856320cb37945dcdc903a3024d09f2b102c69bdd586c6b73ea138e679615a", "md5": "757465a9b919d2b10f85bdae58bb194a", "sha256": "da33a1a5e49c4122ccdfd56cd021ff1ebc4a1ec4e2d01594fef9b6f267a9e741" }, "downloads": -1, "filename": "black-24.4.2-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "757465a9b919d2b10f85bdae58bb194a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1455391, "upload_time": "2024-04-26T00:42:01", "upload_time_iso_8601": "2024-04-26T00:42:01.383540Z", "url": "https://files.pythonhosted.org/packages/21/88/56320cb37945dcdc903a3024d09f2b102c69bdd586c6b73ea138e679615a/black-24.4.2-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d0f99d1bda779af428e40b2e561b6509f3eb56f3190e3865663e1234e2a657c7", "md5": "0ac234d72599f12890e83b6ce1df2f22", "sha256": "ef703f83fc32e131e9bcc0a5094cfe85599e7109f896fe8bc96cc402f3eb4b6e" }, "downloads": -1, "filename": "black-24.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0ac234d72599f12890e83b6ce1df2f22", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1820933, "upload_time": "2024-04-26T00:34:55", "upload_time_iso_8601": "2024-04-26T00:34:55.649362Z", "url": "https://files.pythonhosted.org/packages/d0/f9/9d1bda779af428e40b2e561b6509f3eb56f3190e3865663e1234e2a657c7/black-24.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "57b205a06a65c17c5b092fd5a22de912dd0bfb5bb20646fb66821607263b6096", "md5": "b08c65b64386fa3c650ad713dd7ec94c", "sha256": "b9176b9832e84308818a99a561e90aa479e73c523b3f77afd07913380ae2eab7" }, "downloads": -1, "filename": "black-24.4.2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "b08c65b64386fa3c650ad713dd7ec94c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1408503, "upload_time": "2024-04-26T00:37:02", "upload_time_iso_8601": "2024-04-26T00:37:02.792854Z", "url": "https://files.pythonhosted.org/packages/57/b2/05a06a65c17c5b092fd5a22de912dd0bfb5bb20646fb66821607263b6096/black-24.4.2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "0f89294c9a6b6c75a08da55e9d05321d0707e9418735e3062b12ef0f54c33474", "md5": "671abe813699f2d19dbdc0a8ad3b1bcd", "sha256": "d36ed1124bb81b32f8614555b34cc4259c3fbc7eec17870e8ff8ded335b58d8c" }, "downloads": -1, "filename": "black-24.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "671abe813699f2d19dbdc0a8ad3b1bcd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 205925, "upload_time": "2024-04-26T00:32:12", "upload_time_iso_8601": "2024-04-26T00:32:12.495323Z", "url": "https://files.pythonhosted.org/packages/0f/89/294c9a6b6c75a08da55e9d05321d0707e9418735e3062b12ef0f54c33474/black-24.4.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a247c9997eb470a7f48f7aaddd3d9a828244a2e4199569e38128715c48059ac1", "md5": "c2000a85264a684242993139390a4ecd", "sha256": "c872b53057f000085da66a19c55d68f6f8ddcac2642392ad3a355878406fbd4d" }, "downloads": -1, "filename": "black-24.4.2.tar.gz", "has_sig": false, "md5_digest": "c2000a85264a684242993139390a4ecd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 642299, "upload_time": "2024-04-26T00:32:15", "upload_time_iso_8601": "2024-04-26T00:32:15.305006Z", "url": "https://files.pythonhosted.org/packages/a2/47/c9997eb470a7f48f7aaddd3d9a828244a2e4199569e38128715c48059ac1/black-24.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "24.8.0": [ { "comment_text": "", "digests": { "blake2b_256": "476e74e29edf1fba3887ed7066930a87f698ffdcd52c5dbc263eabb06061672d", "md5": "4bff8318e5aa32f165c6c642d3d5413f", "sha256": "09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6" }, "downloads": -1, "filename": "black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4bff8318e5aa32f165c6c642d3d5413f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1632092, "upload_time": "2024-08-02T17:47:26", "upload_time_iso_8601": "2024-08-02T17:47:26.911765Z", "url": "https://files.pythonhosted.org/packages/47/6e/74e29edf1fba3887ed7066930a87f698ffdcd52c5dbc263eabb06061672d/black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ab49575cb6c3faee690b05c9d11ee2e8dba8fbd6d6c134496e644c1feb1b47da", "md5": "ed6c5f52e691417f4ee47ef95d2c8d7a", "sha256": "81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb" }, "downloads": -1, "filename": "black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "ed6c5f52e691417f4ee47ef95d2c8d7a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1457529, "upload_time": "2024-08-02T17:47:29", "upload_time_iso_8601": "2024-08-02T17:47:29.109540Z", "url": "https://files.pythonhosted.org/packages/ab/49/575cb6c3faee690b05c9d11ee2e8dba8fbd6d6c134496e644c1feb1b47da/black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7ab4d34099e95c437b53d01c4aa37cf93944b233066eb034ccf7897fa4e5f286", "md5": "7979c066db932b7528f3f85f2cac16c7", "sha256": "707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42" }, "downloads": -1, "filename": "black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "has_sig": false, "md5_digest": "7979c066db932b7528f3f85f2cac16c7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1757443, "upload_time": "2024-08-02T17:46:20", "upload_time_iso_8601": "2024-08-02T17:46:20.306265Z", "url": "https://files.pythonhosted.org/packages/7a/b4/d34099e95c437b53d01c4aa37cf93944b233066eb034ccf7897fa4e5f286/black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "87a06d2e4175ef364b8c4b64f8441ba041ed65c63ea1db2720d61494ac711c15", "md5": "f1e5132180e67a27ebb4b501bcd69815", "sha256": "d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a" }, "downloads": -1, "filename": "black-24.8.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "f1e5132180e67a27ebb4b501bcd69815", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1418012, "upload_time": "2024-08-02T17:47:20", "upload_time_iso_8601": "2024-08-02T17:47:20.330230Z", "url": "https://files.pythonhosted.org/packages/87/a0/6d2e4175ef364b8c4b64f8441ba041ed65c63ea1db2720d61494ac711c15/black-24.8.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "08a60a3aa89de9c283556146dc6dbda20cd63a9c94160a6fbdebaf0918e4a3e1", "md5": "2dad7d808a671faa38f565a02978bacf", "sha256": "fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1" }, "downloads": -1, "filename": "black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2dad7d808a671faa38f565a02978bacf", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1615080, "upload_time": "2024-08-02T17:48:05", "upload_time_iso_8601": "2024-08-02T17:48:05.467963Z", "url": "https://files.pythonhosted.org/packages/08/a6/0a3aa89de9c283556146dc6dbda20cd63a9c94160a6fbdebaf0918e4a3e1/black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "db94b803d810e14588bb297e565821a947c108390a079e21dbdcb9ab6956cd7a", "md5": "433926e16b0b98900641c08cc8655d31", "sha256": "837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af" }, "downloads": -1, "filename": "black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "433926e16b0b98900641c08cc8655d31", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1438143, "upload_time": "2024-08-02T17:47:30", "upload_time_iso_8601": "2024-08-02T17:47:30.247181Z", "url": "https://files.pythonhosted.org/packages/db/94/b803d810e14588bb297e565821a947c108390a079e21dbdcb9ab6956cd7a/black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a5b5f485e1bbe31f768e2e5210f52ea3f432256201289fd1a3c0afda693776b0", "md5": "7e5e951b482ef1937cb37842998bcc8f", "sha256": "62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4" }, "downloads": -1, "filename": "black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "has_sig": false, "md5_digest": "7e5e951b482ef1937cb37842998bcc8f", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1738774, "upload_time": "2024-08-02T17:46:17", "upload_time_iso_8601": "2024-08-02T17:46:17.837661Z", "url": "https://files.pythonhosted.org/packages/a5/b5/f485e1bbe31f768e2e5210f52ea3f432256201289fd1a3c0afda693776b0/black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a869a000fc3736f89d1bdc7f4a879f8aaf516fb03613bb51a0154070383d95d9", "md5": "5af3d4d7a58170e452f83014aca999c1", "sha256": "72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af" }, "downloads": -1, "filename": "black-24.8.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "5af3d4d7a58170e452f83014aca999c1", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1427503, "upload_time": "2024-08-02T17:46:22", "upload_time_iso_8601": "2024-08-02T17:46:22.654711Z", "url": "https://files.pythonhosted.org/packages/a8/69/a000fc3736f89d1bdc7f4a879f8aaf516fb03613bb51a0154070383d95d9/black-24.8.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a2a805fb14195cfef32b7c8d4585a44b7499c2a4b205e1662c427b941ed87054", "md5": "11920c23f65414268739da3343c3efa9", "sha256": "7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368" }, "downloads": -1, "filename": "black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "11920c23f65414268739da3343c3efa9", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1646132, "upload_time": "2024-08-02T17:49:52", "upload_time_iso_8601": "2024-08-02T17:49:52.843509Z", "url": "https://files.pythonhosted.org/packages/a2/a8/05fb14195cfef32b7c8d4585a44b7499c2a4b205e1662c427b941ed87054/black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "41778d9ce42673e5cb9988f6df73c1c5c1d4e9e788053cccd7f5fb14ef100982", "md5": "f88a7d3b2d0046aa08f37ce03579afce", "sha256": "649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed" }, "downloads": -1, "filename": "black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "f88a7d3b2d0046aa08f37ce03579afce", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1448665, "upload_time": "2024-08-02T17:47:54", "upload_time_iso_8601": "2024-08-02T17:47:54.479673Z", "url": "https://files.pythonhosted.org/packages/41/77/8d9ce42673e5cb9988f6df73c1c5c1d4e9e788053cccd7f5fb14ef100982/black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "cc94eff1ddad2ce1d3cc26c162b3693043c6b6b575f538f602f26fe846dfdc75", "md5": "6795b3ed01db360588d48346839d4b68", "sha256": "2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018" }, "downloads": -1, "filename": "black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "has_sig": false, "md5_digest": "6795b3ed01db360588d48346839d4b68", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1762458, "upload_time": "2024-08-02T17:46:19", "upload_time_iso_8601": "2024-08-02T17:46:19.384097Z", "url": "https://files.pythonhosted.org/packages/cc/94/eff1ddad2ce1d3cc26c162b3693043c6b6b575f538f602f26fe846dfdc75/black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "28ea18b8d86a9ca19a6942e4e16759b2fa5fc02bbc0eb33c1b866fcd387640ab", "md5": "675aa083343721c015a0c78e19ba25a1", "sha256": "6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2" }, "downloads": -1, "filename": "black-24.8.0-cp312-cp312-win_amd64.whl", "has_sig": false, "md5_digest": "675aa083343721c015a0c78e19ba25a1", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1436109, "upload_time": "2024-08-02T17:46:52", "upload_time_iso_8601": "2024-08-02T17:46:52.970339Z", "url": "https://files.pythonhosted.org/packages/28/ea/18b8d86a9ca19a6942e4e16759b2fa5fc02bbc0eb33c1b866fcd387640ab/black-24.8.0-cp312-cp312-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "9fd4ae03761ddecc1a37d7e743b89cccbcf3317479ff4b88cfd8818079f890d0", "md5": "647eaebf2d522e351790aa160e581f7a", "sha256": "505289f17ceda596658ae81b61ebbe2d9b25aa78067035184ed0a9d855d18afd" }, "downloads": -1, "filename": "black-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "647eaebf2d522e351790aa160e581f7a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1617322, "upload_time": "2024-08-02T17:51:20", "upload_time_iso_8601": "2024-08-02T17:51:20.203029Z", "url": "https://files.pythonhosted.org/packages/9f/d4/ae03761ddecc1a37d7e743b89cccbcf3317479ff4b88cfd8818079f890d0/black-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "144b4dfe67eed7f9b1ddca2ec8e4418ea74f0d1dc84d36ea874d618ffa1af7d4", "md5": "fe54e9a718abd4d74069f71f89723012", "sha256": "b19c9ad992c7883ad84c9b22aaa73562a16b819c1d8db7a1a1a49fb7ec13c7d2" }, "downloads": -1, "filename": "black-24.8.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "fe54e9a718abd4d74069f71f89723012", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1442108, "upload_time": "2024-08-02T17:50:40", "upload_time_iso_8601": "2024-08-02T17:50:40.824378Z", "url": "https://files.pythonhosted.org/packages/14/4b/4dfe67eed7f9b1ddca2ec8e4418ea74f0d1dc84d36ea874d618ffa1af7d4/black-24.8.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "971495b3f91f857034686cae0e73006b8391d76a8142d339b42970eaaf0416ea", "md5": "a9981334ee6a27ae1272e66d4d9ecf6c", "sha256": "1f13f7f386f86f8121d76599114bb8c17b69d962137fc70efe56137727c7047e" }, "downloads": -1, "filename": "black-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "has_sig": false, "md5_digest": "a9981334ee6a27ae1272e66d4d9ecf6c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1745786, "upload_time": "2024-08-02T17:46:02", "upload_time_iso_8601": "2024-08-02T17:46:02.939192Z", "url": "https://files.pythonhosted.org/packages/97/14/95b3f91f857034686cae0e73006b8391d76a8142d339b42970eaaf0416ea/black-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "955468b8883c8aa258a6dde958cd5bdfada8382bec47c5162f4a01e66d839af1", "md5": "cdb2ab6aff2f1a5c6bcc8890cfe2c550", "sha256": "f490dbd59680d809ca31efdae20e634f3fae27fba3ce0ba3208333b713bc3920" }, "downloads": -1, "filename": "black-24.8.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "cdb2ab6aff2f1a5c6bcc8890cfe2c550", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1426754, "upload_time": "2024-08-02T17:46:38", "upload_time_iso_8601": "2024-08-02T17:46:38.603269Z", "url": "https://files.pythonhosted.org/packages/95/54/68b8883c8aa258a6dde958cd5bdfada8382bec47c5162f4a01e66d839af1/black-24.8.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "13b2b3f24fdbb46f0e7ef6238e131f13572ee8279b70f237f221dd168a9dba1a", "md5": "257824fabc09aa5434ce11e19807a232", "sha256": "eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c" }, "downloads": -1, "filename": "black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "257824fabc09aa5434ce11e19807a232", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1631706, "upload_time": "2024-08-02T17:49:57", "upload_time_iso_8601": "2024-08-02T17:49:57.606422Z", "url": "https://files.pythonhosted.org/packages/13/b2/b3f24fdbb46f0e7ef6238e131f13572ee8279b70f237f221dd168a9dba1a/black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d93531010981e4a05202a84a3116423970fd1a59d2eda4ac0b3570fbb7029ddc", "md5": "e767209f5839eda31727bea81971a1e3", "sha256": "3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e" }, "downloads": -1, "filename": "black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "e767209f5839eda31727bea81971a1e3", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1457429, "upload_time": "2024-08-02T17:49:12", "upload_time_iso_8601": "2024-08-02T17:49:12.764057Z", "url": "https://files.pythonhosted.org/packages/d9/35/31010981e4a05202a84a3116423970fd1a59d2eda4ac0b3570fbb7029ddc/black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "27253f706b4f044dd569a20a4835c3b733dedea38d83d2ee0beb8178a6d44945", "md5": "fd110a3994b2a017eb6ae59dda91a98b", "sha256": "9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47" }, "downloads": -1, "filename": "black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "has_sig": false, "md5_digest": "fd110a3994b2a017eb6ae59dda91a98b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1756488, "upload_time": "2024-08-02T17:46:08", "upload_time_iso_8601": "2024-08-02T17:46:08.067022Z", "url": "https://files.pythonhosted.org/packages/27/25/3f706b4f044dd569a20a4835c3b733dedea38d83d2ee0beb8178a6d44945/black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "637279375cd8277cbf1c5670914e6bd4c1b15dea2c8f8e906dc21c448d0535f0", "md5": "26f65fb7c19b195444f785cde831db54", "sha256": "73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb" }, "downloads": -1, "filename": "black-24.8.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "26f65fb7c19b195444f785cde831db54", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1417721, "upload_time": "2024-08-02T17:46:42", "upload_time_iso_8601": "2024-08-02T17:46:42.637390Z", "url": "https://files.pythonhosted.org/packages/63/72/79375cd8277cbf1c5670914e6bd4c1b15dea2c8f8e906dc21c448d0535f0/black-24.8.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "271e83fa8a787180e1632c3d831f7e58994d7aaf23a0961320d21e84f922f919", "md5": "59907440de926854661707af1eee30bb", "sha256": "972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed" }, "downloads": -1, "filename": "black-24.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "59907440de926854661707af1eee30bb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 206504, "upload_time": "2024-08-02T17:43:15", "upload_time_iso_8601": "2024-08-02T17:43:15.747950Z", "url": "https://files.pythonhosted.org/packages/27/1e/83fa8a787180e1632c3d831f7e58994d7aaf23a0961320d21e84f922f919/black-24.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "04b046fb0d4e00372f4a86a6f8efa3cb193c9f64863615e39010b1477e010578", "md5": "bdbca9759c0b6b51ea8fe6a3690fc5f2", "sha256": "2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f" }, "downloads": -1, "filename": "black-24.8.0.tar.gz", "has_sig": false, "md5_digest": "bdbca9759c0b6b51ea8fe6a3690fc5f2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 644810, "upload_time": "2024-08-02T17:43:18", "upload_time_iso_8601": "2024-08-02T17:43:18.405025Z", "url": "https://files.pythonhosted.org/packages/04/b0/46fb0d4e00372f4a86a6f8efa3cb193c9f64863615e39010b1477e010578/black-24.8.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "blake2b_256": "476e74e29edf1fba3887ed7066930a87f698ffdcd52c5dbc263eabb06061672d", "md5": "4bff8318e5aa32f165c6c642d3d5413f", "sha256": "09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6" }, "downloads": -1, "filename": "black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4bff8318e5aa32f165c6c642d3d5413f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1632092, "upload_time": "2024-08-02T17:47:26", "upload_time_iso_8601": "2024-08-02T17:47:26.911765Z", "url": "https://files.pythonhosted.org/packages/47/6e/74e29edf1fba3887ed7066930a87f698ffdcd52c5dbc263eabb06061672d/black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "ab49575cb6c3faee690b05c9d11ee2e8dba8fbd6d6c134496e644c1feb1b47da", "md5": "ed6c5f52e691417f4ee47ef95d2c8d7a", "sha256": "81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb" }, "downloads": -1, "filename": "black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "ed6c5f52e691417f4ee47ef95d2c8d7a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1457529, "upload_time": "2024-08-02T17:47:29", "upload_time_iso_8601": "2024-08-02T17:47:29.109540Z", "url": "https://files.pythonhosted.org/packages/ab/49/575cb6c3faee690b05c9d11ee2e8dba8fbd6d6c134496e644c1feb1b47da/black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "7ab4d34099e95c437b53d01c4aa37cf93944b233066eb034ccf7897fa4e5f286", "md5": "7979c066db932b7528f3f85f2cac16c7", "sha256": "707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42" }, "downloads": -1, "filename": "black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "has_sig": false, "md5_digest": "7979c066db932b7528f3f85f2cac16c7", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1757443, "upload_time": "2024-08-02T17:46:20", "upload_time_iso_8601": "2024-08-02T17:46:20.306265Z", "url": "https://files.pythonhosted.org/packages/7a/b4/d34099e95c437b53d01c4aa37cf93944b233066eb034ccf7897fa4e5f286/black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "87a06d2e4175ef364b8c4b64f8441ba041ed65c63ea1db2720d61494ac711c15", "md5": "f1e5132180e67a27ebb4b501bcd69815", "sha256": "d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a" }, "downloads": -1, "filename": "black-24.8.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "f1e5132180e67a27ebb4b501bcd69815", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.8", "size": 1418012, "upload_time": "2024-08-02T17:47:20", "upload_time_iso_8601": "2024-08-02T17:47:20.330230Z", "url": "https://files.pythonhosted.org/packages/87/a0/6d2e4175ef364b8c4b64f8441ba041ed65c63ea1db2720d61494ac711c15/black-24.8.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "08a60a3aa89de9c283556146dc6dbda20cd63a9c94160a6fbdebaf0918e4a3e1", "md5": "2dad7d808a671faa38f565a02978bacf", "sha256": "fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1" }, "downloads": -1, "filename": "black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2dad7d808a671faa38f565a02978bacf", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1615080, "upload_time": "2024-08-02T17:48:05", "upload_time_iso_8601": "2024-08-02T17:48:05.467963Z", "url": "https://files.pythonhosted.org/packages/08/a6/0a3aa89de9c283556146dc6dbda20cd63a9c94160a6fbdebaf0918e4a3e1/black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "db94b803d810e14588bb297e565821a947c108390a079e21dbdcb9ab6956cd7a", "md5": "433926e16b0b98900641c08cc8655d31", "sha256": "837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af" }, "downloads": -1, "filename": "black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "433926e16b0b98900641c08cc8655d31", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1438143, "upload_time": "2024-08-02T17:47:30", "upload_time_iso_8601": "2024-08-02T17:47:30.247181Z", "url": "https://files.pythonhosted.org/packages/db/94/b803d810e14588bb297e565821a947c108390a079e21dbdcb9ab6956cd7a/black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a5b5f485e1bbe31f768e2e5210f52ea3f432256201289fd1a3c0afda693776b0", "md5": "7e5e951b482ef1937cb37842998bcc8f", "sha256": "62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4" }, "downloads": -1, "filename": "black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "has_sig": false, "md5_digest": "7e5e951b482ef1937cb37842998bcc8f", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1738774, "upload_time": "2024-08-02T17:46:17", "upload_time_iso_8601": "2024-08-02T17:46:17.837661Z", "url": "https://files.pythonhosted.org/packages/a5/b5/f485e1bbe31f768e2e5210f52ea3f432256201289fd1a3c0afda693776b0/black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a869a000fc3736f89d1bdc7f4a879f8aaf516fb03613bb51a0154070383d95d9", "md5": "5af3d4d7a58170e452f83014aca999c1", "sha256": "72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af" }, "downloads": -1, "filename": "black-24.8.0-cp311-cp311-win_amd64.whl", "has_sig": false, "md5_digest": "5af3d4d7a58170e452f83014aca999c1", "packagetype": "bdist_wheel", "python_version": "cp311", "requires_python": ">=3.8", "size": 1427503, "upload_time": "2024-08-02T17:46:22", "upload_time_iso_8601": "2024-08-02T17:46:22.654711Z", "url": "https://files.pythonhosted.org/packages/a8/69/a000fc3736f89d1bdc7f4a879f8aaf516fb03613bb51a0154070383d95d9/black-24.8.0-cp311-cp311-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "a2a805fb14195cfef32b7c8d4585a44b7499c2a4b205e1662c427b941ed87054", "md5": "11920c23f65414268739da3343c3efa9", "sha256": "7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368" }, "downloads": -1, "filename": "black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "11920c23f65414268739da3343c3efa9", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1646132, "upload_time": "2024-08-02T17:49:52", "upload_time_iso_8601": "2024-08-02T17:49:52.843509Z", "url": "https://files.pythonhosted.org/packages/a2/a8/05fb14195cfef32b7c8d4585a44b7499c2a4b205e1662c427b941ed87054/black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "41778d9ce42673e5cb9988f6df73c1c5c1d4e9e788053cccd7f5fb14ef100982", "md5": "f88a7d3b2d0046aa08f37ce03579afce", "sha256": "649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed" }, "downloads": -1, "filename": "black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "f88a7d3b2d0046aa08f37ce03579afce", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1448665, "upload_time": "2024-08-02T17:47:54", "upload_time_iso_8601": "2024-08-02T17:47:54.479673Z", "url": "https://files.pythonhosted.org/packages/41/77/8d9ce42673e5cb9988f6df73c1c5c1d4e9e788053cccd7f5fb14ef100982/black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "cc94eff1ddad2ce1d3cc26c162b3693043c6b6b575f538f602f26fe846dfdc75", "md5": "6795b3ed01db360588d48346839d4b68", "sha256": "2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018" }, "downloads": -1, "filename": "black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "has_sig": false, "md5_digest": "6795b3ed01db360588d48346839d4b68", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1762458, "upload_time": "2024-08-02T17:46:19", "upload_time_iso_8601": "2024-08-02T17:46:19.384097Z", "url": "https://files.pythonhosted.org/packages/cc/94/eff1ddad2ce1d3cc26c162b3693043c6b6b575f538f602f26fe846dfdc75/black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "28ea18b8d86a9ca19a6942e4e16759b2fa5fc02bbc0eb33c1b866fcd387640ab", "md5": "675aa083343721c015a0c78e19ba25a1", "sha256": "6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2" }, "downloads": -1, "filename": "black-24.8.0-cp312-cp312-win_amd64.whl", "has_sig": false, "md5_digest": "675aa083343721c015a0c78e19ba25a1", "packagetype": "bdist_wheel", "python_version": "cp312", "requires_python": ">=3.8", "size": 1436109, "upload_time": "2024-08-02T17:46:52", "upload_time_iso_8601": "2024-08-02T17:46:52.970339Z", "url": "https://files.pythonhosted.org/packages/28/ea/18b8d86a9ca19a6942e4e16759b2fa5fc02bbc0eb33c1b866fcd387640ab/black-24.8.0-cp312-cp312-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "9fd4ae03761ddecc1a37d7e743b89cccbcf3317479ff4b88cfd8818079f890d0", "md5": "647eaebf2d522e351790aa160e581f7a", "sha256": "505289f17ceda596658ae81b61ebbe2d9b25aa78067035184ed0a9d855d18afd" }, "downloads": -1, "filename": "black-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "647eaebf2d522e351790aa160e581f7a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1617322, "upload_time": "2024-08-02T17:51:20", "upload_time_iso_8601": "2024-08-02T17:51:20.203029Z", "url": "https://files.pythonhosted.org/packages/9f/d4/ae03761ddecc1a37d7e743b89cccbcf3317479ff4b88cfd8818079f890d0/black-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "144b4dfe67eed7f9b1ddca2ec8e4418ea74f0d1dc84d36ea874d618ffa1af7d4", "md5": "fe54e9a718abd4d74069f71f89723012", "sha256": "b19c9ad992c7883ad84c9b22aaa73562a16b819c1d8db7a1a1a49fb7ec13c7d2" }, "downloads": -1, "filename": "black-24.8.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "fe54e9a718abd4d74069f71f89723012", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1442108, "upload_time": "2024-08-02T17:50:40", "upload_time_iso_8601": "2024-08-02T17:50:40.824378Z", "url": "https://files.pythonhosted.org/packages/14/4b/4dfe67eed7f9b1ddca2ec8e4418ea74f0d1dc84d36ea874d618ffa1af7d4/black-24.8.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "971495b3f91f857034686cae0e73006b8391d76a8142d339b42970eaaf0416ea", "md5": "a9981334ee6a27ae1272e66d4d9ecf6c", "sha256": "1f13f7f386f86f8121d76599114bb8c17b69d962137fc70efe56137727c7047e" }, "downloads": -1, "filename": "black-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "has_sig": false, "md5_digest": "a9981334ee6a27ae1272e66d4d9ecf6c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1745786, "upload_time": "2024-08-02T17:46:02", "upload_time_iso_8601": "2024-08-02T17:46:02.939192Z", "url": "https://files.pythonhosted.org/packages/97/14/95b3f91f857034686cae0e73006b8391d76a8142d339b42970eaaf0416ea/black-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "955468b8883c8aa258a6dde958cd5bdfada8382bec47c5162f4a01e66d839af1", "md5": "cdb2ab6aff2f1a5c6bcc8890cfe2c550", "sha256": "f490dbd59680d809ca31efdae20e634f3fae27fba3ce0ba3208333b713bc3920" }, "downloads": -1, "filename": "black-24.8.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "cdb2ab6aff2f1a5c6bcc8890cfe2c550", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.8", "size": 1426754, "upload_time": "2024-08-02T17:46:38", "upload_time_iso_8601": "2024-08-02T17:46:38.603269Z", "url": "https://files.pythonhosted.org/packages/95/54/68b8883c8aa258a6dde958cd5bdfada8382bec47c5162f4a01e66d839af1/black-24.8.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "13b2b3f24fdbb46f0e7ef6238e131f13572ee8279b70f237f221dd168a9dba1a", "md5": "257824fabc09aa5434ce11e19807a232", "sha256": "eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c" }, "downloads": -1, "filename": "black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "257824fabc09aa5434ce11e19807a232", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1631706, "upload_time": "2024-08-02T17:49:57", "upload_time_iso_8601": "2024-08-02T17:49:57.606422Z", "url": "https://files.pythonhosted.org/packages/13/b2/b3f24fdbb46f0e7ef6238e131f13572ee8279b70f237f221dd168a9dba1a/black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "d93531010981e4a05202a84a3116423970fd1a59d2eda4ac0b3570fbb7029ddc", "md5": "e767209f5839eda31727bea81971a1e3", "sha256": "3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e" }, "downloads": -1, "filename": "black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "e767209f5839eda31727bea81971a1e3", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1457429, "upload_time": "2024-08-02T17:49:12", "upload_time_iso_8601": "2024-08-02T17:49:12.764057Z", "url": "https://files.pythonhosted.org/packages/d9/35/31010981e4a05202a84a3116423970fd1a59d2eda4ac0b3570fbb7029ddc/black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "27253f706b4f044dd569a20a4835c3b733dedea38d83d2ee0beb8178a6d44945", "md5": "fd110a3994b2a017eb6ae59dda91a98b", "sha256": "9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47" }, "downloads": -1, "filename": "black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "has_sig": false, "md5_digest": "fd110a3994b2a017eb6ae59dda91a98b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1756488, "upload_time": "2024-08-02T17:46:08", "upload_time_iso_8601": "2024-08-02T17:46:08.067022Z", "url": "https://files.pythonhosted.org/packages/27/25/3f706b4f044dd569a20a4835c3b733dedea38d83d2ee0beb8178a6d44945/black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "637279375cd8277cbf1c5670914e6bd4c1b15dea2c8f8e906dc21c448d0535f0", "md5": "26f65fb7c19b195444f785cde831db54", "sha256": "73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb" }, "downloads": -1, "filename": "black-24.8.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "26f65fb7c19b195444f785cde831db54", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.8", "size": 1417721, "upload_time": "2024-08-02T17:46:42", "upload_time_iso_8601": "2024-08-02T17:46:42.637390Z", "url": "https://files.pythonhosted.org/packages/63/72/79375cd8277cbf1c5670914e6bd4c1b15dea2c8f8e906dc21c448d0535f0/black-24.8.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "271e83fa8a787180e1632c3d831f7e58994d7aaf23a0961320d21e84f922f919", "md5": "59907440de926854661707af1eee30bb", "sha256": "972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed" }, "downloads": -1, "filename": "black-24.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "59907440de926854661707af1eee30bb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 206504, "upload_time": "2024-08-02T17:43:15", "upload_time_iso_8601": "2024-08-02T17:43:15.747950Z", "url": "https://files.pythonhosted.org/packages/27/1e/83fa8a787180e1632c3d831f7e58994d7aaf23a0961320d21e84f922f919/black-24.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "blake2b_256": "04b046fb0d4e00372f4a86a6f8efa3cb193c9f64863615e39010b1477e010578", "md5": "bdbca9759c0b6b51ea8fe6a3690fc5f2", "sha256": "2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f" }, "downloads": -1, "filename": "black-24.8.0.tar.gz", "has_sig": false, "md5_digest": "bdbca9759c0b6b51ea8fe6a3690fc5f2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 644810, "upload_time": "2024-08-02T17:43:18", "upload_time_iso_8601": "2024-08-02T17:43:18.405025Z", "url": "https://files.pythonhosted.org/packages/04/b0/46fb0d4e00372f4a86a6f8efa3cb193c9f64863615e39010b1477e010578/black-24.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }