reclass-rs


Namereclass-rs JSON
Version 0.6.0 PyPI version JSON
download
home_pageNone
SummaryReclass defines a syntax and directory structure for recursively merging YAML data sources.
upload_time2025-01-16 09:49:12
maintainerNone
docs_urlNone
authorVSHN AG <info@vshn.ch>
requires_python>=3.9
licenseBSD-3-Clause
keywords yaml reclass hierarchical config
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # reclass-rs: A Reclass implementation in Rust

Reclass is a library which defines a syntax and directory structure for recursively merging YAML data sources.

This repository contains a Rust implementation of Reclass which is based on the [Reclass fork](https://github.com/kapicorp/reclass) maintained by [kapicorp](https://github.com/kapicorp/).
The Reclass implementation provided in this repository can be used both from other Rust programs and in Python programs.
The `reclass-rs` Python module is implemented directly in Rust with [PyO3](https://pyo3.rs/latest/).

Please note that this implementation doesn't yet support all the features and extensions which are available in Kapitan Reclass.
However, for features which are implemented, we aim to be compatible with Kapitan Reclass.

The implementation currently supports the following features of Kapicorp Reclass:

* The Reclass options `nodes_path` and `classes_path`
* The Reclass option `ignore_class_notfound`
* The Reclass option `ignore_class_notfound_regexp`
* Escaped parameter references
* Merging referenced lists and dictionaries
* Constant parameters
* Nested references
* References in class names
* Loading classes with relative names
* Loading Reclass configuration options from `reclass-config.yaml`
* The Reclass option `componse_node_name`
  * reclass-rs provides a non-compatible mode for `compose_node_name` which preserves literal dots in node names

The following Kapicorp Reclass features aren't supported:

* Ignoring overwritten missing references
* Inventory Queries
* The Reclass option `allow_none_override` can't be set to `False`
* The Reclass `yaml_git` and `mixed` storage types
* Any Reclass option which is not mentioned explicitly here or above

Documentation for the original Reclass can be found at https://reclass.pantsfullofunix.net/.
Documentation on Reclass extensions introduced in the Kapicorp Reclass fork can be found at https://github.com/kapicorp/reclass/blob/develop/README-extensions.rst.

## Prerequisites

* Python >= 3.8
* Rust >= 1.56 (we recommend installing the latest stable toolchain with [rustup])

## Setup local development environment for Python bindings

1. Create a local virtualenv for running Python tests and install [maturin] and pytest

```
python -m venv .venv
source .venv/bin/activate
pip install maturin pytest
```

2. Build the reclass-rs Python library and install it in the virtualenv

```
maturin develop
```

3. Run Python tests

```
pytest
```

## Rust development

You should be able to run the Rust tests through Cargo if you have the Rust toolchain setup:

```
cargo test
```

### Linting and formatting

* Use `cargo fmt` to format code
* Use `cargo check` for checking that the code compiles
* Use `cargo clippy` to check for code issues

### Benchmarks

You can run benchmarks for `Reclass::render_inventory()` with

```
cargo bench -F bench
```

The benchmarks are implemented with `criterion`.

## Testing reclass-rs in Kapitan


If you're using [Kapitan], you can test reclass-rs by installing `reclass-rs` in your Kapitan virtualenv:

1. Install `reclass-rs` in your Kapitan virtualenv

```
KAPITAN_VENV=/path/to/your/kapitan/virtualenv
source ${KAPITAN_VENV}/bin/activate
pip install reclass-rs
```

2. Patch the Kapitan package in the virtualenv with the following command

```
patch -p1 -d $KAPITAN_VENV < hack/kapitan_0.32_reclass_rs.patch
```

Please note that we've only tested the patch against the Kapitan 0.32 release as published on PyPI.

## Automated package version management

We generate the package version of `reclass-rs` from the latest Git tag when building Python wheels.
To ensure this always works, we keep the version in the committed `Cargo.toml` as `0.0.0`.

We generate the package version from Git by calling `git describe --tags --always --match=v*`.
This command produces something like `v0.1.1-61-g531ca91`.
We always strip the leading `v`, since neither Cargo nor maturin support versions with leading `v`.
If we're building a branch or PR, we discard the component derived from the commit hash.
For the example output above, the package version for a branch or PR build will become `0.1.1.post61`.
For tag builds, the command ouptut will be just the tag, so the package version will match the tag.

The version is injected with [cargo-edit]'s `cargo set-version` before the Python wheels are built.

See the ["Python" workflow](./.github/workflows/python.yml) for more details.

[rustup]: https://rustup.rs/
[maturin]: https://github.com/PyO3/maturin
[Kapitan]: https://kapitan.dev
[cargo-edit]: https://github.com/killercup/cargo-edit


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "reclass-rs",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "yaml, reclass, hierarchical config",
    "author": "VSHN AG <info@vshn.ch>",
    "author_email": "VSHN AG <info@vshn.ch>",
    "download_url": "https://files.pythonhosted.org/packages/b2/1c/935044a723a1d89661c799eaf83b06c5f667ed0aabac83e85b6a0a279af9/reclass_rs-0.6.0.tar.gz",
    "platform": null,
    "description": "# reclass-rs: A Reclass implementation in Rust\n\nReclass is a library which defines a syntax and directory structure for recursively merging YAML data sources.\n\nThis repository contains a Rust implementation of Reclass which is based on the [Reclass fork](https://github.com/kapicorp/reclass) maintained by [kapicorp](https://github.com/kapicorp/).\nThe Reclass implementation provided in this repository can be used both from other Rust programs and in Python programs.\nThe `reclass-rs` Python module is implemented directly in Rust with [PyO3](https://pyo3.rs/latest/).\n\nPlease note that this implementation doesn't yet support all the features and extensions which are available in Kapitan Reclass.\nHowever, for features which are implemented, we aim to be compatible with Kapitan Reclass.\n\nThe implementation currently supports the following features of Kapicorp Reclass:\n\n* The Reclass options `nodes_path` and `classes_path`\n* The Reclass option `ignore_class_notfound`\n* The Reclass option `ignore_class_notfound_regexp`\n* Escaped parameter references\n* Merging referenced lists and dictionaries\n* Constant parameters\n* Nested references\n* References in class names\n* Loading classes with relative names\n* Loading Reclass configuration options from `reclass-config.yaml`\n* The Reclass option `componse_node_name`\n  * reclass-rs provides a non-compatible mode for `compose_node_name` which preserves literal dots in node names\n\nThe following Kapicorp Reclass features aren't supported:\n\n* Ignoring overwritten missing references\n* Inventory Queries\n* The Reclass option `allow_none_override` can't be set to `False`\n* The Reclass `yaml_git` and `mixed` storage types\n* Any Reclass option which is not mentioned explicitly here or above\n\nDocumentation for the original Reclass can be found at https://reclass.pantsfullofunix.net/.\nDocumentation on Reclass extensions introduced in the Kapicorp Reclass fork can be found at https://github.com/kapicorp/reclass/blob/develop/README-extensions.rst.\n\n## Prerequisites\n\n* Python >= 3.8\n* Rust >= 1.56 (we recommend installing the latest stable toolchain with [rustup])\n\n## Setup local development environment for Python bindings\n\n1. Create a local virtualenv for running Python tests and install [maturin] and pytest\n\n```\npython -m venv .venv\nsource .venv/bin/activate\npip install maturin pytest\n```\n\n2. Build the reclass-rs Python library and install it in the virtualenv\n\n```\nmaturin develop\n```\n\n3. Run Python tests\n\n```\npytest\n```\n\n## Rust development\n\nYou should be able to run the Rust tests through Cargo if you have the Rust toolchain setup:\n\n```\ncargo test\n```\n\n### Linting and formatting\n\n* Use `cargo fmt` to format code\n* Use `cargo check` for checking that the code compiles\n* Use `cargo clippy` to check for code issues\n\n### Benchmarks\n\nYou can run benchmarks for `Reclass::render_inventory()` with\n\n```\ncargo bench -F bench\n```\n\nThe benchmarks are implemented with `criterion`.\n\n## Testing reclass-rs in Kapitan\n\n\nIf you're using [Kapitan], you can test reclass-rs by installing `reclass-rs` in your Kapitan virtualenv:\n\n1. Install `reclass-rs` in your Kapitan virtualenv\n\n```\nKAPITAN_VENV=/path/to/your/kapitan/virtualenv\nsource ${KAPITAN_VENV}/bin/activate\npip install reclass-rs\n```\n\n2. Patch the Kapitan package in the virtualenv with the following command\n\n```\npatch -p1 -d $KAPITAN_VENV < hack/kapitan_0.32_reclass_rs.patch\n```\n\nPlease note that we've only tested the patch against the Kapitan 0.32 release as published on PyPI.\n\n## Automated package version management\n\nWe generate the package version of `reclass-rs` from the latest Git tag when building Python wheels.\nTo ensure this always works, we keep the version in the committed `Cargo.toml` as `0.0.0`.\n\nWe generate the package version from Git by calling `git describe --tags --always --match=v*`.\nThis command produces something like `v0.1.1-61-g531ca91`.\nWe always strip the leading `v`, since neither Cargo nor maturin support versions with leading `v`.\nIf we're building a branch or PR, we discard the component derived from the commit hash.\nFor the example output above, the package version for a branch or PR build will become `0.1.1.post61`.\nFor tag builds, the command ouptut will be just the tag, so the package version will match the tag.\n\nThe version is injected with [cargo-edit]'s `cargo set-version` before the Python wheels are built.\n\nSee the [\"Python\" workflow](./.github/workflows/python.yml) for more details.\n\n[rustup]: https://rustup.rs/\n[maturin]: https://github.com/PyO3/maturin\n[Kapitan]: https://kapitan.dev\n[cargo-edit]: https://github.com/killercup/cargo-edit\n\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Reclass defines a syntax and directory structure for recursively merging YAML data sources.",
    "version": "0.6.0",
    "project_urls": {
        "Source Code": "https://github.com/projectsyn/reclass-rs"
    },
    "split_keywords": [
        "yaml",
        " reclass",
        " hierarchical config"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06715a274670f0aa8d1a68960217224b89839f2c2f306d3729f188d417705fd8",
                "md5": "ff5deee10b948648746dcc33daa20f9b",
                "sha256": "d025c92bffc09d893397301f3d31507a654a0e336d560f268e0fe668d691e676"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ff5deee10b948648746dcc33daa20f9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1514949,
            "upload_time": "2025-01-16T09:46:29",
            "upload_time_iso_8601": "2025-01-16T09:46:29.504294Z",
            "url": "https://files.pythonhosted.org/packages/06/71/5a274670f0aa8d1a68960217224b89839f2c2f306d3729f188d417705fd8/reclass_rs-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "faca7c1153a55d9f58d28078cc2e4ceec88c200025a0f809f364c27a701fe8cf",
                "md5": "9d7dcdf932def0dfdc5e58473dcd5cab",
                "sha256": "22d3196369687c689067c2cc7ef10fcda256a21bdfbabdf2fa9071ac759ac3b0"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9d7dcdf932def0dfdc5e58473dcd5cab",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1481247,
            "upload_time": "2025-01-16T09:46:46",
            "upload_time_iso_8601": "2025-01-16T09:46:46.998642Z",
            "url": "https://files.pythonhosted.org/packages/fa/ca/7c1153a55d9f58d28078cc2e4ceec88c200025a0f809f364c27a701fe8cf/reclass_rs-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "abf7adebf6c79bb1c58c58f7c4a106971afa788d13c039610c02215baf97f8ec",
                "md5": "9c2179df678b258b5e88383ff74e5c63",
                "sha256": "0e88b4d42049642a8e7ece15a8660b886614262cd6ef2cdf12215a01c49a7fe0"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9c2179df678b258b5e88383ff74e5c63",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1622361,
            "upload_time": "2025-01-16T09:47:29",
            "upload_time_iso_8601": "2025-01-16T09:47:29.998667Z",
            "url": "https://files.pythonhosted.org/packages/ab/f7/adebf6c79bb1c58c58f7c4a106971afa788d13c039610c02215baf97f8ec/reclass_rs-0.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e57780ad2d188ebb9237b863110e966b08021da34acca37f9bac99b11dda0e4c",
                "md5": "5969c13c1cf850b426a713be7d06c20c",
                "sha256": "42ac95d8df3b821bfb4a243e1c5ca8f5458d80fab925e61ed1e842a2b9e7b86e"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5969c13c1cf850b426a713be7d06c20c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1645377,
            "upload_time": "2025-01-16T09:47:01",
            "upload_time_iso_8601": "2025-01-16T09:47:01.844232Z",
            "url": "https://files.pythonhosted.org/packages/e5/77/80ad2d188ebb9237b863110e966b08021da34acca37f9bac99b11dda0e4c/reclass_rs-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca4e0aab84739a979318c2d8becd23601a73010eaa0d4fc14618146a27c28ed7",
                "md5": "b1dc4d8f98d8a537c3cc53714c91b677",
                "sha256": "0a34d3301d24dd6b48c141aafdf6a882cdde50427861ccb38e9f84be31b2b0a7"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b1dc4d8f98d8a537c3cc53714c91b677",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1763228,
            "upload_time": "2025-01-16T09:47:15",
            "upload_time_iso_8601": "2025-01-16T09:47:15.313181Z",
            "url": "https://files.pythonhosted.org/packages/ca/4e/0aab84739a979318c2d8becd23601a73010eaa0d4fc14618146a27c28ed7/reclass_rs-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9be03f73246f0d4753b92d0bae713fc505422dbe2235a6537eb4dbed66dfdab6",
                "md5": "7a6dded5d31921bca182ecafb398e2fe",
                "sha256": "b587c084db9380aa34586a29567947bc2e0359f0bd74c57b0f0230de00789f14"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a6dded5d31921bca182ecafb398e2fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1577413,
            "upload_time": "2025-01-16T09:47:41",
            "upload_time_iso_8601": "2025-01-16T09:47:41.020917Z",
            "url": "https://files.pythonhosted.org/packages/9b/e0/3f73246f0d4753b92d0bae713fc505422dbe2235a6537eb4dbed66dfdab6/reclass_rs-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "028fda2a7c78fb82f5d26f08d618855506b301f0d021707f3b61cb4350a0d61a",
                "md5": "5ae7f0de4c9e65a2e9cd8aa89ff7c290",
                "sha256": "82aca2da90703fa2869b2a3c6a9725bf90465e2a635e0eec38552ed40a275808"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5ae7f0de4c9e65a2e9cd8aa89ff7c290",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1663698,
            "upload_time": "2025-01-16T09:48:04",
            "upload_time_iso_8601": "2025-01-16T09:48:04.739574Z",
            "url": "https://files.pythonhosted.org/packages/02/8f/da2a7c78fb82f5d26f08d618855506b301f0d021707f3b61cb4350a0d61a/reclass_rs-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73f76b4b520b0a1229bf09c3208ae006eb50de74176244da0c0e3b8b94441bb5",
                "md5": "cb2619ade4cbc92247efb98712b576e3",
                "sha256": "2c8b1e64f80babc324a6c188216d91f5fd099a75d232aaf2c29c71a1c3e4506f"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cb2619ade4cbc92247efb98712b576e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1723482,
            "upload_time": "2025-01-16T09:48:19",
            "upload_time_iso_8601": "2025-01-16T09:48:19.021629Z",
            "url": "https://files.pythonhosted.org/packages/73/f7/6b4b520b0a1229bf09c3208ae006eb50de74176244da0c0e3b8b94441bb5/reclass_rs-0.6.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1087fb1fe354665c87cb56f17f4a83786de34adc40d4a783ce9b68f47f58db25",
                "md5": "dff936a40bad792a41d4b9db43c74e19",
                "sha256": "d74fe17bd0dc09ccbfff2a021ab0c7f60ed1fccd37fbf045e19e38b0a131d47a"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "dff936a40bad792a41d4b9db43c74e19",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1708739,
            "upload_time": "2025-01-16T09:48:34",
            "upload_time_iso_8601": "2025-01-16T09:48:34.381738Z",
            "url": "https://files.pythonhosted.org/packages/10/87/fb1fe354665c87cb56f17f4a83786de34adc40d4a783ce9b68f47f58db25/reclass_rs-0.6.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b4fd6567769bc115f40dd31d0e2e9497a85e23257bd076b87f1536b33962372",
                "md5": "0679bf452d981effc0ea7137bb32ae18",
                "sha256": "304086881a9be6cf10116dff91311dbe65635f53540ed2b4d0e557f0e3f75736"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0679bf452d981effc0ea7137bb32ae18",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1727493,
            "upload_time": "2025-01-16T09:48:50",
            "upload_time_iso_8601": "2025-01-16T09:48:50.064555Z",
            "url": "https://files.pythonhosted.org/packages/9b/4f/d6567769bc115f40dd31d0e2e9497a85e23257bd076b87f1536b33962372/reclass_rs-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9765f9e7961e7fd0ef5a35995d27a1186cd04a8d094cc08d5e0b7488b22dc25",
                "md5": "658848448c5e6c79186525e9e8bcb837",
                "sha256": "56e5b837fe82760ec3dfbb4796c9fe6a889110371fcc2c19b54ea91f38a2ab04"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "658848448c5e6c79186525e9e8bcb837",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1088194,
            "upload_time": "2025-01-16T09:49:23",
            "upload_time_iso_8601": "2025-01-16T09:49:23.061915Z",
            "url": "https://files.pythonhosted.org/packages/b9/76/5f9e7961e7fd0ef5a35995d27a1186cd04a8d094cc08d5e0b7488b22dc25/reclass_rs-0.6.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a44d20af99e800fc84f2bc31b750aa14e359281e0393b735092f4342455c7464",
                "md5": "a3af305e72c5d905345d94447129a61d",
                "sha256": "ebe49d3a7d8ca4c318cd2b6940884455a26b557bcf0d8113180275d293021647"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a3af305e72c5d905345d94447129a61d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1170147,
            "upload_time": "2025-01-16T09:49:16",
            "upload_time_iso_8601": "2025-01-16T09:49:16.101516Z",
            "url": "https://files.pythonhosted.org/packages/a4/4d/20af99e800fc84f2bc31b750aa14e359281e0393b735092f4342455c7464/reclass_rs-0.6.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1fc53d6210a623af86bf8bf77492904115beab6c979211abcaeceddeec319aec",
                "md5": "c51d958f9d92c056418d51bbf1405009",
                "sha256": "026aff8c9ed51f4a2aa68e74cacf26d5a47ed8a610ca9157ef1ae3e243a257a2"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c51d958f9d92c056418d51bbf1405009",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1391700,
            "upload_time": "2025-01-16T09:47:59",
            "upload_time_iso_8601": "2025-01-16T09:47:59.379273Z",
            "url": "https://files.pythonhosted.org/packages/1f/c5/3d6210a623af86bf8bf77492904115beab6c979211abcaeceddeec319aec/reclass_rs-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69953cd3ec28f5e7e99c820817c0ffb758fdb85ad719eabcec49bb5c478c8a45",
                "md5": "3bc49870cf893a5736e6d799856328af",
                "sha256": "e244eec3892cb449afcc7952df27892a814ba9816aa6777e2a041f32c20375c3"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3bc49870cf893a5736e6d799856328af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1312821,
            "upload_time": "2025-01-16T09:47:55",
            "upload_time_iso_8601": "2025-01-16T09:47:55.111407Z",
            "url": "https://files.pythonhosted.org/packages/69/95/3cd3ec28f5e7e99c820817c0ffb758fdb85ad719eabcec49bb5c478c8a45/reclass_rs-0.6.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55a710c80264ee5389b0e1eda471c5e9a3811c78b3e99aa518a5a7065a6e4f96",
                "md5": "9991dc418182bd0821c7f2759a608b1b",
                "sha256": "f519f46954e0f7b580b63812201446f015a8026419289b6ff148b8d1bf4a163a"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9991dc418182bd0821c7f2759a608b1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1514856,
            "upload_time": "2025-01-16T09:46:32",
            "upload_time_iso_8601": "2025-01-16T09:46:32.611484Z",
            "url": "https://files.pythonhosted.org/packages/55/a7/10c80264ee5389b0e1eda471c5e9a3811c78b3e99aa518a5a7065a6e4f96/reclass_rs-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45af348f7bd115c007fa6f68617e55cd5c5f452b9439b959ca05ca33e8047dbf",
                "md5": "cc22bb00c86c63769b9bfbf058b924d0",
                "sha256": "7d3992c580429ccc0bcab430c31b6ffb6a69106b320a731e4883ec9b005a740a"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cc22bb00c86c63769b9bfbf058b924d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1481273,
            "upload_time": "2025-01-16T09:46:48",
            "upload_time_iso_8601": "2025-01-16T09:46:48.618231Z",
            "url": "https://files.pythonhosted.org/packages/45/af/348f7bd115c007fa6f68617e55cd5c5f452b9439b959ca05ca33e8047dbf/reclass_rs-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "10ee660b48e5558db2d605029e4da0a7d59d7f65e2f5515f88127f287d3a1e0a",
                "md5": "1e3b6783105fe4985022286add086381",
                "sha256": "b52038d6361fd8211d5d43f245b2176fbd1f115503c5ba6903e5a2976098e3cb"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1e3b6783105fe4985022286add086381",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1624119,
            "upload_time": "2025-01-16T09:47:33",
            "upload_time_iso_8601": "2025-01-16T09:47:33.217248Z",
            "url": "https://files.pythonhosted.org/packages/10/ee/660b48e5558db2d605029e4da0a7d59d7f65e2f5515f88127f287d3a1e0a/reclass_rs-0.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "536b58bcc1b2eaea84010f4ee993502c4151a58b71a1c54eba98fa4bb8be02f3",
                "md5": "001f7e8afe8cfe628a26df5141ce6dc3",
                "sha256": "c726dba36fd136144021c2064cd6f638f735aefa67ca6b4e288f86f86d03ea9c"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "001f7e8afe8cfe628a26df5141ce6dc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1645853,
            "upload_time": "2025-01-16T09:47:03",
            "upload_time_iso_8601": "2025-01-16T09:47:03.197709Z",
            "url": "https://files.pythonhosted.org/packages/53/6b/58bcc1b2eaea84010f4ee993502c4151a58b71a1c54eba98fa4bb8be02f3/reclass_rs-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7edcec8cd871711ac1a80f3a650601cab531bd4218da0b1e4370ae1b5c987517",
                "md5": "b27d5180ce166591de5361f1350bbe28",
                "sha256": "cac1f795fc0fb2c089af1de215e976e4bf72430b36b94e8fa20ccedabbdc6cf7"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b27d5180ce166591de5361f1350bbe28",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1762135,
            "upload_time": "2025-01-16T09:47:17",
            "upload_time_iso_8601": "2025-01-16T09:47:17.312027Z",
            "url": "https://files.pythonhosted.org/packages/7e/dc/ec8cd871711ac1a80f3a650601cab531bd4218da0b1e4370ae1b5c987517/reclass_rs-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "845a04ef11d3147af23610888d21ec73f1f863631373922d2de658b1f129bc33",
                "md5": "03099516bb654dc70d38d026c7d61ebe",
                "sha256": "1a15713497527c394c9b3827f7efd24bc8cad0041efb50e74336f2d70c9c9f47"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03099516bb654dc70d38d026c7d61ebe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1577208,
            "upload_time": "2025-01-16T09:47:43",
            "upload_time_iso_8601": "2025-01-16T09:47:43.212206Z",
            "url": "https://files.pythonhosted.org/packages/84/5a/04ef11d3147af23610888d21ec73f1f863631373922d2de658b1f129bc33/reclass_rs-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dcd38203ecb805300dab6cf5bbaaf4c87ff6caeb6f8c8ae805ec6faa1b6dba1a",
                "md5": "1ee5cdc413ace0fe8a427c1216692360",
                "sha256": "a4ad6d3f9ee271e80d9f14fe30bb63769eef8a8977ab32e3a2fc351507b849ff"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1ee5cdc413ace0fe8a427c1216692360",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1664675,
            "upload_time": "2025-01-16T09:48:06",
            "upload_time_iso_8601": "2025-01-16T09:48:06.513227Z",
            "url": "https://files.pythonhosted.org/packages/dc/d3/8203ecb805300dab6cf5bbaaf4c87ff6caeb6f8c8ae805ec6faa1b6dba1a/reclass_rs-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f90f39975f7bc7d8405ceec8c075b8c46d5353c7fd3a5f641ed6356de0782db3",
                "md5": "554e3b45045bddd174ade782ff18b8f1",
                "sha256": "09764ce8489acf034b11d83dcee62ab364435155e104963404cc1fc2594b44d0"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "554e3b45045bddd174ade782ff18b8f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1720747,
            "upload_time": "2025-01-16T09:48:21",
            "upload_time_iso_8601": "2025-01-16T09:48:21.518144Z",
            "url": "https://files.pythonhosted.org/packages/f9/0f/39975f7bc7d8405ceec8c075b8c46d5353c7fd3a5f641ed6356de0782db3/reclass_rs-0.6.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52f391cc59d7b1377ad6015566e3ed5b29eebd8e905062b1e9155748ca1cbd95",
                "md5": "6b0c7eb34c936bee24178113b7935cb4",
                "sha256": "a71e56944c5b1385cc2057d0e148419cedc53feda2daff46ccb99e97c3171c15"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6b0c7eb34c936bee24178113b7935cb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1709755,
            "upload_time": "2025-01-16T09:48:36",
            "upload_time_iso_8601": "2025-01-16T09:48:36.297779Z",
            "url": "https://files.pythonhosted.org/packages/52/f3/91cc59d7b1377ad6015566e3ed5b29eebd8e905062b1e9155748ca1cbd95/reclass_rs-0.6.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d84261d9a958b2644480097139a079d5d93e6459b4f783ad92c8027c2fb2fddc",
                "md5": "9e8289505e71f8e8fab479841983bbf8",
                "sha256": "dc1d0813b8cdfeeddeee8dd0b578e3f84528ef93ca08e32a5ea7a9308818230d"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e8289505e71f8e8fab479841983bbf8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1727585,
            "upload_time": "2025-01-16T09:48:52",
            "upload_time_iso_8601": "2025-01-16T09:48:52.702196Z",
            "url": "https://files.pythonhosted.org/packages/d8/42/61d9a958b2644480097139a079d5d93e6459b4f783ad92c8027c2fb2fddc/reclass_rs-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92c71eccca20f3be35304281e8b64609cf2a28a59f46f4f65c506ccbdc3fca08",
                "md5": "0de1abc84e9ff006bc3d16508be037b4",
                "sha256": "aa320cc76d3b1dd7097ab5862979e0b898eb9df22802bf1cd2da816c92e7e2d7"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "0de1abc84e9ff006bc3d16508be037b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1088426,
            "upload_time": "2025-01-16T09:49:24",
            "upload_time_iso_8601": "2025-01-16T09:49:24.889707Z",
            "url": "https://files.pythonhosted.org/packages/92/c7/1eccca20f3be35304281e8b64609cf2a28a59f46f4f65c506ccbdc3fca08/reclass_rs-0.6.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "242a48ee2e9d6128183e1736d168ad88da9d70c90b68424209dc24483f6c92e1",
                "md5": "c8de3e6f82095ba852215435465711eb",
                "sha256": "ffbe15ffa6f5edcae422553d2df0aa6ae4a304722b0bdd309ecf8f8c9ab7d8ae"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c8de3e6f82095ba852215435465711eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1170320,
            "upload_time": "2025-01-16T09:49:17",
            "upload_time_iso_8601": "2025-01-16T09:49:17.595022Z",
            "url": "https://files.pythonhosted.org/packages/24/2a/48ee2e9d6128183e1736d168ad88da9d70c90b68424209dc24483f6c92e1/reclass_rs-0.6.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b9c0e569be59fec98febd90cda1cef0688e271a362e9d188738c388db71434c",
                "md5": "f8a7e29a2581b6c4728814d7daeb5d1d",
                "sha256": "05f9be87d6aa99bc32f4a68051359f8976385e3ac9b3a5ec95bdbd3804e1f0d0"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8a7e29a2581b6c4728814d7daeb5d1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1384652,
            "upload_time": "2025-01-16T09:48:00",
            "upload_time_iso_8601": "2025-01-16T09:48:00.833959Z",
            "url": "https://files.pythonhosted.org/packages/3b/9c/0e569be59fec98febd90cda1cef0688e271a362e9d188738c388db71434c/reclass_rs-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46de02be02eeedbd11aa253b3fbdb360e5b4ce29cceeb238d82eeefc5aa875d4",
                "md5": "13510637461b6ebb780600ebe71ff267",
                "sha256": "0ce53491f708e8b09466b45a346b244224daf0531495f13b49d010c0b9362651"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "13510637461b6ebb780600ebe71ff267",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1309449,
            "upload_time": "2025-01-16T09:47:56",
            "upload_time_iso_8601": "2025-01-16T09:47:56.540041Z",
            "url": "https://files.pythonhosted.org/packages/46/de/02be02eeedbd11aa253b3fbdb360e5b4ce29cceeb238d82eeefc5aa875d4/reclass_rs-0.6.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "095b219ffe068728fad9552201d84e5bbdfa6cdc6e991bb929a1830122a13082",
                "md5": "d845b226d60a62c9edbf48e53e8f0d3f",
                "sha256": "6d4bb9f87483df9938a54a8da11cfc4ade80494057f1f1ed6d43cf642e1bdb5b"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d845b226d60a62c9edbf48e53e8f0d3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1511322,
            "upload_time": "2025-01-16T09:46:34",
            "upload_time_iso_8601": "2025-01-16T09:46:34.377182Z",
            "url": "https://files.pythonhosted.org/packages/09/5b/219ffe068728fad9552201d84e5bbdfa6cdc6e991bb929a1830122a13082/reclass_rs-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9be458a781c51eadfdc7c072a48b517b87e1c98ab3787e301aff5459730a2db7",
                "md5": "3d4e50d45028dca1e4ed1ff51b1f6758",
                "sha256": "29d9cf1337b239ac8af2c45653fb83c85c87540baaee1cabbf80e9b5d768482d"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3d4e50d45028dca1e4ed1ff51b1f6758",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1480882,
            "upload_time": "2025-01-16T09:46:50",
            "upload_time_iso_8601": "2025-01-16T09:46:50.093617Z",
            "url": "https://files.pythonhosted.org/packages/9b/e4/58a781c51eadfdc7c072a48b517b87e1c98ab3787e301aff5459730a2db7/reclass_rs-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0456180ebe251e9baae43c736eb84bc1d71a03bb460595c5630174b2d3e6dd7c",
                "md5": "9489ee50bd0de34e20ab091efd382bda",
                "sha256": "fb4d1cffebb3a79ba9aa92357621f33c16ddcb4ed1e9d54c45260f4c02009570"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9489ee50bd0de34e20ab091efd382bda",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1623452,
            "upload_time": "2025-01-16T09:47:34",
            "upload_time_iso_8601": "2025-01-16T09:47:34.629375Z",
            "url": "https://files.pythonhosted.org/packages/04/56/180ebe251e9baae43c736eb84bc1d71a03bb460595c5630174b2d3e6dd7c/reclass_rs-0.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aceb40da248d46a976c23ef98b9634b342aabc2dc356f3b33ec66c424af4c8d4",
                "md5": "cca85bc64d6a04a6e9c9e250362ceb26",
                "sha256": "8fa8c48058a5fdaa8447f88eb7da6d2e1c5168579fcaaca43b1a9c8a124c3172"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "cca85bc64d6a04a6e9c9e250362ceb26",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1642833,
            "upload_time": "2025-01-16T09:47:04",
            "upload_time_iso_8601": "2025-01-16T09:47:04.660934Z",
            "url": "https://files.pythonhosted.org/packages/ac/eb/40da248d46a976c23ef98b9634b342aabc2dc356f3b33ec66c424af4c8d4/reclass_rs-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c69a6230c39b7b96b30a07c0ff7d908ca5c4759aa8ebf6fb09a05f464d93ea7f",
                "md5": "e3e2f5242e446e83287df9eb641a78a3",
                "sha256": "9774e76a21b670996437eecb4d4b59ccbbb0b4a5a0dc527ea2c5121f1bae9e8f"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e3e2f5242e446e83287df9eb641a78a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1756459,
            "upload_time": "2025-01-16T09:47:18",
            "upload_time_iso_8601": "2025-01-16T09:47:18.791505Z",
            "url": "https://files.pythonhosted.org/packages/c6/9a/6230c39b7b96b30a07c0ff7d908ca5c4759aa8ebf6fb09a05f464d93ea7f/reclass_rs-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20ba453077418a71f5cf6bb548ea83161ff68d59e11541866d8cb0ca920c79ad",
                "md5": "24629bf9038f21706445d0373d119cc7",
                "sha256": "b084ff6b4e0a04d265cba4d183bb6add2767e6b0384601f80e6d6a27f17c93f6"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24629bf9038f21706445d0373d119cc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1575714,
            "upload_time": "2025-01-16T09:47:44",
            "upload_time_iso_8601": "2025-01-16T09:47:44.795898Z",
            "url": "https://files.pythonhosted.org/packages/20/ba/453077418a71f5cf6bb548ea83161ff68d59e11541866d8cb0ca920c79ad/reclass_rs-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6abb44f356c2f1edfdbd53824d6c85fe0692895651fc5a22654f3030ce2a5a8",
                "md5": "088c1341e2679f2aff5c1e68a3f73cf8",
                "sha256": "03b6a4b675e93e785614862c4d52ca629a1e5e75ca9217ed4e66ae17c08e4aab"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "088c1341e2679f2aff5c1e68a3f73cf8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1662534,
            "upload_time": "2025-01-16T09:48:07",
            "upload_time_iso_8601": "2025-01-16T09:48:07.981067Z",
            "url": "https://files.pythonhosted.org/packages/e6/ab/b44f356c2f1edfdbd53824d6c85fe0692895651fc5a22654f3030ce2a5a8/reclass_rs-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84d49bd3da67ebad85fc74b22bb68c1d6a51b6fe3f792a3af0db5f4c5eb11cbb",
                "md5": "95c2a663e4351c4fda22aa7872538067",
                "sha256": "47feb9e6360456cf707c3da56cfb9ce668cfba89e01a31df351cec00c9d449cc"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "95c2a663e4351c4fda22aa7872538067",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1720060,
            "upload_time": "2025-01-16T09:48:24",
            "upload_time_iso_8601": "2025-01-16T09:48:24.200305Z",
            "url": "https://files.pythonhosted.org/packages/84/d4/9bd3da67ebad85fc74b22bb68c1d6a51b6fe3f792a3af0db5f4c5eb11cbb/reclass_rs-0.6.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e6905352623ebfd8527f30169938b99b49198f1069303f819bdf3153cfadd2f",
                "md5": "780ed347636308e457891a6b2b0c2200",
                "sha256": "c0870aaf9160dc365533696d3b939ae853c172cddabe8f2c8fcea8e9a244683d"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "780ed347636308e457891a6b2b0c2200",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1703912,
            "upload_time": "2025-01-16T09:48:39",
            "upload_time_iso_8601": "2025-01-16T09:48:39.734087Z",
            "url": "https://files.pythonhosted.org/packages/5e/69/05352623ebfd8527f30169938b99b49198f1069303f819bdf3153cfadd2f/reclass_rs-0.6.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "259faf672dbdc4a1360a128996ec38875e0f98de8f229fc047e30ae4427070c4",
                "md5": "67f7b9a2b5eade976f537ef2a0bb789e",
                "sha256": "394e2f068309af37c39f666d27691b89d09998bde216d78d64e49fcc263059da"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67f7b9a2b5eade976f537ef2a0bb789e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1724452,
            "upload_time": "2025-01-16T09:48:55",
            "upload_time_iso_8601": "2025-01-16T09:48:55.136966Z",
            "url": "https://files.pythonhosted.org/packages/25/9f/af672dbdc4a1360a128996ec38875e0f98de8f229fc047e30ae4427070c4/reclass_rs-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3fc215408c85fcee67723645ce2ce898ebdbcdd2afc0bf448f52336aef09bb1",
                "md5": "adaa4c93c89a591bf76ada9cac0a6a3c",
                "sha256": "abc8680ba1d81b088b08a6273855a9dec30f80a4ff807bdc63419740821cc827"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "adaa4c93c89a591bf76ada9cac0a6a3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1087333,
            "upload_time": "2025-01-16T09:49:26",
            "upload_time_iso_8601": "2025-01-16T09:49:26.311759Z",
            "url": "https://files.pythonhosted.org/packages/f3/fc/215408c85fcee67723645ce2ce898ebdbcdd2afc0bf448f52336aef09bb1/reclass_rs-0.6.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a66d67d3ba9491f2876261e142b3506ad7162d9d666b5e8d06cb113195e8fe1",
                "md5": "f21901fe9b01066885faecd0cef1e153",
                "sha256": "428dc699aa4b0a0e02e3da7bf322e471020b525c423362e62eb6fac6000f33a2"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f21901fe9b01066885faecd0cef1e153",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1166774,
            "upload_time": "2025-01-16T09:49:19",
            "upload_time_iso_8601": "2025-01-16T09:49:19.056429Z",
            "url": "https://files.pythonhosted.org/packages/5a/66/d67d3ba9491f2876261e142b3506ad7162d9d666b5e8d06cb113195e8fe1/reclass_rs-0.6.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2dc2df86b9a06712d6d35b8c8cac4afca3b39e9df56e54165d81660902febb6",
                "md5": "16935e258e9e2446cb5689fc19f63413",
                "sha256": "5f87c19b149605c17451fce7d6fdf0c65e807c05462b535caea17ad3f6ff60d6"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "16935e258e9e2446cb5689fc19f63413",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1383941,
            "upload_time": "2025-01-16T09:48:02",
            "upload_time_iso_8601": "2025-01-16T09:48:02.136690Z",
            "url": "https://files.pythonhosted.org/packages/b2/dc/2df86b9a06712d6d35b8c8cac4afca3b39e9df56e54165d81660902febb6/reclass_rs-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "25a8cc375168eb4973fe5434c2dcb19885c81f0e6551e5878859ba4f8f3b61ac",
                "md5": "f069d9c577041cd5a19d40ba4978f113",
                "sha256": "84527c13042bd260da534609e90c1cdfcfcafeacee6599442d3cb5e42989480c"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f069d9c577041cd5a19d40ba4978f113",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1308786,
            "upload_time": "2025-01-16T09:47:57",
            "upload_time_iso_8601": "2025-01-16T09:47:57.898185Z",
            "url": "https://files.pythonhosted.org/packages/25/a8/cc375168eb4973fe5434c2dcb19885c81f0e6551e5878859ba4f8f3b61ac/reclass_rs-0.6.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "584b6b3d35c57302f64a7cdd9517809d08a91b2afb83e8883a844cd117da9f8e",
                "md5": "afc2aed31fa38a8b54b21504684a1f16",
                "sha256": "a5938f8001ab2e80bf08a5d6e7eb238059e0ca46109ad76b4af5a90b03dac013"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "afc2aed31fa38a8b54b21504684a1f16",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1510625,
            "upload_time": "2025-01-16T09:46:35",
            "upload_time_iso_8601": "2025-01-16T09:46:35.866956Z",
            "url": "https://files.pythonhosted.org/packages/58/4b/6b3d35c57302f64a7cdd9517809d08a91b2afb83e8883a844cd117da9f8e/reclass_rs-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91b949c2eafe88bac342e631f3b747817bab137e62d05341a2c7297dc34d81a5",
                "md5": "f2acc69e7e86bd3e394e432f2db16b2c",
                "sha256": "23e9098826c517d0a6d5fd3bdc31b991f9c48610be3803d75f27e3ad9403f85c"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f2acc69e7e86bd3e394e432f2db16b2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1481146,
            "upload_time": "2025-01-16T09:46:52",
            "upload_time_iso_8601": "2025-01-16T09:46:52.660819Z",
            "url": "https://files.pythonhosted.org/packages/91/b9/49c2eafe88bac342e631f3b747817bab137e62d05341a2c7297dc34d81a5/reclass_rs-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e20247c31d1cd9c10bc55d98925b2468f2e8c73baf2d655d5d4ca67abf8a7609",
                "md5": "e5c478787243228f93858e76959fdd28",
                "sha256": "93fdaebbe7d1b7f53e8f99052ebf6c004a59230deee1cea2aaeddc7b2ecec5a1"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e5c478787243228f93858e76959fdd28",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1623083,
            "upload_time": "2025-01-16T09:47:36",
            "upload_time_iso_8601": "2025-01-16T09:47:36.418154Z",
            "url": "https://files.pythonhosted.org/packages/e2/02/47c31d1cd9c10bc55d98925b2468f2e8c73baf2d655d5d4ca67abf8a7609/reclass_rs-0.6.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9622d89e16bb07a9c57cabc75d22b0403918529ffe749d31290ec98ce3470f82",
                "md5": "fd7ce26081295b030ad3cb6ff8d9dac1",
                "sha256": "3f73e24e5a0466f784c700f66ed5eee50dcbaffbe1d39042cef33c901f79c609"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fd7ce26081295b030ad3cb6ff8d9dac1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1642525,
            "upload_time": "2025-01-16T09:47:06",
            "upload_time_iso_8601": "2025-01-16T09:47:06.610020Z",
            "url": "https://files.pythonhosted.org/packages/96/22/d89e16bb07a9c57cabc75d22b0403918529ffe749d31290ec98ce3470f82/reclass_rs-0.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0acc8a0675e4f9338e19eb6c6f775f24156722dd06e77dc8bce7b91f4184299",
                "md5": "40224da213500e329e49d30e6e8ad6b5",
                "sha256": "6a3cd22ef1bf7e8ae99e21a51fd9925f869e8359efc7a4e6a6accc07424a5848"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "40224da213500e329e49d30e6e8ad6b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1757758,
            "upload_time": "2025-01-16T09:47:20",
            "upload_time_iso_8601": "2025-01-16T09:47:20.164440Z",
            "url": "https://files.pythonhosted.org/packages/b0/ac/c8a0675e4f9338e19eb6c6f775f24156722dd06e77dc8bce7b91f4184299/reclass_rs-0.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c94f97f5a876ad27865c701e969b007343e48feef6c09075b4b4889acd8adf54",
                "md5": "37de2762bc0c1b90ff72931e68d1e7fb",
                "sha256": "17b7ef57cc02cf03476689d22ea9c3c55d0005161cbdf1136626d29bf52abcc6"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37de2762bc0c1b90ff72931e68d1e7fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1575231,
            "upload_time": "2025-01-16T09:47:47",
            "upload_time_iso_8601": "2025-01-16T09:47:47.400318Z",
            "url": "https://files.pythonhosted.org/packages/c9/4f/97f5a876ad27865c701e969b007343e48feef6c09075b4b4889acd8adf54/reclass_rs-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6304e5fbeb0c8b3428c535dad84dccedba48b8056ab159bd4156137587f822d3",
                "md5": "6443fe556b3fef3ff017c0c7f9942db6",
                "sha256": "a2f6f5f122d47a2c9bd35e245b9814b816eb08c22e4bd4ba6b38e28f26686286"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6443fe556b3fef3ff017c0c7f9942db6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1662267,
            "upload_time": "2025-01-16T09:48:09",
            "upload_time_iso_8601": "2025-01-16T09:48:09.380532Z",
            "url": "https://files.pythonhosted.org/packages/63/04/e5fbeb0c8b3428c535dad84dccedba48b8056ab159bd4156137587f822d3/reclass_rs-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "898ad16b7a0107b9947a22cf9f976927349530bc649c05723486f3d5f719ba8f",
                "md5": "5880cb67993a21e41fd4e064ceb86ec9",
                "sha256": "94e6b9b930c06014eafbeb047f8867522a218a69699c9c8ad4cf0fe43291dad6"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5880cb67993a21e41fd4e064ceb86ec9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1719241,
            "upload_time": "2025-01-16T09:48:25",
            "upload_time_iso_8601": "2025-01-16T09:48:25.742437Z",
            "url": "https://files.pythonhosted.org/packages/89/8a/d16b7a0107b9947a22cf9f976927349530bc649c05723486f3d5f719ba8f/reclass_rs-0.6.0-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20d3790edb97e3f5545d7a961d01da7707145c1334126119eaae59ecd0c0cdc5",
                "md5": "3c86019553b0aad531dcc4d8cc245f9b",
                "sha256": "e66857d88fd739c7e48f93e2c08d65197d86cd019529ea1883e46864dfa163ed"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3c86019553b0aad531dcc4d8cc245f9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1703541,
            "upload_time": "2025-01-16T09:48:41",
            "upload_time_iso_8601": "2025-01-16T09:48:41.238869Z",
            "url": "https://files.pythonhosted.org/packages/20/d3/790edb97e3f5545d7a961d01da7707145c1334126119eaae59ecd0c0cdc5/reclass_rs-0.6.0-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33e32c6e0eecba1ff6a89bc1847cf2909933e6b19e4e87ce80e769409455f0c5",
                "md5": "f20b9304b2518ec9c7256693a2b082d9",
                "sha256": "743d26ccde1563800c16f9f25624647c86b433382320d8849e5e7042dccefe67"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f20b9304b2518ec9c7256693a2b082d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1723842,
            "upload_time": "2025-01-16T09:48:56",
            "upload_time_iso_8601": "2025-01-16T09:48:56.589575Z",
            "url": "https://files.pythonhosted.org/packages/33/e3/2c6e0eecba1ff6a89bc1847cf2909933e6b19e4e87ce80e769409455f0c5/reclass_rs-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "422bb7c3e43be8f00acf02194cc521c7a4267621cca89f55f3b2a4991465f18e",
                "md5": "c01c1f6e3fc0a6755e3c54de2cfaf846",
                "sha256": "ecca5c181449cd40943d0c1a3c1a5fd135fb17236eb42e8cecc0a23b7763aa01"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c01c1f6e3fc0a6755e3c54de2cfaf846",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1511058,
            "upload_time": "2025-01-16T09:46:38",
            "upload_time_iso_8601": "2025-01-16T09:46:38.581716Z",
            "url": "https://files.pythonhosted.org/packages/42/2b/b7c3e43be8f00acf02194cc521c7a4267621cca89f55f3b2a4991465f18e/reclass_rs-0.6.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6aabd372d7e673f4e671ee7fa1bd1871fe02a66635f259de861b5fd613c85dac",
                "md5": "766b20ae8f1bbf970cf32b4a5262cc08",
                "sha256": "4fe2d90bd9ec676f1eaf5ddda19a1a69508da7e42a450e0aec43551863de0705"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "766b20ae8f1bbf970cf32b4a5262cc08",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1481474,
            "upload_time": "2025-01-16T09:46:54",
            "upload_time_iso_8601": "2025-01-16T09:46:54.177165Z",
            "url": "https://files.pythonhosted.org/packages/6a/ab/d372d7e673f4e671ee7fa1bd1871fe02a66635f259de861b5fd613c85dac/reclass_rs-0.6.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7123a60322e50c3cafcc5a8246c46f1cac40430b90756f1cc933021c233b1fd",
                "md5": "a937b8d6f0ab39239fdedc7315d991dc",
                "sha256": "29b9893c3b3bbe81810272c47c1a65911162b8ff9cd8ffd0ba8ce254c1367c4c"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a937b8d6f0ab39239fdedc7315d991dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1640636,
            "upload_time": "2025-01-16T09:47:08",
            "upload_time_iso_8601": "2025-01-16T09:47:08.000540Z",
            "url": "https://files.pythonhosted.org/packages/d7/12/3a60322e50c3cafcc5a8246c46f1cac40430b90756f1cc933021c233b1fd/reclass_rs-0.6.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "364cfc18f07f1533b42331d693e0ef87b422aa47cda90665f82ce761a43e668a",
                "md5": "cadbabe3f6a18f30216eaa6f4a6e7c61",
                "sha256": "bc576ff0aa4370877b1cef716fe74a0abad98c9340d4c0ed8c2449c21da41552"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "cadbabe3f6a18f30216eaa6f4a6e7c61",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1753318,
            "upload_time": "2025-01-16T09:47:21",
            "upload_time_iso_8601": "2025-01-16T09:47:21.543105Z",
            "url": "https://files.pythonhosted.org/packages/36/4c/fc18f07f1533b42331d693e0ef87b422aa47cda90665f82ce761a43e668a/reclass_rs-0.6.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f430673c48ac9f433cc7798d17732b6740e31006647efed36f5618e58316f9b4",
                "md5": "ff0fff33ba5c24e80699abf0a6248ad1",
                "sha256": "0d57aafc832fbd354eeb22c43f0ed069574851b57c56b8a605989bc7629da1aa"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ff0fff33ba5c24e80699abf0a6248ad1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1660271,
            "upload_time": "2025-01-16T09:48:10",
            "upload_time_iso_8601": "2025-01-16T09:48:10.979038Z",
            "url": "https://files.pythonhosted.org/packages/f4/30/673c48ac9f433cc7798d17732b6740e31006647efed36f5618e58316f9b4/reclass_rs-0.6.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "179477fdb5186867ed0409f2c543b947a2812851a4785358621b4d923672badf",
                "md5": "4a73dd38eb494c513c6d2953358cbffc",
                "sha256": "80f3845855183005a8c004c3f6efa8c1248cf705455677fe24755633e8cded75"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4a73dd38eb494c513c6d2953358cbffc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1716360,
            "upload_time": "2025-01-16T09:48:27",
            "upload_time_iso_8601": "2025-01-16T09:48:27.385683Z",
            "url": "https://files.pythonhosted.org/packages/17/94/77fdb5186867ed0409f2c543b947a2812851a4785358621b4d923672badf/reclass_rs-0.6.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3af87168f9ab96261ae5ae4f51578cab1c469f2dc53a5f02f1d3c8d71bc4474b",
                "md5": "e10959ed1efdd89c5f20aaa4575c9232",
                "sha256": "9eaeb6bda36fcfd8bec6e514377ca87dcdccfc1832e8df1a00369a90511e450d"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e10959ed1efdd89c5f20aaa4575c9232",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1707181,
            "upload_time": "2025-01-16T09:48:42",
            "upload_time_iso_8601": "2025-01-16T09:48:42.899534Z",
            "url": "https://files.pythonhosted.org/packages/3a/f8/7168f9ab96261ae5ae4f51578cab1c469f2dc53a5f02f1d3c8d71bc4474b/reclass_rs-0.6.0-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73a6d09996e85c10f23642a7d1f537bf637d6d2c48c10888c1cd84c08f3012d9",
                "md5": "8ea202a7492d5bb9c8f3506fb5c98fde",
                "sha256": "80142091554bde25cb0a3f0244a21ef4d958a45e83599b5ebe02dffb81491944"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ea202a7492d5bb9c8f3506fb5c98fde",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1719682,
            "upload_time": "2025-01-16T09:48:58",
            "upload_time_iso_8601": "2025-01-16T09:48:58.133418Z",
            "url": "https://files.pythonhosted.org/packages/73/a6/d09996e85c10f23642a7d1f537bf637d6d2c48c10888c1cd84c08f3012d9/reclass_rs-0.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c6c40a043c4a52f831cce347eb8934724c99747e54de7a71fef36a79a5ee936",
                "md5": "97f724921eca1c2a1fd95d3c52c80ef6",
                "sha256": "81c5b64ce3f2d39d8fd695253f89357d357f92d3221134c88b84f3b4d948fd7c"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "97f724921eca1c2a1fd95d3c52c80ef6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1515639,
            "upload_time": "2025-01-16T09:46:41",
            "upload_time_iso_8601": "2025-01-16T09:46:41.094769Z",
            "url": "https://files.pythonhosted.org/packages/3c/6c/40a043c4a52f831cce347eb8934724c99747e54de7a71fef36a79a5ee936/reclass_rs-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7009f0066bd72b8c87512551de3fd60c13154f2d2b6b80a3bc0ed2eb0c5b3a83",
                "md5": "91fc4fb1147dbc794660f88a57dd3ad1",
                "sha256": "51515d2aa9c1cd1048a74cb83983fe96d9a40c07a9351187a3ee7f52e1af714a"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "91fc4fb1147dbc794660f88a57dd3ad1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1481485,
            "upload_time": "2025-01-16T09:46:55",
            "upload_time_iso_8601": "2025-01-16T09:46:55.698114Z",
            "url": "https://files.pythonhosted.org/packages/70/09/f0066bd72b8c87512551de3fd60c13154f2d2b6b80a3bc0ed2eb0c5b3a83/reclass_rs-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b9a756092c4b390eaa347252fa67132117f9d7ef844f5c6fe9c11b5809f9793",
                "md5": "a5a076802a417d8379789ad08fe940ef",
                "sha256": "7af768321138fa842962243e60d02c7a943daa5982e54b70989bcc686849d10a"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a5a076802a417d8379789ad08fe940ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1622656,
            "upload_time": "2025-01-16T09:47:37",
            "upload_time_iso_8601": "2025-01-16T09:47:37.701922Z",
            "url": "https://files.pythonhosted.org/packages/4b/9a/756092c4b390eaa347252fa67132117f9d7ef844f5c6fe9c11b5809f9793/reclass_rs-0.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "10a5dbbb2765d43042f42189e1d2e9f3fe81a811da9fd7d22336bf891c53328d",
                "md5": "5aa1307286de94ca7a7e9dae057aa37c",
                "sha256": "df6f83ce26e3cafb304630a873d1a05c7ba2645d90a5e1013daae9117d5464f9"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5aa1307286de94ca7a7e9dae057aa37c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1646105,
            "upload_time": "2025-01-16T09:47:10",
            "upload_time_iso_8601": "2025-01-16T09:47:10.111536Z",
            "url": "https://files.pythonhosted.org/packages/10/a5/dbbb2765d43042f42189e1d2e9f3fe81a811da9fd7d22336bf891c53328d/reclass_rs-0.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59ea05db3ff3e28d7e5a881124323d7adab2f29ad5c7242a6c7b263cb75895ca",
                "md5": "b187ad7c3a41d0561ce6d6021579df3e",
                "sha256": "c8046a09159b8467d0faa3ebf1699b541c0b2b9fc6795939bf3a0b4144cce691"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b187ad7c3a41d0561ce6d6021579df3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1762081,
            "upload_time": "2025-01-16T09:47:24",
            "upload_time_iso_8601": "2025-01-16T09:47:24.243452Z",
            "url": "https://files.pythonhosted.org/packages/59/ea/05db3ff3e28d7e5a881124323d7adab2f29ad5c7242a6c7b263cb75895ca/reclass_rs-0.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70ec63179b759f9c347e7f18031dcefbb9943241d5d35b290f775e502aa0ff30",
                "md5": "b23f3dfbd4fcb2396c01502619d9850d",
                "sha256": "294eb2cc9cea4e140581a1b8bf339e8457d2118d3f14bfbc47ae2cb242d3ec3a"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b23f3dfbd4fcb2396c01502619d9850d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1577683,
            "upload_time": "2025-01-16T09:47:49",
            "upload_time_iso_8601": "2025-01-16T09:47:49.335819Z",
            "url": "https://files.pythonhosted.org/packages/70/ec/63179b759f9c347e7f18031dcefbb9943241d5d35b290f775e502aa0ff30/reclass_rs-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d14fc35c182b7a5db3526db49da42a3bb363320ae9ae14aad37fac302308378",
                "md5": "04f89f4a643b60cbd09110b363eebf72",
                "sha256": "4fc52909200417e7cf2ff85d1dae13c463c12a7d57f77a492649ac65b9de7210"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "04f89f4a643b60cbd09110b363eebf72",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1663791,
            "upload_time": "2025-01-16T09:48:12",
            "upload_time_iso_8601": "2025-01-16T09:48:12.540346Z",
            "url": "https://files.pythonhosted.org/packages/3d/14/fc35c182b7a5db3526db49da42a3bb363320ae9ae14aad37fac302308378/reclass_rs-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "301613e0ad69212e2732ddfcb1d9a6d980deb1ed2c8ec4d93d33e0ee04338c43",
                "md5": "4e6fb67358ecfe9b16fa3f159daeecf5",
                "sha256": "a1610e21f2bd8b6c2f9aff0ae4dd1f339a088ddbc51f83c4d6ab29b68473b130"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4e6fb67358ecfe9b16fa3f159daeecf5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1723155,
            "upload_time": "2025-01-16T09:48:28",
            "upload_time_iso_8601": "2025-01-16T09:48:28.834811Z",
            "url": "https://files.pythonhosted.org/packages/30/16/13e0ad69212e2732ddfcb1d9a6d980deb1ed2c8ec4d93d33e0ee04338c43/reclass_rs-0.6.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "824623f9505448186c647e9925aae06d92bffcbef44478df56a248740d7bf0d9",
                "md5": "dfb3948604c223da6367e43e80da2707",
                "sha256": "b9818f6aaf55b4b47e424bcb5e7b19dc972ef19e83260aa6106b23156d87336d"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "dfb3948604c223da6367e43e80da2707",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1708927,
            "upload_time": "2025-01-16T09:48:44",
            "upload_time_iso_8601": "2025-01-16T09:48:44.235200Z",
            "url": "https://files.pythonhosted.org/packages/82/46/23f9505448186c647e9925aae06d92bffcbef44478df56a248740d7bf0d9/reclass_rs-0.6.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "266b1092f697c766a50fe3b9dda7f81ab1fbe37df973577243cea422b5f333ef",
                "md5": "643f3a3c7787b46089dbabb562a2e060",
                "sha256": "03ab116e19e5dc000835c792b7715dac5cd02dc015dd91d9990a9678a221ab0e"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "643f3a3c7787b46089dbabb562a2e060",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1727585,
            "upload_time": "2025-01-16T09:49:00",
            "upload_time_iso_8601": "2025-01-16T09:49:00.992751Z",
            "url": "https://files.pythonhosted.org/packages/26/6b/1092f697c766a50fe3b9dda7f81ab1fbe37df973577243cea422b5f333ef/reclass_rs-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f99bc29006e5a80c2f8da652c9d63baee5455ba3ab360feb955131d2ef39f20a",
                "md5": "2c53aac67392708c05023ca8fab9e757",
                "sha256": "fb17501b3dffd73b5bd0f63f503ccf13a2387ff3d14bf4a3d943b337fab46cbe"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "2c53aac67392708c05023ca8fab9e757",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1088506,
            "upload_time": "2025-01-16T09:49:27",
            "upload_time_iso_8601": "2025-01-16T09:49:27.807697Z",
            "url": "https://files.pythonhosted.org/packages/f9/9b/c29006e5a80c2f8da652c9d63baee5455ba3ab360feb955131d2ef39f20a/reclass_rs-0.6.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc82669d244da59dcb506fb2c22c3649ba9111f5823bda43a2774371dee143a0",
                "md5": "be11615e156536b26645aa43295d61e2",
                "sha256": "b77b356e5a431ed27579a2319f55c99fd9962a7c4b10fcb1affbd3af917d6958"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "be11615e156536b26645aa43295d61e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1170403,
            "upload_time": "2025-01-16T09:49:20",
            "upload_time_iso_8601": "2025-01-16T09:49:20.439265Z",
            "url": "https://files.pythonhosted.org/packages/bc/82/669d244da59dcb506fb2c22c3649ba9111f5823bda43a2774371dee143a0/reclass_rs-0.6.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f49305c005811072d9d3cfaadabfecbd1573807a2ed002d16b8c69d9a657191",
                "md5": "e47ac7fee0df2d16f647965cbeb79059",
                "sha256": "55667eedf2a7531a7fe3cbe2f306c62261229e5b7f7cde3ed053b48398dbb88c"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e47ac7fee0df2d16f647965cbeb79059",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1513949,
            "upload_time": "2025-01-16T09:46:42",
            "upload_time_iso_8601": "2025-01-16T09:46:42.800785Z",
            "url": "https://files.pythonhosted.org/packages/6f/49/305c005811072d9d3cfaadabfecbd1573807a2ed002d16b8c69d9a657191/reclass_rs-0.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5671ed85e890f5755e3c1491dc33590c888a2efbfd7e50a5b9d033648885e609",
                "md5": "ac110d7f7e9524ea3696edb3ebf8354c",
                "sha256": "9c15021a1dc2d36933f6d1f86ccfb70da6ac1422163e2a964f51ec8f875c7bd1"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ac110d7f7e9524ea3696edb3ebf8354c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1483838,
            "upload_time": "2025-01-16T09:46:58",
            "upload_time_iso_8601": "2025-01-16T09:46:58.781141Z",
            "url": "https://files.pythonhosted.org/packages/56/71/ed85e890f5755e3c1491dc33590c888a2efbfd7e50a5b9d033648885e609/reclass_rs-0.6.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a278edf9f86de0dc3ed18be3a7fbab8e1e9db7b553eb79004ec7043aef9eee18",
                "md5": "47dd9b2e173446ec9d2d6700b3ede239",
                "sha256": "ccb45ef29728ef87c5b5106e6ccbec718d20d8dd0e41bb986d8eaeaf75eb98b0"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "47dd9b2e173446ec9d2d6700b3ede239",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1620561,
            "upload_time": "2025-01-16T09:47:39",
            "upload_time_iso_8601": "2025-01-16T09:47:39.193906Z",
            "url": "https://files.pythonhosted.org/packages/a2/78/edf9f86de0dc3ed18be3a7fbab8e1e9db7b553eb79004ec7043aef9eee18/reclass_rs-0.6.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e02e318251d2ab8323a4b4d3c33c92966d0f5b8bb661f470bfb9e3e4fcefeb7",
                "md5": "b9757b19e3467a3aba96f29baa49b922",
                "sha256": "a56f5078c9d20253fe0e878595fcd46705bb71a701ca17db659ac28dee389c1a"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b9757b19e3467a3aba96f29baa49b922",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1646829,
            "upload_time": "2025-01-16T09:47:12",
            "upload_time_iso_8601": "2025-01-16T09:47:12.310948Z",
            "url": "https://files.pythonhosted.org/packages/4e/02/e318251d2ab8323a4b4d3c33c92966d0f5b8bb661f470bfb9e3e4fcefeb7/reclass_rs-0.6.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66bf67940e6d06f06eae356fccf9fe5287a6c17b2a6de8b355a4e5db796fce38",
                "md5": "63e1bfa3ae2fdcb740043c25f796570d",
                "sha256": "9b9a2b3b01cd9574c6ef690f4c331fcf287b3e9e99315c32dbed0f6d12371674"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "63e1bfa3ae2fdcb740043c25f796570d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1761589,
            "upload_time": "2025-01-16T09:47:25",
            "upload_time_iso_8601": "2025-01-16T09:47:25.634246Z",
            "url": "https://files.pythonhosted.org/packages/66/bf/67940e6d06f06eae356fccf9fe5287a6c17b2a6de8b355a4e5db796fce38/reclass_rs-0.6.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d8796b9655e325ce728b0364c207a2815e924816668c16de8932bbd4e81c2fd",
                "md5": "d58461a9576a2e04b01809bc13cae3d3",
                "sha256": "7fbd6887bc33173707c6193e15d38a0cf061a03c92a6940cb099a333902899e5"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d58461a9576a2e04b01809bc13cae3d3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1578259,
            "upload_time": "2025-01-16T09:47:52",
            "upload_time_iso_8601": "2025-01-16T09:47:52.461374Z",
            "url": "https://files.pythonhosted.org/packages/5d/87/96b9655e325ce728b0364c207a2815e924816668c16de8932bbd4e81c2fd/reclass_rs-0.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41b9077cc107ccf5fdae290de98e4a7fc2aa60dcd32b3a4830ff49882f32d8b2",
                "md5": "f1ab415c4421996a8771c241afa5fa8e",
                "sha256": "7e3f35659623fab4a62134bec2b19c5df44f3f74aad457d9fd9d373c5c35a509"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f1ab415c4421996a8771c241afa5fa8e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1664571,
            "upload_time": "2025-01-16T09:48:15",
            "upload_time_iso_8601": "2025-01-16T09:48:15.326844Z",
            "url": "https://files.pythonhosted.org/packages/41/b9/077cc107ccf5fdae290de98e4a7fc2aa60dcd32b3a4830ff49882f32d8b2/reclass_rs-0.6.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2115470c5dcb637d06940843e30f8f4f4e33acee3fe5af7d09fa980771911687",
                "md5": "e4b8d048e59a0451848caa66633f7942",
                "sha256": "664c72181ed43a59921e9661c287a350fcd80f9f4d84e6d3f160b4509e1c7471"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e4b8d048e59a0451848caa66633f7942",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1719827,
            "upload_time": "2025-01-16T09:48:30",
            "upload_time_iso_8601": "2025-01-16T09:48:30.404952Z",
            "url": "https://files.pythonhosted.org/packages/21/15/470c5dcb637d06940843e30f8f4f4e33acee3fe5af7d09fa980771911687/reclass_rs-0.6.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49c0818a3996c5f1761dfa08e55ed8b19955d27044f68cba25e714156675567a",
                "md5": "bd017578ccca7459a3470135dd80bf00",
                "sha256": "f528a7642f9ed4f59c0f78edd42fd45746dc004e0d4c302288fdaa304757c83d"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "bd017578ccca7459a3470135dd80bf00",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1708812,
            "upload_time": "2025-01-16T09:48:45",
            "upload_time_iso_8601": "2025-01-16T09:48:45.765494Z",
            "url": "https://files.pythonhosted.org/packages/49/c0/818a3996c5f1761dfa08e55ed8b19955d27044f68cba25e714156675567a/reclass_rs-0.6.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bab9a642d990834bae00be5fe0957ce72aa62d48a8b8d8991a1699f263b24678",
                "md5": "4d31fa1a38501760da3067192857fab5",
                "sha256": "13f74939df62f573d20a6ee0a50367c301106f5e93569b9203b59815708526fc"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d31fa1a38501760da3067192857fab5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1725945,
            "upload_time": "2025-01-16T09:49:05",
            "upload_time_iso_8601": "2025-01-16T09:49:05.645203Z",
            "url": "https://files.pythonhosted.org/packages/ba/b9/a642d990834bae00be5fe0957ce72aa62d48a8b8d8991a1699f263b24678/reclass_rs-0.6.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e0942379ea3ae036f6de120a4e770c1d6724637c3f10de3f1dc5bc62b65f070",
                "md5": "673446f0e10ac7284ff835f92f25d1f1",
                "sha256": "22c597f6eae75aee67d3c4dccd70be1d2b717316a8462862b257772c7aa6d6dd"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "673446f0e10ac7284ff835f92f25d1f1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 1514154,
            "upload_time": "2025-01-16T09:46:45",
            "upload_time_iso_8601": "2025-01-16T09:46:45.640256Z",
            "url": "https://files.pythonhosted.org/packages/9e/09/42379ea3ae036f6de120a4e770c1d6724637c3f10de3f1dc5bc62b65f070/reclass_rs-0.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c9d7455f5fc89fb42dccee395eeebf269c11d71116ef044e66cb9cd6799fbb2",
                "md5": "93abdabb9dce94836315a287e3850a8c",
                "sha256": "84c2af332e4377d7469a671ef772c3b217afbb2ee667eef382f031c165be3877"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "93abdabb9dce94836315a287e3850a8c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 1483641,
            "upload_time": "2025-01-16T09:47:00",
            "upload_time_iso_8601": "2025-01-16T09:47:00.226413Z",
            "url": "https://files.pythonhosted.org/packages/0c/9d/7455f5fc89fb42dccee395eeebf269c11d71116ef044e66cb9cd6799fbb2/reclass_rs-0.6.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3498df312914ba52d8bdc4ea453febd3b01876e4273ca5b24fcb11de3e26f59",
                "md5": "1d5d8c345bdc5fcbc83c793fec23aea3",
                "sha256": "4a3f3189a3a7d5df65c833a1c4dfa256b1953aa423a3f6e61fb68d462c963982"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1d5d8c345bdc5fcbc83c793fec23aea3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 1646037,
            "upload_time": "2025-01-16T09:47:13",
            "upload_time_iso_8601": "2025-01-16T09:47:13.695236Z",
            "url": "https://files.pythonhosted.org/packages/e3/49/8df312914ba52d8bdc4ea453febd3b01876e4273ca5b24fcb11de3e26f59/reclass_rs-0.6.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67549a6e39a42867b29ae6c397719a1244341f35ea430c18a5e07884418cfc65",
                "md5": "9c81bee8d694fee264e610a04f37e744",
                "sha256": "9c698d64df06f258d22adcfbb55beacff4bc0c61d02a0fd12e8c7c227c29a89b"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9c81bee8d694fee264e610a04f37e744",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 1761706,
            "upload_time": "2025-01-16T09:47:28",
            "upload_time_iso_8601": "2025-01-16T09:47:28.300704Z",
            "url": "https://files.pythonhosted.org/packages/67/54/9a6e39a42867b29ae6c397719a1244341f35ea430c18a5e07884418cfc65/reclass_rs-0.6.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1c14a748cdd146145418cb6591a806ab092fb3d00884e39719028a5396e3454",
                "md5": "36757a8d17b471443c6b001996336069",
                "sha256": "4a150eb86118467b5524359437ac6985747bc151304aaeeefd0e041193748e23"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "36757a8d17b471443c6b001996336069",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 1664240,
            "upload_time": "2025-01-16T09:48:16",
            "upload_time_iso_8601": "2025-01-16T09:48:16.733067Z",
            "url": "https://files.pythonhosted.org/packages/c1/c1/4a748cdd146145418cb6591a806ab092fb3d00884e39719028a5396e3454/reclass_rs-0.6.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54addeedf4c2c64475986c7a892ecfd94ed0b26e0648dbe9d15032ac27fc5742",
                "md5": "1e15b59aca8664b360ca09786116fcc6",
                "sha256": "43fc252ce1ce9fd5c5f07c5bc24aa943935a1e8120efefdde1f1a65ec56fd8dc"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1e15b59aca8664b360ca09786116fcc6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 1719386,
            "upload_time": "2025-01-16T09:48:32",
            "upload_time_iso_8601": "2025-01-16T09:48:32.016561Z",
            "url": "https://files.pythonhosted.org/packages/54/ad/deedf4c2c64475986c7a892ecfd94ed0b26e0648dbe9d15032ac27fc5742/reclass_rs-0.6.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "10cc52204567eb4915e417c4b3e72c35709a97edb1d13c5c0d06b79365e18d6b",
                "md5": "9434d73fed3975110ce160d066a507ab",
                "sha256": "73fe8ff78caa3e4c00fa42306520abdeef72265ddd69cb4341cc991c79428094"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9434d73fed3975110ce160d066a507ab",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 1708621,
            "upload_time": "2025-01-16T09:48:48",
            "upload_time_iso_8601": "2025-01-16T09:48:48.543762Z",
            "url": "https://files.pythonhosted.org/packages/10/cc/52204567eb4915e417c4b3e72c35709a97edb1d13c5c0d06b79365e18d6b/reclass_rs-0.6.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d3b396e8f2a0cc874420a1af2b97b02f4d83c7bea5718c08390830152ede5f2",
                "md5": "6a8263a6db26fca498c5e14176f916da",
                "sha256": "6b8bb5a28dafd4d72957abf6ed9ca6bbed530ed853d373d2592341e9e66c03a4"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a8263a6db26fca498c5e14176f916da",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 1726225,
            "upload_time": "2025-01-16T09:49:07",
            "upload_time_iso_8601": "2025-01-16T09:49:07.182476Z",
            "url": "https://files.pythonhosted.org/packages/4d/3b/396e8f2a0cc874420a1af2b97b02f4d83c7bea5718c08390830152ede5f2/reclass_rs-0.6.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b21c935044a723a1d89661c799eaf83b06c5f667ed0aabac83e85b6a0a279af9",
                "md5": "cabad22aa290c5df32553c9bd86ec25e",
                "sha256": "c4e85e9402486d42c729151631aa88b6411fc2c2a34ef2a45baf2f95a0ed171b"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "cabad22aa290c5df32553c9bd86ec25e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 78050,
            "upload_time": "2025-01-16T09:49:12",
            "upload_time_iso_8601": "2025-01-16T09:49:12.087438Z",
            "url": "https://files.pythonhosted.org/packages/b2/1c/935044a723a1d89661c799eaf83b06c5f667ed0aabac83e85b6a0a279af9/reclass_rs-0.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-16 09:49:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "projectsyn",
    "github_project": "reclass-rs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "reclass-rs"
}
        
Elapsed time: 0.45568s