astyle


Nameastyle JSON
Version 3.6.6 PyPI version JSON
download
home_pageNone
SummaryArtistic Style is a source code indenter, formatter, and beautifier for the C, C++, C++/CLI, Objective‑C, C# and Java programming languages
upload_time2025-01-01 10:23:19
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseGPL v3
keywords formatter
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Astyle Python distribution

[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/Freed-Wu/astyle-wheel/main.svg)](https://results.pre-commit.ci/latest/github/Freed-Wu/astyle-wheel/main)
[![github/workflow](https://github.com/Freed-Wu/astyle-wheel/actions/workflows/main.yml/badge.svg)](https://github.com/Freed-Wu/astyle-wheel/actions)

[![github/downloads](https://shields.io/github/downloads/Freed-Wu/astyle-wheel/total)](https://github.com/Freed-Wu/astyle-wheel/releases)
[![github/downloads/latest](https://shields.io/github/downloads/Freed-Wu/astyle-wheel/latest/total)](https://github.com/Freed-Wu/astyle-wheel/releases/latest)
[![github/issues](https://shields.io/github/issues/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/issues)
[![github/issues-closed](https://shields.io/github/issues-closed/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/issues?q=is%3Aissue+is%3Aclosed)
[![github/issues-pr](https://shields.io/github/issues-pr/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/pulls)
[![github/issues-pr-closed](https://shields.io/github/issues-pr-closed/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/pulls?q=is%3Apr+is%3Aclosed)
[![github/discussions](https://shields.io/github/discussions/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/discussions)
[![github/milestones](https://shields.io/github/milestones/all/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/milestones)
[![github/forks](https://shields.io/github/forks/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/network/members)
[![github/stars](https://shields.io/github/stars/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/stargazers)
[![github/watchers](https://shields.io/github/watchers/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/watchers)
[![github/contributors](https://shields.io/github/contributors/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/graphs/contributors)
[![github/commit-activity](https://shields.io/github/commit-activity/w/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/graphs/commit-activity)
[![github/last-commit](https://shields.io/github/last-commit/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/commits)
[![github/release-date](https://shields.io/github/release-date/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/releases/latest)

[![github/license](https://shields.io/github/license/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/blob/main/LICENSE)
[![github/languages](https://shields.io/github/languages/count/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel)
[![github/languages/top](https://shields.io/github/languages/top/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel)
[![github/directory-file-count](https://shields.io/github/directory-file-count/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel)
[![github/code-size](https://shields.io/github/languages/code-size/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel)
[![github/repo-size](https://shields.io/github/repo-size/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel)
[![github/v](https://shields.io/github/v/release/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel)

[![pypi/status](https://shields.io/pypi/status/astyle)](https://pypi.org/project/astyle/#description)
[![pypi/v](https://shields.io/pypi/v/astyle)](https://pypi.org/project/astyle/#history)
[![pypi/downloads](https://shields.io/pypi/dd/astyle)](https://pypi.org/project/astyle/#files)
[![pypi/format](https://shields.io/pypi/format/astyle)](https://pypi.org/project/astyle/#files)
[![pypi/implementation](https://shields.io/pypi/implementation/astyle)](https://pypi.org/project/astyle/#files)
[![pypi/pyversions](https://shields.io/pypi/pyversions/astyle)](https://pypi.org/project/astyle/#files)

This project packages the [astyle](https://gitlab.com/saalen/astyle) utility as
a Python package.

## Install

```shell
pip install astyle
```

Installing is not needed for [pre-commit](https://pre-commit.com/).

## Usage

### shell

```shell
astyle --help
# or
python -m astyle --help
```

### python

```python
from astyle.__main__ import main

main("--help")
```

Or:

```python
from astyle import astyle

astyle("  #include <Python.h>", "indent-classes")
```

### pre-commit

`.pre-commit-config.yaml`:

```yaml
repos:
  - repo: https://github.com/Freed-Wu/astyle-wheel
    rev: 3.6.6
    hooks:
      - id: astyle
```

```shell
pre-commit install
git commit
```

## Similar Projects

### pre-commit hooks

- [mirrors-clang-format](https://github.com/pre-commit/mirrors-clang-format)
- [CLinters](https://github.com/pocc/pre-commit-hooks): it requires you install
  linters and formatters in your machine and it calls them. So it cannot
  ensure the versions of linters and formatters are same as others, which means
  it cannot ensure **reproducibility**.
- [astyle_precommit_hook](https://github.com/mellowcandle/astyle_precommit_hook):
  it uses git hook, not pre-commit, which make it cannot use many hooks at the
  same time. It cannot ensure **reproducibility**, too.
- [pyastyle](https://github.com/timonwong/pyastyle): stop maintaining.
- [astyle_py](https://github.com/igrr/astyle_py): it uses wasm, not native
  binary programs like this project.

### Python distributions

- [cppcheck-wheel](https://github.com/msclock/cppcheck-wheel)
- [clang-format-wheel](https://github.com/ssciwr/clang-format-wheel)
- [cmake-python-distributions](https://github.com/scikit-build/cmake-python-distributions)
- [ninja-python-distributions](https://github.com/scikit-build/ninja-python-distributions)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "astyle",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "formatter",
    "author": null,
    "author_email": "Wu Zhenyu <wuzhenyu@ustc.edu>",
    "download_url": "https://files.pythonhosted.org/packages/14/3b/8bcbb8bce23e90c13d0736242f2674d61484e9e64257d95e0382a4e2ef20/astyle-3.6.6.tar.gz",
    "platform": null,
    "description": "# Astyle Python distribution\n\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/Freed-Wu/astyle-wheel/main.svg)](https://results.pre-commit.ci/latest/github/Freed-Wu/astyle-wheel/main)\n[![github/workflow](https://github.com/Freed-Wu/astyle-wheel/actions/workflows/main.yml/badge.svg)](https://github.com/Freed-Wu/astyle-wheel/actions)\n\n[![github/downloads](https://shields.io/github/downloads/Freed-Wu/astyle-wheel/total)](https://github.com/Freed-Wu/astyle-wheel/releases)\n[![github/downloads/latest](https://shields.io/github/downloads/Freed-Wu/astyle-wheel/latest/total)](https://github.com/Freed-Wu/astyle-wheel/releases/latest)\n[![github/issues](https://shields.io/github/issues/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/issues)\n[![github/issues-closed](https://shields.io/github/issues-closed/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/issues?q=is%3Aissue+is%3Aclosed)\n[![github/issues-pr](https://shields.io/github/issues-pr/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/pulls)\n[![github/issues-pr-closed](https://shields.io/github/issues-pr-closed/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/pulls?q=is%3Apr+is%3Aclosed)\n[![github/discussions](https://shields.io/github/discussions/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/discussions)\n[![github/milestones](https://shields.io/github/milestones/all/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/milestones)\n[![github/forks](https://shields.io/github/forks/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/network/members)\n[![github/stars](https://shields.io/github/stars/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/stargazers)\n[![github/watchers](https://shields.io/github/watchers/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/watchers)\n[![github/contributors](https://shields.io/github/contributors/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/graphs/contributors)\n[![github/commit-activity](https://shields.io/github/commit-activity/w/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/graphs/commit-activity)\n[![github/last-commit](https://shields.io/github/last-commit/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/commits)\n[![github/release-date](https://shields.io/github/release-date/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/releases/latest)\n\n[![github/license](https://shields.io/github/license/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel/blob/main/LICENSE)\n[![github/languages](https://shields.io/github/languages/count/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel)\n[![github/languages/top](https://shields.io/github/languages/top/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel)\n[![github/directory-file-count](https://shields.io/github/directory-file-count/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel)\n[![github/code-size](https://shields.io/github/languages/code-size/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel)\n[![github/repo-size](https://shields.io/github/repo-size/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel)\n[![github/v](https://shields.io/github/v/release/Freed-Wu/astyle-wheel)](https://github.com/Freed-Wu/astyle-wheel)\n\n[![pypi/status](https://shields.io/pypi/status/astyle)](https://pypi.org/project/astyle/#description)\n[![pypi/v](https://shields.io/pypi/v/astyle)](https://pypi.org/project/astyle/#history)\n[![pypi/downloads](https://shields.io/pypi/dd/astyle)](https://pypi.org/project/astyle/#files)\n[![pypi/format](https://shields.io/pypi/format/astyle)](https://pypi.org/project/astyle/#files)\n[![pypi/implementation](https://shields.io/pypi/implementation/astyle)](https://pypi.org/project/astyle/#files)\n[![pypi/pyversions](https://shields.io/pypi/pyversions/astyle)](https://pypi.org/project/astyle/#files)\n\nThis project packages the [astyle](https://gitlab.com/saalen/astyle) utility as\na Python package.\n\n## Install\n\n```shell\npip install astyle\n```\n\nInstalling is not needed for [pre-commit](https://pre-commit.com/).\n\n## Usage\n\n### shell\n\n```shell\nastyle --help\n# or\npython -m astyle --help\n```\n\n### python\n\n```python\nfrom astyle.__main__ import main\n\nmain(\"--help\")\n```\n\nOr:\n\n```python\nfrom astyle import astyle\n\nastyle(\"  #include <Python.h>\", \"indent-classes\")\n```\n\n### pre-commit\n\n`.pre-commit-config.yaml`:\n\n```yaml\nrepos:\n  - repo: https://github.com/Freed-Wu/astyle-wheel\n    rev: 3.6.6\n    hooks:\n      - id: astyle\n```\n\n```shell\npre-commit install\ngit commit\n```\n\n## Similar Projects\n\n### pre-commit hooks\n\n- [mirrors-clang-format](https://github.com/pre-commit/mirrors-clang-format)\n- [CLinters](https://github.com/pocc/pre-commit-hooks): it requires you install\n  linters and formatters in your machine and it calls them. So it cannot\n  ensure the versions of linters and formatters are same as others, which means\n  it cannot ensure **reproducibility**.\n- [astyle_precommit_hook](https://github.com/mellowcandle/astyle_precommit_hook):\n  it uses git hook, not pre-commit, which make it cannot use many hooks at the\n  same time. It cannot ensure **reproducibility**, too.\n- [pyastyle](https://github.com/timonwong/pyastyle): stop maintaining.\n- [astyle_py](https://github.com/igrr/astyle_py): it uses wasm, not native\n  binary programs like this project.\n\n### Python distributions\n\n- [cppcheck-wheel](https://github.com/msclock/cppcheck-wheel)\n- [clang-format-wheel](https://github.com/ssciwr/clang-format-wheel)\n- [cmake-python-distributions](https://github.com/scikit-build/cmake-python-distributions)\n- [ninja-python-distributions](https://github.com/scikit-build/ninja-python-distributions)\n",
    "bugtrack_url": null,
    "license": "GPL v3",
    "summary": "Artistic Style is a source code indenter, formatter, and beautifier for the C, C++, C++/CLI, Objective\u2011C, C# and Java programming languages",
    "version": "3.6.6",
    "project_urls": {
        "Bug report": "https://github.com/Freed-Wu/astyle-wheel/issues",
        "Download": "https://github.com/Freed-Wu/astyle-wheel/releases",
        "Homepage": "http://astyle.sourceforge.net",
        "Source": "https://github.com/Freed-Wu/astyle-wheel"
    },
    "split_keywords": [
        "formatter"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c06f4c2fe851ad97713bc21cce63986d0c2700c97309156badf0cce8088ae72f",
                "md5": "94617c15e1d69ad3a02f9da5b4649dbf",
                "sha256": "6f6aef0fcb5391b4fc0ad37d7c60891c09317b73c368d03d227f459a372468b4"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "94617c15e1d69ad3a02f9da5b4649dbf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 376038,
            "upload_time": "2025-01-01T10:22:05",
            "upload_time_iso_8601": "2025-01-01T10:22:05.498382Z",
            "url": "https://files.pythonhosted.org/packages/c0/6f/4c2fe851ad97713bc21cce63986d0c2700c97309156badf0cce8088ae72f/astyle-3.6.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e0dadd0eb2875b80665263af5995c1a77a5e54d47e4138539e0458d4d0ffc00",
                "md5": "72984e936e0b9d8bc4c1f221ef4d63f8",
                "sha256": "d7e0ae475aa174454abc17ff1e27094a37e0897bff47709916cd1bcc9e03c336"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "72984e936e0b9d8bc4c1f221ef4d63f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 386052,
            "upload_time": "2025-01-01T10:22:08",
            "upload_time_iso_8601": "2025-01-01T10:22:08.023353Z",
            "url": "https://files.pythonhosted.org/packages/3e/0d/add0eb2875b80665263af5995c1a77a5e54d47e4138539e0458d4d0ffc00/astyle-3.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c9dc93f6086364170c4dc450fc13b0e77a49b43b6f57aa4043f360e008289eb",
                "md5": "cc3f47074bb5085beaf3b3c6071298a9",
                "sha256": "50bc4fb807b4d239d75e7774788bff46078891b2bcb01c06a685b70abc953d9d"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cc3f47074bb5085beaf3b3c6071298a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 422976,
            "upload_time": "2025-01-01T10:22:09",
            "upload_time_iso_8601": "2025-01-01T10:22:09.247578Z",
            "url": "https://files.pythonhosted.org/packages/5c/9d/c93f6086364170c4dc450fc13b0e77a49b43b6f57aa4043f360e008289eb/astyle-3.6.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a887182613754c885bd23d06faf419dd0ec6332e4ec175bbf64bb251c50740ee",
                "md5": "949d1d2c01bbab74a3c720ba8e635737",
                "sha256": "124b020551e825b86c2cbb8f511d7d2417c44e6046dce525db1814b1d315ddc2"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "949d1d2c01bbab74a3c720ba8e635737",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 442819,
            "upload_time": "2025-01-01T10:22:11",
            "upload_time_iso_8601": "2025-01-01T10:22:11.770526Z",
            "url": "https://files.pythonhosted.org/packages/a8/87/182613754c885bd23d06faf419dd0ec6332e4ec175bbf64bb251c50740ee/astyle-3.6.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4853e78f2ece5ae9499f83f079213aea8f5b49d4e76150057e9b2b13d8db3fa",
                "md5": "3bad4a45dc2eee2863887cd872f2356f",
                "sha256": "04a87401131c1bddbeba832641e734d1d57b319a88b9b2a549ba7f11538ef4ab"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3bad4a45dc2eee2863887cd872f2356f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 399517,
            "upload_time": "2025-01-01T10:22:14",
            "upload_time_iso_8601": "2025-01-01T10:22:14.174615Z",
            "url": "https://files.pythonhosted.org/packages/b4/85/3e78f2ece5ae9499f83f079213aea8f5b49d4e76150057e9b2b13d8db3fa/astyle-3.6.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bb4347abf377c3c161abf2ed735a0545517f4dd3ffdfb1c96dee8d1df1f9b0d",
                "md5": "fce4fb31df2e1547d9b44535418ea97a",
                "sha256": "6aca2c273fab841ed8abda0c92dd563936cb0182086c73f5004c41eec156fc65"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fce4fb31df2e1547d9b44535418ea97a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 396542,
            "upload_time": "2025-01-01T10:22:15",
            "upload_time_iso_8601": "2025-01-01T10:22:15.249719Z",
            "url": "https://files.pythonhosted.org/packages/7b/b4/347abf377c3c161abf2ed735a0545517f4dd3ffdfb1c96dee8d1df1f9b0d/astyle-3.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a68274cca2a1bf4d049d9a8d6e1aa8c7a73433e5d880ea65931b19c33dd817f",
                "md5": "ec14d290656f033ae0593b5885b86715",
                "sha256": "d1aa3975d5a3df2fa6bad6a00d6bce48ab81a545db25fc6eeb242fee20858abb"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ec14d290656f033ae0593b5885b86715",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1303269,
            "upload_time": "2025-01-01T10:22:17",
            "upload_time_iso_8601": "2025-01-01T10:22:17.979071Z",
            "url": "https://files.pythonhosted.org/packages/0a/68/274cca2a1bf4d049d9a8d6e1aa8c7a73433e5d880ea65931b19c33dd817f/astyle-3.6.6-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55daaa85a90333c4921a589056343a8258a397815832451455766f8141c5d219",
                "md5": "ed70e13130d1ee919526961fd7af643d",
                "sha256": "0fbf6b5ea32cf76e1192f7e03fe00a139fb3356703d7a28512e86b89fbdae6e5"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ed70e13130d1ee919526961fd7af643d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1483646,
            "upload_time": "2025-01-01T10:22:20",
            "upload_time_iso_8601": "2025-01-01T10:22:20.619093Z",
            "url": "https://files.pythonhosted.org/packages/55/da/aa85a90333c4921a589056343a8258a397815832451455766f8141c5d219/astyle-3.6.6-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2c7e74df79dee1d5bc4f011930ea734255d4c8669ccc89e9d0d27bfb1d757e6",
                "md5": "95f34c99993766ee50e2c49fd771136b",
                "sha256": "f05cd91e0842a7405b8035271e59a37a8619a59bbba685425e131b35b3c18b7a"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "95f34c99993766ee50e2c49fd771136b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1366547,
            "upload_time": "2025-01-01T10:22:24",
            "upload_time_iso_8601": "2025-01-01T10:22:24.188586Z",
            "url": "https://files.pythonhosted.org/packages/c2/c7/e74df79dee1d5bc4f011930ea734255d4c8669ccc89e9d0d27bfb1d757e6/astyle-3.6.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81300368b9c73cd0766796d9fbb53c86c87c293d3029a97ec971189eb779bf74",
                "md5": "ca12568fd4f34ff5bed221a6bf4dbf93",
                "sha256": "9cc4af55c5540a608042a6c7cee3e3f10c8fd10b4714c8156030c3ad747d8b1b"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ca12568fd4f34ff5bed221a6bf4dbf93",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 375859,
            "upload_time": "2025-01-01T10:22:26",
            "upload_time_iso_8601": "2025-01-01T10:22:26.931964Z",
            "url": "https://files.pythonhosted.org/packages/81/30/0368b9c73cd0766796d9fbb53c86c87c293d3029a97ec971189eb779bf74/astyle-3.6.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fe958936db0c7d6e3f2db3e07fd283abb5fedc954d43fc29518a952ede27371",
                "md5": "f070e432c946b21635cc343ab43f91cd",
                "sha256": "f08f729375db18b5bb337e8deaa16a3777ff7e6fe546d6dc34b11e2e803b95fb"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f070e432c946b21635cc343ab43f91cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 386049,
            "upload_time": "2025-01-01T10:22:28",
            "upload_time_iso_8601": "2025-01-01T10:22:28.144879Z",
            "url": "https://files.pythonhosted.org/packages/8f/e9/58936db0c7d6e3f2db3e07fd283abb5fedc954d43fc29518a952ede27371/astyle-3.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4504c6a93e097772ba84d4f333fe373e151509e0a7dd2a49781f25b15db1dc35",
                "md5": "fe111086b432b7f3291d406ec3d8dde8",
                "sha256": "06b172a9c3780a72e886732e85c162ee959bbf3007ed6ac10af18dca886ab7ed"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fe111086b432b7f3291d406ec3d8dde8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 422885,
            "upload_time": "2025-01-01T10:22:29",
            "upload_time_iso_8601": "2025-01-01T10:22:29.698387Z",
            "url": "https://files.pythonhosted.org/packages/45/04/c6a93e097772ba84d4f333fe373e151509e0a7dd2a49781f25b15db1dc35/astyle-3.6.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bdef937382ec098d78f62713ccbf7c1159ce77e46998b3d99283e69fe2750bb",
                "md5": "732dc3a57b276c13f637a665fe98d34d",
                "sha256": "a3db4595affd5187993b196c5f15ee0c9c0d4856b393ac8f220b249da013e9eb"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "732dc3a57b276c13f637a665fe98d34d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 442753,
            "upload_time": "2025-01-01T10:22:32",
            "upload_time_iso_8601": "2025-01-01T10:22:32.141101Z",
            "url": "https://files.pythonhosted.org/packages/0b/de/f937382ec098d78f62713ccbf7c1159ce77e46998b3d99283e69fe2750bb/astyle-3.6.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "110d05c9ea0901e3078f7a37b9bed6be0cb7b24aec7de84e5304fc7cc6b7d11d",
                "md5": "06e1382659d7574321a53ad074a2fb4f",
                "sha256": "289600d6e87937eee10da545a4cb030c77786172910b126bdcdfa6663d586309"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "06e1382659d7574321a53ad074a2fb4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 399501,
            "upload_time": "2025-01-01T10:22:33",
            "upload_time_iso_8601": "2025-01-01T10:22:33.263736Z",
            "url": "https://files.pythonhosted.org/packages/11/0d/05c9ea0901e3078f7a37b9bed6be0cb7b24aec7de84e5304fc7cc6b7d11d/astyle-3.6.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a6978f5cd149fcc68441b544064a5eee8627ccd11b7e2c9f01ac1a071d5334c",
                "md5": "d9bc74ebb5dd6e96604e738d99ccedb2",
                "sha256": "50aa59d44f59d56d8e3a611bf5f3e5045ca42517012cad78a1b3318350c9ea61"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d9bc74ebb5dd6e96604e738d99ccedb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 396631,
            "upload_time": "2025-01-01T10:22:35",
            "upload_time_iso_8601": "2025-01-01T10:22:35.622767Z",
            "url": "https://files.pythonhosted.org/packages/1a/69/78f5cd149fcc68441b544064a5eee8627ccd11b7e2c9f01ac1a071d5334c/astyle-3.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fe2460cf5c6e2f737148be63d93c8e7a5013a7874fa8ddfea7ea7f8bb659fff",
                "md5": "ba06822c2e4829de0f4f947a7e1dbda8",
                "sha256": "aa3fc2225fad36d70a9dfd08b77fbaf61c9ae50146defa9ec8bcf295fbdc4559"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ba06822c2e4829de0f4f947a7e1dbda8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1303197,
            "upload_time": "2025-01-01T10:22:38",
            "upload_time_iso_8601": "2025-01-01T10:22:38.262590Z",
            "url": "https://files.pythonhosted.org/packages/8f/e2/460cf5c6e2f737148be63d93c8e7a5013a7874fa8ddfea7ea7f8bb659fff/astyle-3.6.6-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60750791b2e713ef8d62155549a7642c76c95c8d52972113bc3acb0546f319a9",
                "md5": "72221728cc157b5046e61846361bb1ef",
                "sha256": "93bd582fcdd72e70a250f39b2e6439add40968f750d4002fe497d4dad2d95641"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "72221728cc157b5046e61846361bb1ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1483642,
            "upload_time": "2025-01-01T10:22:40",
            "upload_time_iso_8601": "2025-01-01T10:22:40.683507Z",
            "url": "https://files.pythonhosted.org/packages/60/75/0791b2e713ef8d62155549a7642c76c95c8d52972113bc3acb0546f319a9/astyle-3.6.6-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df80db7152a329ff4f894ef9f0417b9e51008154f4895273c4f59b6dd02f4e2d",
                "md5": "368f494a41a387cee1c19779888c5091",
                "sha256": "29e8f63652971e0fb7e70330601188fe1727934f464b100b65c3d0e0023f7bd1"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "368f494a41a387cee1c19779888c5091",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1366450,
            "upload_time": "2025-01-01T10:22:43",
            "upload_time_iso_8601": "2025-01-01T10:22:43.290414Z",
            "url": "https://files.pythonhosted.org/packages/df/80/db7152a329ff4f894ef9f0417b9e51008154f4895273c4f59b6dd02f4e2d/astyle-3.6.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c44a128029add08d457311a729aa0d71212750047b285e19cb05e0cbff5ecd5b",
                "md5": "21f22b426f310f0215127e223051c5e6",
                "sha256": "d6ae20f0035b12fcd85ffce45d949d32dc2bef1f67820b90ce252cf1dacc3c07"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "21f22b426f310f0215127e223051c5e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 376035,
            "upload_time": "2025-01-01T10:22:46",
            "upload_time_iso_8601": "2025-01-01T10:22:46.205441Z",
            "url": "https://files.pythonhosted.org/packages/c4/4a/128029add08d457311a729aa0d71212750047b285e19cb05e0cbff5ecd5b/astyle-3.6.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31b405512243db55d01c8d7d3576498df08d6d6e0799e06082db4bcfaa6dce24",
                "md5": "e37d74c5a4857ba5aec99ae05dbb4bd9",
                "sha256": "0afeccc613cb0947dbe125a5c3b1e37ebfc10b129e67feeafc5ac763b63c7119"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e37d74c5a4857ba5aec99ae05dbb4bd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 386142,
            "upload_time": "2025-01-01T10:22:48",
            "upload_time_iso_8601": "2025-01-01T10:22:48.925909Z",
            "url": "https://files.pythonhosted.org/packages/31/b4/05512243db55d01c8d7d3576498df08d6d6e0799e06082db4bcfaa6dce24/astyle-3.6.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0cf1e8ffe3b51cebf1a992eaef226cef8dcafa258f6f3c97e32f8a3e78eb1028",
                "md5": "7812407a2167297ef207992a98e97c75",
                "sha256": "37c61a4ef8f6e241882d93c5ff12be38d5af34582f1df72f62a5872a26f114e6"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7812407a2167297ef207992a98e97c75",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 423222,
            "upload_time": "2025-01-01T10:22:50",
            "upload_time_iso_8601": "2025-01-01T10:22:50.011642Z",
            "url": "https://files.pythonhosted.org/packages/0c/f1/e8ffe3b51cebf1a992eaef226cef8dcafa258f6f3c97e32f8a3e78eb1028/astyle-3.6.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f74a756f6e6721417cd26eea9f542cc826369b7d06cab3e748387060937e93d4",
                "md5": "3ff9d5f9b9dec092834e6e003b829f21",
                "sha256": "4cf8ed0a029d5cbee8e213b64b15e8cacb07b352e1b47232c2c352d8446bd1ae"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3ff9d5f9b9dec092834e6e003b829f21",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 443123,
            "upload_time": "2025-01-01T10:22:51",
            "upload_time_iso_8601": "2025-01-01T10:22:51.248309Z",
            "url": "https://files.pythonhosted.org/packages/f7/4a/756f6e6721417cd26eea9f542cc826369b7d06cab3e748387060937e93d4/astyle-3.6.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a86a5a56f8b65e060099318028c51ec9ef1493c6b7745cb6db7b22b48a748ed1",
                "md5": "9be14972951f696b06eee3e900f29dd9",
                "sha256": "f28fd0df79b433ba12882659dbef4778dcef2f7903db1c552c868201be14a4c6"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9be14972951f696b06eee3e900f29dd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 399695,
            "upload_time": "2025-01-01T10:22:52",
            "upload_time_iso_8601": "2025-01-01T10:22:52.353785Z",
            "url": "https://files.pythonhosted.org/packages/a8/6a/5a56f8b65e060099318028c51ec9ef1493c6b7745cb6db7b22b48a748ed1/astyle-3.6.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4848fa382a2534dbd230d0f1ea7680c075363955ab4e49bc8c9f011f0924734",
                "md5": "7c04ab55cc5ac8613e96e625e11a5680",
                "sha256": "d7b7df5ea1013aad8290b7afbc9a1ad6fcb1e7808df407be7b8f3faf49666c27"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c04ab55cc5ac8613e96e625e11a5680",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 396959,
            "upload_time": "2025-01-01T10:22:54",
            "upload_time_iso_8601": "2025-01-01T10:22:54.696355Z",
            "url": "https://files.pythonhosted.org/packages/f4/84/8fa382a2534dbd230d0f1ea7680c075363955ab4e49bc8c9f011f0924734/astyle-3.6.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63a55035553a3a7ed547d7133a2a84bcb67b0601f14407016496e494726f81b0",
                "md5": "f1784d66b54b800e323e0209fbce937e",
                "sha256": "b0a8a75f1b599cb5878b116515810810d2cabf220d3d1440c010e66c5cabdd0e"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f1784d66b54b800e323e0209fbce937e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1303436,
            "upload_time": "2025-01-01T10:22:56",
            "upload_time_iso_8601": "2025-01-01T10:22:56.225933Z",
            "url": "https://files.pythonhosted.org/packages/63/a5/5035553a3a7ed547d7133a2a84bcb67b0601f14407016496e494726f81b0/astyle-3.6.6-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e57d4f9462a899ffc9be5903c64eee98425b757a2a2a43d93591109083efa23d",
                "md5": "610a0389d890a53b093a212b304364fb",
                "sha256": "655bb83a6b205c1142875c91f38d35aea53a2979a37f162c2d448632a3dfc81b"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "610a0389d890a53b093a212b304364fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1484274,
            "upload_time": "2025-01-01T10:22:58",
            "upload_time_iso_8601": "2025-01-01T10:22:58.110083Z",
            "url": "https://files.pythonhosted.org/packages/e5/7d/4f9462a899ffc9be5903c64eee98425b757a2a2a43d93591109083efa23d/astyle-3.6.6-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98ec148f85ba09d75ca73556bfeda17bfb951babaff4021a05fed933766c0238",
                "md5": "d500e8814de579c5228f7fb7fe3b30c1",
                "sha256": "0ae8be08463c2bb8a41130f3ca2998d20847e13f0a1ad0a4c6f2eebdfdeeec21"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d500e8814de579c5228f7fb7fe3b30c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1366771,
            "upload_time": "2025-01-01T10:22:59",
            "upload_time_iso_8601": "2025-01-01T10:22:59.499517Z",
            "url": "https://files.pythonhosted.org/packages/98/ec/148f85ba09d75ca73556bfeda17bfb951babaff4021a05fed933766c0238/astyle-3.6.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f1fc3a956b39cb902316c818769e6aada2df3aa565b5fb07df24bd95ace30fc",
                "md5": "4a39ce7a40397896dd5bcfc50a344cbc",
                "sha256": "cef1fe54964bca2205b9b1dd18cff561f594abcebb8e59437e1dc6d65fe8b2a6"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4a39ce7a40397896dd5bcfc50a344cbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 375458,
            "upload_time": "2025-01-01T10:23:02",
            "upload_time_iso_8601": "2025-01-01T10:23:02.017594Z",
            "url": "https://files.pythonhosted.org/packages/6f/1f/c3a956b39cb902316c818769e6aada2df3aa565b5fb07df24bd95ace30fc/astyle-3.6.6-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11262b8d759319bcac5d363431f7bf2a12c639ca86a61097f1c9a8ebaf78b336",
                "md5": "c449cf24bb896cbb44998d5eda81bfb6",
                "sha256": "de136f9a194f0208d8a2daed07a063b16b74f3323ce790686fca6dee2db68ab8"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c449cf24bb896cbb44998d5eda81bfb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 385588,
            "upload_time": "2025-01-01T10:23:03",
            "upload_time_iso_8601": "2025-01-01T10:23:03.157579Z",
            "url": "https://files.pythonhosted.org/packages/11/26/2b8d759319bcac5d363431f7bf2a12c639ca86a61097f1c9a8ebaf78b336/astyle-3.6.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67492083db61aea4213924714eab1fd292eb81600069be6946082995206739a8",
                "md5": "3ed5a2e2444647024e5c7df9fbe9dc4d",
                "sha256": "88f12e582432920a5a7f0f2d997916f15bbd2e98457faaaea651f8c42afbc1e4"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3ed5a2e2444647024e5c7df9fbe9dc4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 422688,
            "upload_time": "2025-01-01T10:23:05",
            "upload_time_iso_8601": "2025-01-01T10:23:05.465716Z",
            "url": "https://files.pythonhosted.org/packages/67/49/2083db61aea4213924714eab1fd292eb81600069be6946082995206739a8/astyle-3.6.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd21d36108bd8fdcf295a825a2cb0d182b1b2b4e31e94c8b5e2278862588f66f",
                "md5": "a37547d60540a75454d582e2329cebdd",
                "sha256": "070c62e3ee786ed3ddf9e538e4d09e3e4b6ddc6d97d4d882755928cb257ffce1"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a37547d60540a75454d582e2329cebdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 442469,
            "upload_time": "2025-01-01T10:23:06",
            "upload_time_iso_8601": "2025-01-01T10:23:06.620494Z",
            "url": "https://files.pythonhosted.org/packages/dd/21/d36108bd8fdcf295a825a2cb0d182b1b2b4e31e94c8b5e2278862588f66f/astyle-3.6.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b00a2f22a9edd513e6be496b3a2460a28f0b2820cdb2b5f5d47fc13a6fc82151",
                "md5": "bcabf36584e54f1e5962a410db103a32",
                "sha256": "a76d42216cd87c356f4afd29fb555218ab123deed681b4ba7c1b6dad2f051fd5"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bcabf36584e54f1e5962a410db103a32",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 398944,
            "upload_time": "2025-01-01T10:23:07",
            "upload_time_iso_8601": "2025-01-01T10:23:07.879996Z",
            "url": "https://files.pythonhosted.org/packages/b0/0a/2f22a9edd513e6be496b3a2460a28f0b2820cdb2b5f5d47fc13a6fc82151/astyle-3.6.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73e29576dfe40cc5ecc12d78c13889e12dbf19a979d7033fc3f0a4d6575b8550",
                "md5": "ac9ab4e90efbe82a8c375e3ab7e1fc33",
                "sha256": "584c4c79a8e4602a92b2815120db1ecf503f12c0369c865e2559e64fd1cee18c"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac9ab4e90efbe82a8c375e3ab7e1fc33",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 396253,
            "upload_time": "2025-01-01T10:23:11",
            "upload_time_iso_8601": "2025-01-01T10:23:11.703552Z",
            "url": "https://files.pythonhosted.org/packages/73/e2/9576dfe40cc5ecc12d78c13889e12dbf19a979d7033fc3f0a4d6575b8550/astyle-3.6.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da8d6f3268f3c30459c467fe47fd9fb99e128c212cb749a823d7ce9720ccf2d1",
                "md5": "66886f870d702df256af2cf11c6b5b52",
                "sha256": "9cada6417f8f787162db470567a799b009adb9ef1fda5212e23a9d8ea21afe7b"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "66886f870d702df256af2cf11c6b5b52",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 1302861,
            "upload_time": "2025-01-01T10:23:12",
            "upload_time_iso_8601": "2025-01-01T10:23:12.842049Z",
            "url": "https://files.pythonhosted.org/packages/da/8d/6f3268f3c30459c467fe47fd9fb99e128c212cb749a823d7ce9720ccf2d1/astyle-3.6.6-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7afc56c29578bb4910a56248fa267bd1aba0491f7084f5cd5d1faf87b041243",
                "md5": "90e5ac39a9ddef2f45211d1cde0c0155",
                "sha256": "c2385065055e59f2df1b00b438cec48a322fcd2d1a82fbc340fbfbb432a9f272"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "90e5ac39a9ddef2f45211d1cde0c0155",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 1483636,
            "upload_time": "2025-01-01T10:23:15",
            "upload_time_iso_8601": "2025-01-01T10:23:15.568175Z",
            "url": "https://files.pythonhosted.org/packages/a7/af/c56c29578bb4910a56248fa267bd1aba0491f7084f5cd5d1faf87b041243/astyle-3.6.6-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "760150c85e48ded6c57025a0bf387ac1a7358974f1a8a138e9ba2ee2926fc1ad",
                "md5": "28eb204894ba89d401692e655cb55a6b",
                "sha256": "914fad4162e5f3944ff6910da7b507a440305443194cd01ad4ea20948328ea01"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "28eb204894ba89d401692e655cb55a6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 1366196,
            "upload_time": "2025-01-01T10:23:18",
            "upload_time_iso_8601": "2025-01-01T10:23:18.260704Z",
            "url": "https://files.pythonhosted.org/packages/76/01/50c85e48ded6c57025a0bf387ac1a7358974f1a8a138e9ba2ee2926fc1ad/astyle-3.6.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "143b8bcbb8bce23e90c13d0736242f2674d61484e9e64257d95e0382a4e2ef20",
                "md5": "5574e53c5983dd55313fc7136c57aef4",
                "sha256": "93491813d5fca44c13fb65e907a7a5544056b44c1903407f9eb62a6632493918"
            },
            "downloads": -1,
            "filename": "astyle-3.6.6.tar.gz",
            "has_sig": false,
            "md5_digest": "5574e53c5983dd55313fc7136c57aef4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 4944,
            "upload_time": "2025-01-01T10:23:19",
            "upload_time_iso_8601": "2025-01-01T10:23:19.514962Z",
            "url": "https://files.pythonhosted.org/packages/14/3b/8bcbb8bce23e90c13d0736242f2674d61484e9e64257d95e0382a4e2ef20/astyle-3.6.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-01 10:23:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Freed-Wu",
    "github_project": "astyle-wheel",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "astyle"
}
        
Elapsed time: 0.69005s