reclass-rs


Namereclass-rs JSON
Version 0.4.0 PyPI version JSON
download
home_pageNone
SummaryReclass defines a syntax and directory structure for recursively merging YAML data sources.
upload_time2024-02-26 12:55:22
maintainerNone
docs_urlNone
authorVSHN AG <info@vshn.ch>
requires_python>=3.8
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.8",
    "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/b3/aa/a5d5655029ca1e6223d9aaa09f649ac37ca422ae1afd4fd80e429a261da1/reclass_rs-0.4.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.4.0",
    "project_urls": {
        "Source Code": "https://github.com/projectsyn/reclass-rs"
    },
    "split_keywords": [
        "yaml",
        "reclass",
        "hierarchical config"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f913bce9d8852ef48d03c8aa96d618f439078ab0b7bce6a46f97cfa3573a7674",
                "md5": "50b3ceacf703a3c9ca9656fac190103a",
                "sha256": "8f853eaf3b9af92c0eb9b3b25770ca35c3da7e411dfea6529651195b8d37c308"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50b3ceacf703a3c9ca9656fac190103a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1367109,
            "upload_time": "2024-02-26T12:53:07",
            "upload_time_iso_8601": "2024-02-26T12:53:07.493302Z",
            "url": "https://files.pythonhosted.org/packages/f9/13/bce9d8852ef48d03c8aa96d618f439078ab0b7bce6a46f97cfa3573a7674/reclass_rs-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a3b101e9a0538c694533944726bf9d0daeed3a0fccf52e0573b266197d033f3",
                "md5": "7ad798960102122190d598e662b1bb9b",
                "sha256": "0052213a2f3c5fd8f0d41458a772356b99fc277684a2af3d65a9fe209a068d0d"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7ad798960102122190d598e662b1bb9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1313993,
            "upload_time": "2024-02-26T12:53:09",
            "upload_time_iso_8601": "2024-02-26T12:53:09.188811Z",
            "url": "https://files.pythonhosted.org/packages/3a/3b/101e9a0538c694533944726bf9d0daeed3a0fccf52e0573b266197d033f3/reclass_rs-0.4.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0846b2e91ae41e2d67cd03a938e1417f77a54fbb73ff93e64adc9fbbcd64f96",
                "md5": "a7cb677d8a3862ba45cd40569c1bc2c9",
                "sha256": "9d00dec807866b1f86d9a27d062d2bd036b30b07a282ea136a02adeecbf27fc0"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "a7cb677d8a3862ba45cd40569c1bc2c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2342173,
            "upload_time": "2024-02-26T12:53:11",
            "upload_time_iso_8601": "2024-02-26T12:53:11.095747Z",
            "url": "https://files.pythonhosted.org/packages/e0/84/6b2e91ae41e2d67cd03a938e1417f77a54fbb73ff93e64adc9fbbcd64f96/reclass_rs-0.4.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56db41508e09af3a748ea2bf6f95316293f1e1e7e495d2a8dc8c3d198c1d9474",
                "md5": "b06a5d5ce98868f6c750fb9d08aec2de",
                "sha256": "dec6527849282a39992150c4dfd359c9facb5df8d5b55249f7043d65abaad7c1"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b06a5d5ce98868f6c750fb9d08aec2de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2277901,
            "upload_time": "2024-02-26T12:53:12",
            "upload_time_iso_8601": "2024-02-26T12:53:12.448297Z",
            "url": "https://files.pythonhosted.org/packages/56/db/41508e09af3a748ea2bf6f95316293f1e1e7e495d2a8dc8c3d198c1d9474/reclass_rs-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bac402f9d4d400505e721b7082b118aa1a20b3da497a386531f7c690634e4ce4",
                "md5": "d0909d9956c7e32399b4df892823a596",
                "sha256": "b7b0d104599aca9799b1053aca51bbbb415c786ab65b77274d48abbfd75a4556"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d0909d9956c7e32399b4df892823a596",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2221065,
            "upload_time": "2024-02-26T12:53:13",
            "upload_time_iso_8601": "2024-02-26T12:53:13.819699Z",
            "url": "https://files.pythonhosted.org/packages/ba/c4/02f9d4d400505e721b7082b118aa1a20b3da497a386531f7c690634e4ce4/reclass_rs-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7204223009011f5864eb3f40a77e2e1e90b048100b71dc2ce8d5ec6b5080c4a",
                "md5": "3369f7776a445d53a8fd7366e7eb9cc4",
                "sha256": "5bdb4750823dc766a207031d6fe9d665813084c9d5313a79f72f5566186fb1f8"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3369f7776a445d53a8fd7366e7eb9cc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2455709,
            "upload_time": "2024-02-26T12:53:15",
            "upload_time_iso_8601": "2024-02-26T12:53:15.647521Z",
            "url": "https://files.pythonhosted.org/packages/d7/20/4223009011f5864eb3f40a77e2e1e90b048100b71dc2ce8d5ec6b5080c4a/reclass_rs-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dbe63ac3831b4a8cc9c465886ae9c13353541b05bb7f0099fe05b9e02a5a36e5",
                "md5": "551a6c87849ae609507031ff1ccc25dc",
                "sha256": "a794f2980140e4c26706a5271290b985664e588d68827c4aa77e65da937bae1a"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "551a6c87849ae609507031ff1ccc25dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2586198,
            "upload_time": "2024-02-26T12:53:17",
            "upload_time_iso_8601": "2024-02-26T12:53:17.277755Z",
            "url": "https://files.pythonhosted.org/packages/db/e6/3ac3831b4a8cc9c465886ae9c13353541b05bb7f0099fe05b9e02a5a36e5/reclass_rs-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca398e51081f4b91917eee5870b4b3f878d36db3faccf3fd3ae544efec31e2fd",
                "md5": "72bc899c8ebc4550cac8d283b82d38e9",
                "sha256": "d3ee5dd459ebebe83a63178b6fde241cc2ff37d74f78907ffdc9e6012cbe87ee"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72bc899c8ebc4550cac8d283b82d38e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2305878,
            "upload_time": "2024-02-26T12:53:18",
            "upload_time_iso_8601": "2024-02-26T12:53:18.776864Z",
            "url": "https://files.pythonhosted.org/packages/ca/39/8e51081f4b91917eee5870b4b3f878d36db3faccf3fd3ae544efec31e2fd/reclass_rs-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12c7ca1f6c7b65bc611eb628c2a5afff0a6eda18cf9d0dbcb9ac9c44a4a9aedb",
                "md5": "b60b1b8a563438402b1c7f289a50e1bd",
                "sha256": "b20e15499071279733db2bce6029605b0edbe8d1c68bead384f14b37b1ad52a5"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b60b1b8a563438402b1c7f289a50e1bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1066127,
            "upload_time": "2024-02-26T12:53:20",
            "upload_time_iso_8601": "2024-02-26T12:53:20.975187Z",
            "url": "https://files.pythonhosted.org/packages/12/c7/ca1f6c7b65bc611eb628c2a5afff0a6eda18cf9d0dbcb9ac9c44a4a9aedb/reclass_rs-0.4.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5583c5372a15b07e426e0e0c6ff30c50aa47f9662521ba018c120383bf9f147e",
                "md5": "0b89501681863dba2b39168ded76c4f0",
                "sha256": "16c1a7b0ef954d1613a2d44b7e4714ff728a2eaa3c3cec50e341f82a8a216369"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0b89501681863dba2b39168ded76c4f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1148944,
            "upload_time": "2024-02-26T12:53:22",
            "upload_time_iso_8601": "2024-02-26T12:53:22.886162Z",
            "url": "https://files.pythonhosted.org/packages/55/83/c5372a15b07e426e0e0c6ff30c50aa47f9662521ba018c120383bf9f147e/reclass_rs-0.4.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c7886db146a73bfd9b2f2a5f36542cec1a7e86a3beaa5885918fef3a1800960b",
                "md5": "90087c2286a6ab5194a16c1ef8af8cdf",
                "sha256": "d205cdf06dc10816dd3d2c0ad2eda35e2acca90432a8191a2a73ee6ee9bbe20a"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "90087c2286a6ab5194a16c1ef8af8cdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1367417,
            "upload_time": "2024-02-26T12:53:24",
            "upload_time_iso_8601": "2024-02-26T12:53:24.122163Z",
            "url": "https://files.pythonhosted.org/packages/c7/88/6db146a73bfd9b2f2a5f36542cec1a7e86a3beaa5885918fef3a1800960b/reclass_rs-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "912d905e8624485e7d4a45db2915861fb1100c0fdaa89d7b60d9b9c33f8631ec",
                "md5": "3dd32677e35012aae6aedbffdb345aa9",
                "sha256": "a6f7439851472d3f056964f7e1d45a7c3a0249e27a123288cf78445ae71b22bf"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3dd32677e35012aae6aedbffdb345aa9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1313847,
            "upload_time": "2024-02-26T12:53:25",
            "upload_time_iso_8601": "2024-02-26T12:53:25.472618Z",
            "url": "https://files.pythonhosted.org/packages/91/2d/905e8624485e7d4a45db2915861fb1100c0fdaa89d7b60d9b9c33f8631ec/reclass_rs-0.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22f6091cfd5fdb5eddb60dab6497bb01db3314407c5b6ab7601fe5e4ebcdf29e",
                "md5": "142f7530455cc452b13992b1d905b02e",
                "sha256": "f2c41e7119f26beae4fb4f086f84abeb90fb068ac21ff1e33aaf2e1e4db4ba02"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "142f7530455cc452b13992b1d905b02e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2343080,
            "upload_time": "2024-02-26T12:53:26",
            "upload_time_iso_8601": "2024-02-26T12:53:26.756552Z",
            "url": "https://files.pythonhosted.org/packages/22/f6/091cfd5fdb5eddb60dab6497bb01db3314407c5b6ab7601fe5e4ebcdf29e/reclass_rs-0.4.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed7197db39348ff6627affcb0b5dead6c85560feeead809937ca4b0629efac0e",
                "md5": "89abfe92f9f0ad247ddc6c7364fa4b4b",
                "sha256": "9f616e4afba3d91371971784672f9b8d8ce39a8aada44bf9186b4b36346b9537"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "89abfe92f9f0ad247ddc6c7364fa4b4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2278018,
            "upload_time": "2024-02-26T12:53:28",
            "upload_time_iso_8601": "2024-02-26T12:53:28.742881Z",
            "url": "https://files.pythonhosted.org/packages/ed/71/97db39348ff6627affcb0b5dead6c85560feeead809937ca4b0629efac0e/reclass_rs-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00432c6f2121ee93dbc302716e9455ea82f4ff690f92bbb866baabc59c75c418",
                "md5": "1b00a28589e9fc7884159e14af3550a0",
                "sha256": "ef005a277013737d7bc01e0abb9b48295177ad3292d5eb20d4fc4e936f9a83e2"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1b00a28589e9fc7884159e14af3550a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2222898,
            "upload_time": "2024-02-26T12:53:30",
            "upload_time_iso_8601": "2024-02-26T12:53:30.706562Z",
            "url": "https://files.pythonhosted.org/packages/00/43/2c6f2121ee93dbc302716e9455ea82f4ff690f92bbb866baabc59c75c418/reclass_rs-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14a1defd298770aa5c1acdbdcbe951ea745f99368d952832985fc86c273ce310",
                "md5": "3b0757b0ecc509c398916a219c48565f",
                "sha256": "3d87e40ec7d612efc33922db0fa073a5d3e6cb46a1537cb27756d51acdfc9338"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3b0757b0ecc509c398916a219c48565f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2455562,
            "upload_time": "2024-02-26T12:53:32",
            "upload_time_iso_8601": "2024-02-26T12:53:32.007466Z",
            "url": "https://files.pythonhosted.org/packages/14/a1/defd298770aa5c1acdbdcbe951ea745f99368d952832985fc86c273ce310/reclass_rs-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "216e69ee9e4d2e870c2584afaaaa71bb5d625e8f5b0dfd7d0cf7ed9b1e166d12",
                "md5": "c6d9bfdb1863ac9a8348a27c71d7c38c",
                "sha256": "c2fdf68cca29590cc342479a6d24ab8fe8941a5a448092baa7b032f1297be704"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c6d9bfdb1863ac9a8348a27c71d7c38c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2585167,
            "upload_time": "2024-02-26T12:53:33",
            "upload_time_iso_8601": "2024-02-26T12:53:33.597172Z",
            "url": "https://files.pythonhosted.org/packages/21/6e/69ee9e4d2e870c2584afaaaa71bb5d625e8f5b0dfd7d0cf7ed9b1e166d12/reclass_rs-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41acf5afd0664e64e45e65b087694f22986eeedeca81579aef492a586edb1794",
                "md5": "09ec81b4d8422bb0ee98311b6c2a901a",
                "sha256": "8107a6cbfe26ccb363ec22a4257d76146c616dd4e0f45569c819a3f58854a17f"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09ec81b4d8422bb0ee98311b6c2a901a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2305464,
            "upload_time": "2024-02-26T12:53:34",
            "upload_time_iso_8601": "2024-02-26T12:53:34.991463Z",
            "url": "https://files.pythonhosted.org/packages/41/ac/f5afd0664e64e45e65b087694f22986eeedeca81579aef492a586edb1794/reclass_rs-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7176b449dbebaa6b2ff633b70d460b69b9cc0096c175caccc06f3ddb4cd6dad3",
                "md5": "578510444a433d79b5d7685bb3821c94",
                "sha256": "1ddc7bfcbbbe9508e1715cf7c934f9f64ae42ff3bbb9d0bc9ac83deb4ed681d7"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "578510444a433d79b5d7685bb3821c94",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1066363,
            "upload_time": "2024-02-26T12:53:36",
            "upload_time_iso_8601": "2024-02-26T12:53:36.511815Z",
            "url": "https://files.pythonhosted.org/packages/71/76/b449dbebaa6b2ff633b70d460b69b9cc0096c175caccc06f3ddb4cd6dad3/reclass_rs-0.4.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2afd4a4a6c32b6c7acc4cdcaeecc6d14d49e96c0dd4760631aca2db07929bb9f",
                "md5": "67b330e2b3c56081ce1cf240094cd206",
                "sha256": "869f2fc72998b1eed104f24709d7248452b7a2d8ffc9c5ff240ae5884f7f1af7"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "67b330e2b3c56081ce1cf240094cd206",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1149386,
            "upload_time": "2024-02-26T12:53:38",
            "upload_time_iso_8601": "2024-02-26T12:53:38.124819Z",
            "url": "https://files.pythonhosted.org/packages/2a/fd/4a4a6c32b6c7acc4cdcaeecc6d14d49e96c0dd4760631aca2db07929bb9f/reclass_rs-0.4.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c463d98dc7ded5902a51c82dc21d53efa2e62882b56af3c3133ad97e1e83e0e",
                "md5": "54965e7223a7d087a5e89cb4073c421e",
                "sha256": "b8135a1d60019d6aa498cb4a88b981b9725c98e9b30c376647182cc87d0fa31a"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54965e7223a7d087a5e89cb4073c421e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1368842,
            "upload_time": "2024-02-26T12:53:40",
            "upload_time_iso_8601": "2024-02-26T12:53:40.712649Z",
            "url": "https://files.pythonhosted.org/packages/3c/46/3d98dc7ded5902a51c82dc21d53efa2e62882b56af3c3133ad97e1e83e0e/reclass_rs-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a373065f8f2a452cbba8a6d696219281da7ad04a27845adbf954abab12ca836b",
                "md5": "901c29b223fdf7eea6b4ad2414d899f4",
                "sha256": "922a94eef9cccea33a26a24078abc7ed76af7aa3b585534147cf34417d078241"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "901c29b223fdf7eea6b4ad2414d899f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1315703,
            "upload_time": "2024-02-26T12:53:42",
            "upload_time_iso_8601": "2024-02-26T12:53:42.928054Z",
            "url": "https://files.pythonhosted.org/packages/a3/73/065f8f2a452cbba8a6d696219281da7ad04a27845adbf954abab12ca836b/reclass_rs-0.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e87f9aeb6445caaf755bec2f92c230e93275d707ff8544edd00bb13b3524bf1",
                "md5": "a15bd73d95c7b2bbadf37056a2c01362",
                "sha256": "5c4175f1069ff17cffca508d716e80a635b965d6f1e47ae225d15f82094ac030"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "a15bd73d95c7b2bbadf37056a2c01362",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2344071,
            "upload_time": "2024-02-26T12:53:45",
            "upload_time_iso_8601": "2024-02-26T12:53:45.689046Z",
            "url": "https://files.pythonhosted.org/packages/9e/87/f9aeb6445caaf755bec2f92c230e93275d707ff8544edd00bb13b3524bf1/reclass_rs-0.4.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "226c3ded3a2cc685f64ec5133c68eda0df3b3578022bc187cd0f0000edb57283",
                "md5": "dd393523dc8f1de3cb19ecd82dbca6e5",
                "sha256": "1fb79137810a91ede53ff9eb43e2532be96b8d2443eb2e5e955b2622495e95d7"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dd393523dc8f1de3cb19ecd82dbca6e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2278978,
            "upload_time": "2024-02-26T12:53:48",
            "upload_time_iso_8601": "2024-02-26T12:53:48.868956Z",
            "url": "https://files.pythonhosted.org/packages/22/6c/3ded3a2cc685f64ec5133c68eda0df3b3578022bc187cd0f0000edb57283/reclass_rs-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ef28c8ff7e9ae1ad2866784984f943cc4ceafa149a6fba1745e2208965f494d",
                "md5": "82f5b7d2c4c4dbe20e4ae20296eefe95",
                "sha256": "bee4b607b6c4b0a3972bb6c55687387bf6bbd21bab322a00b8ff405493a240af"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "82f5b7d2c4c4dbe20e4ae20296eefe95",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2223020,
            "upload_time": "2024-02-26T12:53:52",
            "upload_time_iso_8601": "2024-02-26T12:53:52.983476Z",
            "url": "https://files.pythonhosted.org/packages/0e/f2/8c8ff7e9ae1ad2866784984f943cc4ceafa149a6fba1745e2208965f494d/reclass_rs-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32a91855d210427a660260517e6d740634a9c574266bd6164ec1d21538a8ef24",
                "md5": "af70aab416cbe4140fccd36eabe5d9fe",
                "sha256": "628f85d667de40a3b97c8c670de7e5313a3d51fefbe45bacf9396a9a7719965a"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "af70aab416cbe4140fccd36eabe5d9fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2453921,
            "upload_time": "2024-02-26T12:53:56",
            "upload_time_iso_8601": "2024-02-26T12:53:56.269631Z",
            "url": "https://files.pythonhosted.org/packages/32/a9/1855d210427a660260517e6d740634a9c574266bd6164ec1d21538a8ef24/reclass_rs-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ca4b62f93501441589305bc6be223d840e42b303ac19c7ba588e17cfe3fb208",
                "md5": "d898983725dd46ea4f128f4383a7cf20",
                "sha256": "5bcd88789835e3f04021458b4a741ce48d62bbeb9a0cdf353a57e359ea11f48f"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d898983725dd46ea4f128f4383a7cf20",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2568112,
            "upload_time": "2024-02-26T12:54:01",
            "upload_time_iso_8601": "2024-02-26T12:54:01.030139Z",
            "url": "https://files.pythonhosted.org/packages/8c/a4/b62f93501441589305bc6be223d840e42b303ac19c7ba588e17cfe3fb208/reclass_rs-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ea782ed723db55031eabc6d636bf8d31c58dff03c98a9d58b6db13a1f711dc7",
                "md5": "0c77531a253c6f5ee2391a1758d74bd2",
                "sha256": "4037eb2bf5c66a89ee611c8298fee782f700e95198e29c5900a2495737d0e2d0"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c77531a253c6f5ee2391a1758d74bd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2307117,
            "upload_time": "2024-02-26T12:54:06",
            "upload_time_iso_8601": "2024-02-26T12:54:06.036754Z",
            "url": "https://files.pythonhosted.org/packages/9e/a7/82ed723db55031eabc6d636bf8d31c58dff03c98a9d58b6db13a1f711dc7/reclass_rs-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98d5284ae9362e3666581625a823d86884bc65ee9981b8b4a50607bdc45336b1",
                "md5": "e8860e5db049fbee92ca5f0af771c244",
                "sha256": "f654949bf9cd28835b0b31eecda5cc2db058ef791fde4a5bd315078a15ec1de0"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e8860e5db049fbee92ca5f0af771c244",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1068969,
            "upload_time": "2024-02-26T12:54:09",
            "upload_time_iso_8601": "2024-02-26T12:54:09.971019Z",
            "url": "https://files.pythonhosted.org/packages/98/d5/284ae9362e3666581625a823d86884bc65ee9981b8b4a50607bdc45336b1/reclass_rs-0.4.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70cd6e418282bbabad400648258df8a0fcaa1e3f6b96b6621effc0c8c55a6e28",
                "md5": "d7c6d6e3cbc74ea4f203bae6a56f4165",
                "sha256": "bfde34f826891d755f8da233bd7000a6567dfaf16a27fa50d5ba305fa10293a8"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d7c6d6e3cbc74ea4f203bae6a56f4165",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1148590,
            "upload_time": "2024-02-26T12:54:14",
            "upload_time_iso_8601": "2024-02-26T12:54:14.343470Z",
            "url": "https://files.pythonhosted.org/packages/70/cd/6e418282bbabad400648258df8a0fcaa1e3f6b96b6621effc0c8c55a6e28/reclass_rs-0.4.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f66f4034942b9f2f8f4eac1631fc9fe3faf111643dc9e997a63baccbd227cfb9",
                "md5": "142919da8b8ca171e5fc1e908d5beedc",
                "sha256": "f4120a731aefa21fd012f314f96d383fe47496964955561b15f7283a9d05bb26"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "142919da8b8ca171e5fc1e908d5beedc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2278977,
            "upload_time": "2024-02-26T12:54:17",
            "upload_time_iso_8601": "2024-02-26T12:54:17.095799Z",
            "url": "https://files.pythonhosted.org/packages/f6/6f/4034942b9f2f8f4eac1631fc9fe3faf111643dc9e997a63baccbd227cfb9/reclass_rs-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3413f2a3bcf6c4b6da1c293ef901951ea708e70cdd8d1866fe288f483d59efcc",
                "md5": "21b0537309f9712b2e8f9ba971a0d70c",
                "sha256": "7ba35ea61cd3f56cfe4edfd3772096ae331053318645463a4ba6b1268c8aa9d6"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "21b0537309f9712b2e8f9ba971a0d70c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2223019,
            "upload_time": "2024-02-26T12:54:19",
            "upload_time_iso_8601": "2024-02-26T12:54:19.701396Z",
            "url": "https://files.pythonhosted.org/packages/34/13/f2a3bcf6c4b6da1c293ef901951ea708e70cdd8d1866fe288f483d59efcc/reclass_rs-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "394d81bbebf77218f4ca27936faffb8b55ef4009100fb29335f6e62f8aa4708c",
                "md5": "79ec7e4861ba3dd64d33edeebc16557e",
                "sha256": "4307eb7b37c69e5c3a0dc1b5cbede945c528db2da388627218f02511dee68f9a"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "79ec7e4861ba3dd64d33edeebc16557e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2453921,
            "upload_time": "2024-02-26T12:54:21",
            "upload_time_iso_8601": "2024-02-26T12:54:21.649998Z",
            "url": "https://files.pythonhosted.org/packages/39/4d/81bbebf77218f4ca27936faffb8b55ef4009100fb29335f6e62f8aa4708c/reclass_rs-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39bfbecab1b0a25f2f670c2b21d81ca65d07c8ba495453a47953ce80eb44e932",
                "md5": "c0501078bd3294ddb1b57cc6d3a0fff9",
                "sha256": "d882e57d42f8ac845af2fd396347e76dde84c48bf23c1e077317e66498c961d2"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c0501078bd3294ddb1b57cc6d3a0fff9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2568113,
            "upload_time": "2024-02-26T12:54:24",
            "upload_time_iso_8601": "2024-02-26T12:54:24.058498Z",
            "url": "https://files.pythonhosted.org/packages/39/bf/becab1b0a25f2f670c2b21d81ca65d07c8ba495453a47953ce80eb44e932/reclass_rs-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14063150a2a31e2491777707030b80a14c394a268b41cb14526a73d17e43ac43",
                "md5": "126bd3b107c5cc6f56376b049ec4ad4b",
                "sha256": "ca99650751a014f60d975648ca668e5f267c994f1a370b79e00c9931e6ac7dbf"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "126bd3b107c5cc6f56376b049ec4ad4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2345247,
            "upload_time": "2024-02-26T12:54:26",
            "upload_time_iso_8601": "2024-02-26T12:54:26.040653Z",
            "url": "https://files.pythonhosted.org/packages/14/06/3150a2a31e2491777707030b80a14c394a268b41cb14526a73d17e43ac43/reclass_rs-0.4.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e08b7313ea97c8e1134cc471178bcda6eb3fd68711a53d52906c1482f11fdf17",
                "md5": "353f379279a0c95081dd2a439d83024e",
                "sha256": "4c9708c8ca8f519ec0533de6b591edba7d76bf3695c9e27678e5da9633f500c1"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "353f379279a0c95081dd2a439d83024e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2278869,
            "upload_time": "2024-02-26T12:54:28",
            "upload_time_iso_8601": "2024-02-26T12:54:28.687234Z",
            "url": "https://files.pythonhosted.org/packages/e0/8b/7313ea97c8e1134cc471178bcda6eb3fd68711a53d52906c1482f11fdf17/reclass_rs-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "184db7c8f5e0e7c7572e7927c634e9623759dfd11422e9105e15fb182462ad8f",
                "md5": "4ead53a84c17ea666bf0dec61d25ea21",
                "sha256": "c404f113f6d28506faa932210a5447da29051ca394fd079cb5bc9252b34976bc"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4ead53a84c17ea666bf0dec61d25ea21",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2222065,
            "upload_time": "2024-02-26T12:54:30",
            "upload_time_iso_8601": "2024-02-26T12:54:30.654436Z",
            "url": "https://files.pythonhosted.org/packages/18/4d/b7c8f5e0e7c7572e7927c634e9623759dfd11422e9105e15fb182462ad8f/reclass_rs-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de65907d21037751c07f12f1065d73785f061a767644cb1e72558610a82c83f9",
                "md5": "a71c1315ebd7a1ca5e82a1f4c832d76f",
                "sha256": "2399a0e64f0af4eaf488d7159c217363bf087a2d4c8820f82000f766ff828bb6"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a71c1315ebd7a1ca5e82a1f4c832d76f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2455246,
            "upload_time": "2024-02-26T12:54:32",
            "upload_time_iso_8601": "2024-02-26T12:54:32.028694Z",
            "url": "https://files.pythonhosted.org/packages/de/65/907d21037751c07f12f1065d73785f061a767644cb1e72558610a82c83f9/reclass_rs-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79bb26da9fac58d517f674393b0426ad1bbf5ca283668d329318eb513436c711",
                "md5": "16ea0051c6e70a2ebd09c0e915c63342",
                "sha256": "d1285830b85e7091f3728230f9f8626de2d2e678fc21b3a89076e5ca2ba46f40"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "16ea0051c6e70a2ebd09c0e915c63342",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2583540,
            "upload_time": "2024-02-26T12:54:33",
            "upload_time_iso_8601": "2024-02-26T12:54:33.849447Z",
            "url": "https://files.pythonhosted.org/packages/79/bb/26da9fac58d517f674393b0426ad1bbf5ca283668d329318eb513436c711/reclass_rs-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c411e1522c9f6294eeff3562bc8afc93e282a5ba1339d77968cf7dfa8c04dee3",
                "md5": "e67ee5975286e24c37745d6307a2ed89",
                "sha256": "84d43ccfa82f8b26ee1cb298ef1686524ba63758fc818d7f1ccc3fdeecacd540"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e67ee5975286e24c37745d6307a2ed89",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2306639,
            "upload_time": "2024-02-26T12:54:35",
            "upload_time_iso_8601": "2024-02-26T12:54:35.347570Z",
            "url": "https://files.pythonhosted.org/packages/c4/11/e1522c9f6294eeff3562bc8afc93e282a5ba1339d77968cf7dfa8c04dee3/reclass_rs-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5aaf2afd8dd04d97a60f68c8dfb0a69e8183495eee59f7e2de59d787f3272a55",
                "md5": "6f4768f1224fd6eaeb56da3fb3e9d831",
                "sha256": "9f83b38790e05530883c9bb0b6f80586e11e69639c1f3785e1d2aae417dfc957"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "6f4768f1224fd6eaeb56da3fb3e9d831",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1065966,
            "upload_time": "2024-02-26T12:54:36",
            "upload_time_iso_8601": "2024-02-26T12:54:36.845304Z",
            "url": "https://files.pythonhosted.org/packages/5a/af/2afd8dd04d97a60f68c8dfb0a69e8183495eee59f7e2de59d787f3272a55/reclass_rs-0.4.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57bebf040da43ae93310c4e47138b03e908c37399a5b42a62864e4df07e8d25a",
                "md5": "acf938e8690eeaae12721a7320916cf9",
                "sha256": "19dff5fe1cf020aa6a24b1a647ed0ccb7e1a1cf1d421e957ed128fda0bacafe9"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "acf938e8690eeaae12721a7320916cf9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1148831,
            "upload_time": "2024-02-26T12:54:38",
            "upload_time_iso_8601": "2024-02-26T12:54:38.233593Z",
            "url": "https://files.pythonhosted.org/packages/57/be/bf040da43ae93310c4e47138b03e908c37399a5b42a62864e4df07e8d25a/reclass_rs-0.4.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bdcab09a92293fc1c59702f2541983bf5219d4c78e4d65e02b2c1e8cf6b852cd",
                "md5": "2f936854e4eeb7090803eb4662693574",
                "sha256": "ed70d329f140de9c699d307862d04c65219bf6e9f6e39be6d407d9c9a314e3ac"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "2f936854e4eeb7090803eb4662693574",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2343210,
            "upload_time": "2024-02-26T12:54:39",
            "upload_time_iso_8601": "2024-02-26T12:54:39.902702Z",
            "url": "https://files.pythonhosted.org/packages/bd/ca/b09a92293fc1c59702f2541983bf5219d4c78e4d65e02b2c1e8cf6b852cd/reclass_rs-0.4.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d5ef81c09a7f6f14eeef459dab90cdf5f827eb1ee06066ac95db6de4dc84a6d",
                "md5": "0cde369e4c24dc3ed6d6108f3e28c07c",
                "sha256": "148f650cf55f575d0c109138627cd09add0fdbd9e967f8bf0ca41bace1a20098"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0cde369e4c24dc3ed6d6108f3e28c07c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2277677,
            "upload_time": "2024-02-26T12:54:41",
            "upload_time_iso_8601": "2024-02-26T12:54:41.564494Z",
            "url": "https://files.pythonhosted.org/packages/1d/5e/f81c09a7f6f14eeef459dab90cdf5f827eb1ee06066ac95db6de4dc84a6d/reclass_rs-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e2bcf928be221f6c349ec7f62454d6722490a2bf3167f2f5ce82d445cc2f296",
                "md5": "79cf61de8b7379c62de33b42e78fdbd7",
                "sha256": "cbbf461073edec8320e337001586ef8fe3bd6a42733ded68997a66898cfb72fe"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "79cf61de8b7379c62de33b42e78fdbd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2222637,
            "upload_time": "2024-02-26T12:54:43",
            "upload_time_iso_8601": "2024-02-26T12:54:43.018240Z",
            "url": "https://files.pythonhosted.org/packages/8e/2b/cf928be221f6c349ec7f62454d6722490a2bf3167f2f5ce82d445cc2f296/reclass_rs-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce7ce4283b21f54d19c8d8f419b7e0ad59e360dc1b585a367ada84e9af524310",
                "md5": "a49e109553f601257e5118edac483269",
                "sha256": "1e79282bee0290f4436d851d9a3df7d72b4a454f4a05be6c524ac09823f14eb5"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a49e109553f601257e5118edac483269",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2455876,
            "upload_time": "2024-02-26T12:54:45",
            "upload_time_iso_8601": "2024-02-26T12:54:45.014564Z",
            "url": "https://files.pythonhosted.org/packages/ce/7c/e4283b21f54d19c8d8f419b7e0ad59e360dc1b585a367ada84e9af524310/reclass_rs-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b033b546741df2c8e5ef69ec2838e4d19e5f5688af83cdbfe90c18fb7b2af3bd",
                "md5": "7f44fb0bc1a549903e04681030d36daa",
                "sha256": "8d1b557216eb1fedc426efec5dbd59f9fd4ce7ee50b805cb8a9528a3e7793633"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7f44fb0bc1a549903e04681030d36daa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2584498,
            "upload_time": "2024-02-26T12:54:46",
            "upload_time_iso_8601": "2024-02-26T12:54:46.866044Z",
            "url": "https://files.pythonhosted.org/packages/b0/33/b546741df2c8e5ef69ec2838e4d19e5f5688af83cdbfe90c18fb7b2af3bd/reclass_rs-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a336a35aa88db135d587dfcba2cf970d456903dad4f2d30a749ab73cb2faf68",
                "md5": "20c13b16ddccb4b48bdaf3e814f8eee3",
                "sha256": "63d05f43b29e62b8a2e8ef961aedfe05af6c7ae540ab9cc24a8f90fafeac2d53"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "20c13b16ddccb4b48bdaf3e814f8eee3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2306138,
            "upload_time": "2024-02-26T12:54:48",
            "upload_time_iso_8601": "2024-02-26T12:54:48.341806Z",
            "url": "https://files.pythonhosted.org/packages/1a/33/6a35aa88db135d587dfcba2cf970d456903dad4f2d30a749ab73cb2faf68/reclass_rs-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53a703498371607d9058db56df9220bb1ab38009b2a5a62a651ea047d00f13c7",
                "md5": "a4b914a161ed88c510305c2a796b54a0",
                "sha256": "94a1c7965e9d88b18c7bdd335e67984c630b369fcb2e5e1be94886a5dcae2009"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a4b914a161ed88c510305c2a796b54a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1066461,
            "upload_time": "2024-02-26T12:54:49",
            "upload_time_iso_8601": "2024-02-26T12:54:49.685421Z",
            "url": "https://files.pythonhosted.org/packages/53/a7/03498371607d9058db56df9220bb1ab38009b2a5a62a651ea047d00f13c7/reclass_rs-0.4.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2152dc43acb5b29f5702a90d44ebc740a1716cc8f7573dd99007a81892b699b8",
                "md5": "05985fb6e934d2173418f3098454dd7d",
                "sha256": "1bb4a3b802497722cd1f444297d066fda5ca3ec50eaa7646dbe1e01cf642c3e5"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "05985fb6e934d2173418f3098454dd7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1149298,
            "upload_time": "2024-02-26T12:54:51",
            "upload_time_iso_8601": "2024-02-26T12:54:51.128547Z",
            "url": "https://files.pythonhosted.org/packages/21/52/dc43acb5b29f5702a90d44ebc740a1716cc8f7573dd99007a81892b699b8/reclass_rs-0.4.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8bcd4a803532c4949db0c33ca5eb904d1141bf2476d0355ffe35140ca70b06b9",
                "md5": "1304a9f784c357c62ba8dac04c8e7c37",
                "sha256": "fb37f7b5d41ab3e315fc525d23d23cc8202bdacd0019d864bd76493f7afd7533"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "1304a9f784c357c62ba8dac04c8e7c37",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2343731,
            "upload_time": "2024-02-26T12:54:52",
            "upload_time_iso_8601": "2024-02-26T12:54:52.470368Z",
            "url": "https://files.pythonhosted.org/packages/8b/cd/4a803532c4949db0c33ca5eb904d1141bf2476d0355ffe35140ca70b06b9/reclass_rs-0.4.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a569e54ae473f11b85de94be9d15bc40a0df7d8b57ffc49332b22a5306335ef",
                "md5": "b4806e8edeea7857353b52415c170e7b",
                "sha256": "aa108eb00bd9a5a842a668878947777ec2ba7d126c3922074e54a76638981474"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b4806e8edeea7857353b52415c170e7b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2279236,
            "upload_time": "2024-02-26T12:54:53",
            "upload_time_iso_8601": "2024-02-26T12:54:53.936861Z",
            "url": "https://files.pythonhosted.org/packages/2a/56/9e54ae473f11b85de94be9d15bc40a0df7d8b57ffc49332b22a5306335ef/reclass_rs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50251a039b46548693898219041133626458d142cf2dee6c614057b245d15664",
                "md5": "092fa2f89e4e22c8736b051837136d04",
                "sha256": "fa792b5b624967863ba12defec84522c52bb4c5201a952e14e541e6bb510c91c"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "092fa2f89e4e22c8736b051837136d04",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2221354,
            "upload_time": "2024-02-26T12:54:56",
            "upload_time_iso_8601": "2024-02-26T12:54:56.555979Z",
            "url": "https://files.pythonhosted.org/packages/50/25/1a039b46548693898219041133626458d142cf2dee6c614057b245d15664/reclass_rs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75158535cd5c73febc76635feca4d16cc53a2a67aadf78818053225b3c1bf644",
                "md5": "53cfe57c956d1374d76aefd2b8d5f445",
                "sha256": "2c75a51c6ae4978be21c25b4d440f4359b450bd846ef86a01623d5e08c60a119"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "53cfe57c956d1374d76aefd2b8d5f445",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2458087,
            "upload_time": "2024-02-26T12:54:58",
            "upload_time_iso_8601": "2024-02-26T12:54:58.022774Z",
            "url": "https://files.pythonhosted.org/packages/75/15/8535cd5c73febc76635feca4d16cc53a2a67aadf78818053225b3c1bf644/reclass_rs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6314b0981e18710fd0ad8a1c310de8690fe11f951c96becdf8c28eae3b3eeac4",
                "md5": "0945f4f8564bba4098cd04bfae87822b",
                "sha256": "20bc17f03e91d369fafbed33a1e6282cfb155e0aa3789161313115c98af89d7f"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0945f4f8564bba4098cd04bfae87822b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2581834,
            "upload_time": "2024-02-26T12:54:59",
            "upload_time_iso_8601": "2024-02-26T12:54:59.827407Z",
            "url": "https://files.pythonhosted.org/packages/63/14/b0981e18710fd0ad8a1c310de8690fe11f951c96becdf8c28eae3b3eeac4/reclass_rs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c36975ea3e03aae89d72d809525d0266cfcc35e9e18c05861e9459c51bfa0e32",
                "md5": "efce7689f06eaae02723d03d2726f55b",
                "sha256": "333dbc0b3502d586457d39b6b424042e0529c6591aa59ddd65ee4c03b6fc0a6e"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "efce7689f06eaae02723d03d2726f55b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2305234,
            "upload_time": "2024-02-26T12:55:01",
            "upload_time_iso_8601": "2024-02-26T12:55:01.353740Z",
            "url": "https://files.pythonhosted.org/packages/c3/69/75ea3e03aae89d72d809525d0266cfcc35e9e18c05861e9459c51bfa0e32/reclass_rs-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e0288a45072e75d2389849866cc92f461ec3fbe4615cc6d9d50f9b6af62eb3b",
                "md5": "2406a24d8ecede9c08a2b8778625c92e",
                "sha256": "8b22ea8a00ab9102f1f6611c568f1fa34eec7cc4b3fe77c1be879582a832c36c"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "2406a24d8ecede9c08a2b8778625c92e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2345454,
            "upload_time": "2024-02-26T12:55:03",
            "upload_time_iso_8601": "2024-02-26T12:55:03.295579Z",
            "url": "https://files.pythonhosted.org/packages/4e/02/88a45072e75d2389849866cc92f461ec3fbe4615cc6d9d50f9b6af62eb3b/reclass_rs-0.4.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb1117e55c416aba399ddc452b6ddcaf522700dedc40f456cf88deedb6824ffd",
                "md5": "7cacc8c3025d82645bbd1a5444e4e891",
                "sha256": "98f07c37459f6ac536e9eba959f7be22f812849a94b3305c8df823e8c61b0159"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7cacc8c3025d82645bbd1a5444e4e891",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2278809,
            "upload_time": "2024-02-26T12:55:04",
            "upload_time_iso_8601": "2024-02-26T12:55:04.770384Z",
            "url": "https://files.pythonhosted.org/packages/fb/11/17e55c416aba399ddc452b6ddcaf522700dedc40f456cf88deedb6824ffd/reclass_rs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05b34902194218a3fc8c19694c34b1e75f336adf8e5f44a645fa797d1761bb7e",
                "md5": "187f611510742121540a2c447435df16",
                "sha256": "08fdeea644e5e5e27c69f0dbd1aa769d9c16af93a2419c3e0ee2e692016c608b"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "187f611510742121540a2c447435df16",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2222143,
            "upload_time": "2024-02-26T12:55:06",
            "upload_time_iso_8601": "2024-02-26T12:55:06.828350Z",
            "url": "https://files.pythonhosted.org/packages/05/b3/4902194218a3fc8c19694c34b1e75f336adf8e5f44a645fa797d1761bb7e/reclass_rs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd78c2ca59250ddec290a7fa5133546324797ce28a2c05e7874e554eb2f87634",
                "md5": "27dce87de431c18b92ff244c2ffec61e",
                "sha256": "75c0b9ce6b8bfbddd0a9fe670fa440c1d8cd2ae9687a96827dc2d968869c52b3"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "27dce87de431c18b92ff244c2ffec61e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2457903,
            "upload_time": "2024-02-26T12:55:08",
            "upload_time_iso_8601": "2024-02-26T12:55:08.297470Z",
            "url": "https://files.pythonhosted.org/packages/fd/78/c2ca59250ddec290a7fa5133546324797ce28a2c05e7874e554eb2f87634/reclass_rs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e27ab820b9c313332ddb0945b97238fa6f86a7c9c9aa68c8eb0c3b6adc9bd1d",
                "md5": "1814b08dcd6abd9cc1d7e16e10dc36f0",
                "sha256": "2ef6c1af4c993f1b7fd69f26425e77f98a6519a747024084fcd38dcb070c6641"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1814b08dcd6abd9cc1d7e16e10dc36f0",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2579580,
            "upload_time": "2024-02-26T12:55:10",
            "upload_time_iso_8601": "2024-02-26T12:55:10.106584Z",
            "url": "https://files.pythonhosted.org/packages/3e/27/ab820b9c313332ddb0945b97238fa6f86a7c9c9aa68c8eb0c3b6adc9bd1d/reclass_rs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0fe84806f000d821d73d5bb48b80a11cfb7b766174767a15f5cebf98ea314538",
                "md5": "9e5721d0d576aa45db7f981a6f7a6217",
                "sha256": "020bed0189328aae7ed12647232c6821d440b8ec81e7b737067adb6bdbfd3233"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e5721d0d576aa45db7f981a6f7a6217",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2305444,
            "upload_time": "2024-02-26T12:55:11",
            "upload_time_iso_8601": "2024-02-26T12:55:11.751737Z",
            "url": "https://files.pythonhosted.org/packages/0f/e8/4806f000d821d73d5bb48b80a11cfb7b766174767a15f5cebf98ea314538/reclass_rs-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db1072176bb12728bc725fb5657a9e316d32a2f73fdcfba08734aecf7065380f",
                "md5": "84902e30e2454bee5d8d656894adc5ac",
                "sha256": "8a473b1a634d7032b4e5ba6e1eaa5aecef07795b8601ed1f35715c5bb6339a88"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "84902e30e2454bee5d8d656894adc5ac",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2343766,
            "upload_time": "2024-02-26T12:55:13",
            "upload_time_iso_8601": "2024-02-26T12:55:13.248625Z",
            "url": "https://files.pythonhosted.org/packages/db/10/72176bb12728bc725fb5657a9e316d32a2f73fdcfba08734aecf7065380f/reclass_rs-0.4.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f6a8edd19cb15af1ad3b012afe19a6e42ec4bd29e0019244363c6ca21d692a1",
                "md5": "cb19444bb8846ff66f368cfa1983335f",
                "sha256": "ae5d9ec7fa64e231af20d23efcd0a1dc89eaeb3594611f1bdca2096ca368d67b"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cb19444bb8846ff66f368cfa1983335f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2279037,
            "upload_time": "2024-02-26T12:55:14",
            "upload_time_iso_8601": "2024-02-26T12:55:14.775462Z",
            "url": "https://files.pythonhosted.org/packages/4f/6a/8edd19cb15af1ad3b012afe19a6e42ec4bd29e0019244363c6ca21d692a1/reclass_rs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4be7f63e1391be86475bbb0194738ee7502f44bd680b7c99d7b67235102f2671",
                "md5": "162f15d0811b6574780c7cbaf04f7c11",
                "sha256": "23a3f2a710a9590f1ad79d99a9d264d4917e4f8b8a64d09de92eb2b7f8c3372f"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "162f15d0811b6574780c7cbaf04f7c11",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2221355,
            "upload_time": "2024-02-26T12:55:16",
            "upload_time_iso_8601": "2024-02-26T12:55:16.219560Z",
            "url": "https://files.pythonhosted.org/packages/4b/e7/f63e1391be86475bbb0194738ee7502f44bd680b7c99d7b67235102f2671/reclass_rs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb37e15a30d673f9bf4da5b28f62df5f392f81559578b8228d9b36ecf9249ac7",
                "md5": "c4d732267cd81c2422ede25259343c8a",
                "sha256": "4ae7a1ac4b78a994cb0d119d454caf93776528eb0ad5fd742785d6503e96ffab"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c4d732267cd81c2422ede25259343c8a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2457985,
            "upload_time": "2024-02-26T12:55:17",
            "upload_time_iso_8601": "2024-02-26T12:55:17.682843Z",
            "url": "https://files.pythonhosted.org/packages/cb/37/e15a30d673f9bf4da5b28f62df5f392f81559578b8228d9b36ecf9249ac7/reclass_rs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b1ac573418c23ceeca67bf4aa45ffc6779b62fc038c0e30f8ca5dd9c306f60f1",
                "md5": "10a72a0dadc0a753545fcb8fd111b5e2",
                "sha256": "068b33a19652260c1e551d5ef415eb73493b810dec77250393c31753388ba94c"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "10a72a0dadc0a753545fcb8fd111b5e2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2582666,
            "upload_time": "2024-02-26T12:55:19",
            "upload_time_iso_8601": "2024-02-26T12:55:19.072664Z",
            "url": "https://files.pythonhosted.org/packages/b1/ac/573418c23ceeca67bf4aa45ffc6779b62fc038c0e30f8ca5dd9c306f60f1/reclass_rs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a28afd42faf46c23b20d052d1ccfbd84b6bce7d6501e593ae4a304fec3cfaec",
                "md5": "db8dd6e05d599e8f0c86e357ed0b53d7",
                "sha256": "9573ff1eeb8f7f103c7a3b292a9348537e17d1b8e4e2ca792ae3776d4533bb76"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db8dd6e05d599e8f0c86e357ed0b53d7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2305616,
            "upload_time": "2024-02-26T12:55:20",
            "upload_time_iso_8601": "2024-02-26T12:55:20.761092Z",
            "url": "https://files.pythonhosted.org/packages/9a/28/afd42faf46c23b20d052d1ccfbd84b6bce7d6501e593ae4a304fec3cfaec/reclass_rs-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3aaa5d5655029ca1e6223d9aaa09f649ac37ca422ae1afd4fd80e429a261da1",
                "md5": "1bb29a14630398cc60292fa2ebd26b49",
                "sha256": "6fe5c7f24c0f6f0baac91404620cf32c103658030213deee4fb6e9ed725d8cc8"
            },
            "downloads": -1,
            "filename": "reclass_rs-0.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1bb29a14630398cc60292fa2ebd26b49",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 76840,
            "upload_time": "2024-02-26T12:55:22",
            "upload_time_iso_8601": "2024-02-26T12:55:22.205068Z",
            "url": "https://files.pythonhosted.org/packages/b3/aa/a5d5655029ca1e6223d9aaa09f649ac37ca422ae1afd4fd80e429a261da1/reclass_rs-0.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-26 12:55:22",
    "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.20146s