stacrs-cli


Namestacrs-cli JSON
Version 0.4.1 PyPI version JSON
download
home_pagehttps://stac-utils.github.io/stac-rs
SummaryA STAC command-line interface written in Rust
upload_time2024-12-18 14:53:45
maintainerNone
docs_urlNone
authorPete Gadomski <pete.gadomski@gmail.com>
requires_python>=3.8
licenseMIT OR Apache-2.0
keywords stac geospatial
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # stac-cli

[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/stac-utils/stac-rs/ci.yml?branch=main&style=for-the-badge)](https://github.com/stac-utils/stac-rs/actions/workflows/ci.yml)
[![docs.rs](https://img.shields.io/docsrs/stac-cli?style=for-the-badge)](https://docs.rs/stac-cli/latest/stac_cli/)
[![Crates.io](https://img.shields.io/crates/v/stac-cli?style=for-the-badge)](https://crates.io/crates/stac-cli)
![Crates.io](https://img.shields.io/crates/l/stac-cli?style=for-the-badge)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg?style=for-the-badge)](./CODE_OF_CONDUCT)

Command Line Interface (CLI) for [STAC](https://stacspec.org/), named `stacrs`.

## Installation

```shell
python -m pip install stacrs-cli
```

Or:

```sh
cargo install stac-cli
```

Then:

```shell
stacrs --help
```

## Usage

**stacrs** provides the following subcommands:

- `stacrs item`: create STAC items and combine them into item collections
- `stacrs migrate`: migrate a STAC object to another version
- `stacrs search`: search STAC APIs (and geoparquet, with the experimental `duckdb` feature)
- `stacrs serve`: serve a STAC API (optionally, with a [pgstac](https://github.com/stac-utils/pgstac) backend)
- `stacrs translate`: convert STAC values from one format to another
- `stacrs validate`: validate STAC items, catalogs, and collections using [json-schema](https://json-schema.org/)

Use the `--help` flag to see all available options for the CLI and the subcommands:

## Features

This crate has features:

- `duckdb`: experimental support for querying [stac-geoparquet](https://github.com/stac-utils/stac-geoparquet) files using [DuckDB](https://duckdb.org/)
- `geoparquet`: read and write [stac-geoparquet](https://github.com/stac-utils/stac-geoparquet) (enabled by default)
- `pgstac`: enable a [pgstac](https://github.com/stac-utils/pgstac) backend for `stacrs serve` (enabled by default)
- `python`: create an entrypoint that can be called from Python (used to enable `python -m pip install stacrs-cli`)

If you don't want to use any of the default features:

```shell
cargo install stac-cli --no-default-features
```

## Other info

This crate is part of the [stac-rs](https://github.com/stac-utils/stac-rs) monorepo, see its README for contributing and license information.


            

Raw data

            {
    "_id": null,
    "home_page": "https://stac-utils.github.io/stac-rs",
    "name": "stacrs-cli",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "stac, geospatial",
    "author": "Pete Gadomski <pete.gadomski@gmail.com>",
    "author_email": "Pete Gadomski <pete.gadomski@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/31/06/0e6112d0c6967e19fa5e961bfce91c619746862e1e21f3d7731aeb8c8bb5/stacrs_cli-0.4.1.tar.gz",
    "platform": null,
    "description": "# stac-cli\n\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/stac-utils/stac-rs/ci.yml?branch=main&style=for-the-badge)](https://github.com/stac-utils/stac-rs/actions/workflows/ci.yml)\n[![docs.rs](https://img.shields.io/docsrs/stac-cli?style=for-the-badge)](https://docs.rs/stac-cli/latest/stac_cli/)\n[![Crates.io](https://img.shields.io/crates/v/stac-cli?style=for-the-badge)](https://crates.io/crates/stac-cli)\n![Crates.io](https://img.shields.io/crates/l/stac-cli?style=for-the-badge)\n[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg?style=for-the-badge)](./CODE_OF_CONDUCT)\n\nCommand Line Interface (CLI) for [STAC](https://stacspec.org/), named `stacrs`.\n\n## Installation\n\n```shell\npython -m pip install stacrs-cli\n```\n\nOr:\n\n```sh\ncargo install stac-cli\n```\n\nThen:\n\n```shell\nstacrs --help\n```\n\n## Usage\n\n**stacrs** provides the following subcommands:\n\n- `stacrs item`: create STAC items and combine them into item collections\n- `stacrs migrate`: migrate a STAC object to another version\n- `stacrs search`: search STAC APIs (and geoparquet, with the experimental `duckdb` feature)\n- `stacrs serve`: serve a STAC API (optionally, with a [pgstac](https://github.com/stac-utils/pgstac) backend)\n- `stacrs translate`: convert STAC values from one format to another\n- `stacrs validate`: validate STAC items, catalogs, and collections using [json-schema](https://json-schema.org/)\n\nUse the `--help` flag to see all available options for the CLI and the subcommands:\n\n## Features\n\nThis crate has features:\n\n- `duckdb`: experimental support for querying [stac-geoparquet](https://github.com/stac-utils/stac-geoparquet) files using [DuckDB](https://duckdb.org/)\n- `geoparquet`: read and write [stac-geoparquet](https://github.com/stac-utils/stac-geoparquet) (enabled by default)\n- `pgstac`: enable a [pgstac](https://github.com/stac-utils/pgstac) backend for `stacrs serve` (enabled by default)\n- `python`: create an entrypoint that can be called from Python (used to enable `python -m pip install stacrs-cli`)\n\nIf you don't want to use any of the default features:\n\n```shell\ncargo install stac-cli --no-default-features\n```\n\n## Other info\n\nThis crate is part of the [stac-rs](https://github.com/stac-utils/stac-rs) monorepo, see its README for contributing and license information.\n\n",
    "bugtrack_url": null,
    "license": "MIT OR Apache-2.0",
    "summary": "A STAC command-line interface written in Rust",
    "version": "0.4.1",
    "project_urls": {
        "Homepage": "https://stac-utils.github.io/stac-rs",
        "Issues": "https://github.com/stac-utils/stac-rs/issues",
        "Repository": "https://github.com/stac-utils/stac-rs"
    },
    "split_keywords": [
        "stac",
        " geospatial"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f4e814b5ef3be481a326a3655a417f4f0b9638672e4f2f18a0d6647a8b97704",
                "md5": "4dd18f723910d92e42099693ccb84417",
                "sha256": "481b89d46cd038b6245644ac7bc2fbb996b1247368e3a4b734f2846c6fa03333"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4dd18f723910d92e42099693ccb84417",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 14501224,
            "upload_time": "2024-12-18T14:49:00",
            "upload_time_iso_8601": "2024-12-18T14:49:00.650823Z",
            "url": "https://files.pythonhosted.org/packages/5f/4e/814b5ef3be481a326a3655a417f4f0b9638672e4f2f18a0d6647a8b97704/stacrs_cli-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae5b0d719abb0e926fcdc0dc65ccc81f6ac7c4cb61e266ce6bcfc1b5ea7350af",
                "md5": "c5cc0b2b4e4074a40215ffbe7d8e38b6",
                "sha256": "34735e6eda35772f4bf65ca48d2262659615269cd630df86bdfcbb98ef9a63ad"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c5cc0b2b4e4074a40215ffbe7d8e38b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 15936269,
            "upload_time": "2024-12-18T14:50:15",
            "upload_time_iso_8601": "2024-12-18T14:50:15.065899Z",
            "url": "https://files.pythonhosted.org/packages/ae/5b/0d719abb0e926fcdc0dc65ccc81f6ac7c4cb61e266ce6bcfc1b5ea7350af/stacrs_cli-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba27178e7a6141b7cf22aba616b8c27e3eb325535e1b315c68321cc370105882",
                "md5": "8195b4f57aa73decd5167198e4021b34",
                "sha256": "04e47298d2b1c9d986595bc03d1546cfb8be0da96a35138c5edc221e59cd7ec7"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8195b4f57aa73decd5167198e4021b34",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 15487096,
            "upload_time": "2024-12-18T14:49:35",
            "upload_time_iso_8601": "2024-12-18T14:49:35.993114Z",
            "url": "https://files.pythonhosted.org/packages/ba/27/178e7a6141b7cf22aba616b8c27e3eb325535e1b315c68321cc370105882/stacrs_cli-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8aaf2440d7143311018015d5f336e779c7bc659add74455e8517f9279302e4f1",
                "md5": "4a7d83d10318fc6e1f706ddfc56b8a38",
                "sha256": "8433f0b413ca8026b215f6218e2570f9ab3be137c7beade789cefcf9f570730d"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a7d83d10318fc6e1f706ddfc56b8a38",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 15343520,
            "upload_time": "2024-12-18T14:50:43",
            "upload_time_iso_8601": "2024-12-18T14:50:43.238229Z",
            "url": "https://files.pythonhosted.org/packages/8a/af/2440d7143311018015d5f336e779c7bc659add74455e8517f9279302e4f1/stacrs_cli-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdfa414145f9b789338a7ad77f89c1920adf1aea5266d68c991f9b1184b17339",
                "md5": "a65fd5c632f5a0b9417aa9b521b22e34",
                "sha256": "771b1ea613c8d7b3dfcfaea58abf80f666a3295ad1c8bc2b836daf7827dcb327"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a65fd5c632f5a0b9417aa9b521b22e34",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 15641194,
            "upload_time": "2024-12-18T14:51:34",
            "upload_time_iso_8601": "2024-12-18T14:51:34.682959Z",
            "url": "https://files.pythonhosted.org/packages/cd/fa/414145f9b789338a7ad77f89c1920adf1aea5266d68c991f9b1184b17339/stacrs_cli-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63fd3471e563a7998e2cea938aeed100f0270c08706aae635aba5e4d23c0b595",
                "md5": "f15c3c9e4f844f9cb98296e4ce55250f",
                "sha256": "566380910b572675e6964f5ab2202f54e1abc607f1fcf1c4c756fad27711b860"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f15c3c9e4f844f9cb98296e4ce55250f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 14753510,
            "upload_time": "2024-12-18T14:52:06",
            "upload_time_iso_8601": "2024-12-18T14:52:06.723306Z",
            "url": "https://files.pythonhosted.org/packages/63/fd/3471e563a7998e2cea938aeed100f0270c08706aae635aba5e4d23c0b595/stacrs_cli-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "680c8c42aaa9707517ab9cc3ed427902dafc86f4ecb038ce0b7ba6779b526854",
                "md5": "3563f7a8934cbdacd03bdf8e44bd4df4",
                "sha256": "ce99582be50a3f8701727d5cb8f7dd2e1f6c31838e26bc68e597041f0b990daa"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3563f7a8934cbdacd03bdf8e44bd4df4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 15311951,
            "upload_time": "2024-12-18T14:52:39",
            "upload_time_iso_8601": "2024-12-18T14:52:39.201054Z",
            "url": "https://files.pythonhosted.org/packages/68/0c/8c42aaa9707517ab9cc3ed427902dafc86f4ecb038ce0b7ba6779b526854/stacrs_cli-0.4.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d09754af53e3af8402504c25e4b34c44fc8d3428540a46f741fb91593dc21f1",
                "md5": "365e6e618f10c87bdfd964236af10898",
                "sha256": "e1f7828a5e90f8727847e05c3c03b0b31a322ca7d132ea691c935bef5d3d7a2b"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "365e6e618f10c87bdfd964236af10898",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 15489068,
            "upload_time": "2024-12-18T14:53:12",
            "upload_time_iso_8601": "2024-12-18T14:53:12.395206Z",
            "url": "https://files.pythonhosted.org/packages/7d/09/754af53e3af8402504c25e4b34c44fc8d3428540a46f741fb91593dc21f1/stacrs_cli-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "862f1d5fa63006a28595359bb50f05abc63d8c433062d2fb507e3dd1f346d9fd",
                "md5": "123cd3df412e14b6d9e3b7c40510a399",
                "sha256": "5940fe75ac7fe243e3a25c194d12236d8a901cd950bd28ca9171545e1b28fc3d"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "123cd3df412e14b6d9e3b7c40510a399",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 11965319,
            "upload_time": "2024-12-18T14:51:24",
            "upload_time_iso_8601": "2024-12-18T14:51:24.774020Z",
            "url": "https://files.pythonhosted.org/packages/86/2f/1d5fa63006a28595359bb50f05abc63d8c433062d2fb507e3dd1f346d9fd/stacrs_cli-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0dc7bf0c96661a9978cd356a084119818191789eafc0cebe22a2a044a57c5c5",
                "md5": "68a8ec9edd8851da66000011f32f8b88",
                "sha256": "76205edcc92ba85f4f3923b8b31559455150defd173b2455bd4e7003f7648809"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "68a8ec9edd8851da66000011f32f8b88",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 11360695,
            "upload_time": "2024-12-18T14:51:13",
            "upload_time_iso_8601": "2024-12-18T14:51:13.060423Z",
            "url": "https://files.pythonhosted.org/packages/a0/dc/7bf0c96661a9978cd356a084119818191789eafc0cebe22a2a044a57c5c5/stacrs_cli-0.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3bb45b212316e8ea4facf96f4eea604dcf3c07ffd7d1ff3874f3bab3a6450e43",
                "md5": "81fe6d04164930c9903367f08d6450d0",
                "sha256": "8f0d7e1b2d7364cdb82c583f20d6f52ecee543592c70411575ea1ba66c938c4b"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "81fe6d04164930c9903367f08d6450d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 14501006,
            "upload_time": "2024-12-18T14:49:04",
            "upload_time_iso_8601": "2024-12-18T14:49:04.491342Z",
            "url": "https://files.pythonhosted.org/packages/3b/b4/5b212316e8ea4facf96f4eea604dcf3c07ffd7d1ff3874f3bab3a6450e43/stacrs_cli-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f08915e31a7b1245b42fec4d87a4fc25c1f07dcef4e940e6b43645d80ad8e1b4",
                "md5": "3bf23bfc70de38d903edfbf150505671",
                "sha256": "8467addba5d0e43c2b5b56b1e12e302634f0aefe76f79751f91e20cbed9cd6d4"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3bf23bfc70de38d903edfbf150505671",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 15936332,
            "upload_time": "2024-12-18T14:50:19",
            "upload_time_iso_8601": "2024-12-18T14:50:19.639311Z",
            "url": "https://files.pythonhosted.org/packages/f0/89/15e31a7b1245b42fec4d87a4fc25c1f07dcef4e940e6b43645d80ad8e1b4/stacrs_cli-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1443a24e876f41a7b4d5e11ababbe80465ec453035177bab3e2af56cd92e7855",
                "md5": "3edc1da2eb1ec9c0dab175a35f5b4b2b",
                "sha256": "b695df24d2fae5bbbf6ccc2d217b2dd81c4ab472049936c40f10dbe045ebfec5"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3edc1da2eb1ec9c0dab175a35f5b4b2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 15487025,
            "upload_time": "2024-12-18T14:49:39",
            "upload_time_iso_8601": "2024-12-18T14:49:39.129414Z",
            "url": "https://files.pythonhosted.org/packages/14/43/a24e876f41a7b4d5e11ababbe80465ec453035177bab3e2af56cd92e7855/stacrs_cli-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb6778c73fd6dc8fadcc456a153fcaa39a772c0f4ec32f58efc7ba8a971238c5",
                "md5": "a2cc3f02e01f07ea1967f8f8c36d7bad",
                "sha256": "e7a411f41b178634490aeabcf65d05cd2dba373029a832f86a15cc7af1c98355"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a2cc3f02e01f07ea1967f8f8c36d7bad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 15342855,
            "upload_time": "2024-12-18T14:50:49",
            "upload_time_iso_8601": "2024-12-18T14:50:49.901594Z",
            "url": "https://files.pythonhosted.org/packages/eb/67/78c73fd6dc8fadcc456a153fcaa39a772c0f4ec32f58efc7ba8a971238c5/stacrs_cli-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3901f41da2deb8de2365a689f8eafdbfffb3d7ca3286ee47a858bc73f3c465d",
                "md5": "d1ac2649a2b148f82458842b6661d400",
                "sha256": "2d2b7f1f0ef825fb2351872198e79ddbfa5dab7932340565ddae665cf77d8642"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d1ac2649a2b148f82458842b6661d400",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 15640793,
            "upload_time": "2024-12-18T14:51:37",
            "upload_time_iso_8601": "2024-12-18T14:51:37.928534Z",
            "url": "https://files.pythonhosted.org/packages/c3/90/1f41da2deb8de2365a689f8eafdbfffb3d7ca3286ee47a858bc73f3c465d/stacrs_cli-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ba7d08fc1c5b5fc9a8b980dc7eed3b0436c25f8b43117b6fe184c315bd692c9",
                "md5": "9166ac50dcb2c0b6285587d36f084e01",
                "sha256": "20c0d096df7c7d6adaa9ad52eba63d63d278807c4d73908b14c59f1238b5cf6b"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9166ac50dcb2c0b6285587d36f084e01",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 14753130,
            "upload_time": "2024-12-18T14:52:09",
            "upload_time_iso_8601": "2024-12-18T14:52:09.735161Z",
            "url": "https://files.pythonhosted.org/packages/5b/a7/d08fc1c5b5fc9a8b980dc7eed3b0436c25f8b43117b6fe184c315bd692c9/stacrs_cli-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea7cc44c4524ddc04a259674babb6ccd25317dd2f74470b639d5a3933f38a643",
                "md5": "6c2ce3ce65f42de000b4da629d1d007c",
                "sha256": "379275d07f2162a9fa88c2bfddbcb5da9b7fe7c6f60732cfdf6a41cb73594e36"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6c2ce3ce65f42de000b4da629d1d007c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 15311799,
            "upload_time": "2024-12-18T14:52:42",
            "upload_time_iso_8601": "2024-12-18T14:52:42.292517Z",
            "url": "https://files.pythonhosted.org/packages/ea/7c/c44c4524ddc04a259674babb6ccd25317dd2f74470b639d5a3933f38a643/stacrs_cli-0.4.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3775194e3476899e031fa6ca864c40fed25b33e0c67a5c205c232d3aed06954a",
                "md5": "0d6bd393df24330b98644dd6f55be894",
                "sha256": "b4454a3cd0f63e7befea28577e740544fdabf0ee14c761a200d57db42e7eff69"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d6bd393df24330b98644dd6f55be894",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 15488378,
            "upload_time": "2024-12-18T14:53:16",
            "upload_time_iso_8601": "2024-12-18T14:53:16.046386Z",
            "url": "https://files.pythonhosted.org/packages/37/75/194e3476899e031fa6ca864c40fed25b33e0c67a5c205c232d3aed06954a/stacrs_cli-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc4ca891b31575e3def509998eb0a0dee7c40e0237f38c0025d834ce18d96aec",
                "md5": "14da8688483462e7603feb6a6371484f",
                "sha256": "639c44778d5a88736dbca36dbfd4108dee91d42a7a927f09ac442c92ff0d2ff0"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14da8688483462e7603feb6a6371484f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 11978036,
            "upload_time": "2024-12-18T14:51:28",
            "upload_time_iso_8601": "2024-12-18T14:51:28.731194Z",
            "url": "https://files.pythonhosted.org/packages/bc/4c/a891b31575e3def509998eb0a0dee7c40e0237f38c0025d834ce18d96aec/stacrs_cli-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5566cba7668bcf88d0390ce8b11b4a7f8b12753a0d4f0430d30af094a5c67f0e",
                "md5": "c9ac32a031e94a02054ee4f47f0cb42f",
                "sha256": "1045252ca3b9ed733fcfdda9390d70d01680e106831e92284e136d9511bd62be"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c9ac32a031e94a02054ee4f47f0cb42f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 11356841,
            "upload_time": "2024-12-18T14:51:17",
            "upload_time_iso_8601": "2024-12-18T14:51:17.623197Z",
            "url": "https://files.pythonhosted.org/packages/55/66/cba7668bcf88d0390ce8b11b4a7f8b12753a0d4f0430d30af094a5c67f0e/stacrs_cli-0.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1ad13f19c08d6e7fe8a5ea2f8f24e7fb7a70cf5d762753fc09230475d150ea3",
                "md5": "5ccb50f26f665cbca1898b26916b5331",
                "sha256": "4175aceca9ba4aa5376b215d40c90a26e17d195495b6bdb9a487296393158380"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5ccb50f26f665cbca1898b26916b5331",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 14496257,
            "upload_time": "2024-12-18T14:49:07",
            "upload_time_iso_8601": "2024-12-18T14:49:07.736735Z",
            "url": "https://files.pythonhosted.org/packages/a1/ad/13f19c08d6e7fe8a5ea2f8f24e7fb7a70cf5d762753fc09230475d150ea3/stacrs_cli-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87cf930a5d58da73f02c30e5bba996664dc91f19c5a05380325a70a9e437d376",
                "md5": "ba95a5ef95bb98c641181121e70c563a",
                "sha256": "0761da90dbfa10d54a4539940fb6584b85a54598d851218a57481474631177e9"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ba95a5ef95bb98c641181121e70c563a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 15928104,
            "upload_time": "2024-12-18T14:50:22",
            "upload_time_iso_8601": "2024-12-18T14:50:22.841728Z",
            "url": "https://files.pythonhosted.org/packages/87/cf/930a5d58da73f02c30e5bba996664dc91f19c5a05380325a70a9e437d376/stacrs_cli-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "788e78219e0116cefa8dda23d5bdefd2745f058ae387eb7d5b525367cbd637dc",
                "md5": "5260d52cf4946f14630135ec30fd4b2d",
                "sha256": "d657bdb75d13b8b05cfd1995b984d774e623631f1472f65212c54de460f226eb"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5260d52cf4946f14630135ec30fd4b2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 15483477,
            "upload_time": "2024-12-18T14:49:43",
            "upload_time_iso_8601": "2024-12-18T14:49:43.170181Z",
            "url": "https://files.pythonhosted.org/packages/78/8e/78219e0116cefa8dda23d5bdefd2745f058ae387eb7d5b525367cbd637dc/stacrs_cli-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa1287f2fcb0be4f6761b1e71fde0ddcb5550424a37dc2f18943bdcb94282474",
                "md5": "d83caa529e8d7420973c2e2e40ae97c9",
                "sha256": "8985452d4464279dd7dd405a7aa717d239daa029612e14307e8a8198d6820f18"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d83caa529e8d7420973c2e2e40ae97c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 15341937,
            "upload_time": "2024-12-18T14:50:55",
            "upload_time_iso_8601": "2024-12-18T14:50:55.048951Z",
            "url": "https://files.pythonhosted.org/packages/fa/12/87f2fcb0be4f6761b1e71fde0ddcb5550424a37dc2f18943bdcb94282474/stacrs_cli-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91d3371d3d1dba37c7281809303bda5163948fc3fa118f469b8056bcdfdc30b8",
                "md5": "65c2f580081b7c9e12e4a87a9d522111",
                "sha256": "d5a9bc7e78e7199e087f37cb6f6e4db407a45fea29f5c17d0a096be1a56de574"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "65c2f580081b7c9e12e4a87a9d522111",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 15633985,
            "upload_time": "2024-12-18T14:51:42",
            "upload_time_iso_8601": "2024-12-18T14:51:42.484724Z",
            "url": "https://files.pythonhosted.org/packages/91/d3/371d3d1dba37c7281809303bda5163948fc3fa118f469b8056bcdfdc30b8/stacrs_cli-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa00a8e659a420c0935cc00824329394b3811466f4c2a25f0b05ecbcfce91947",
                "md5": "2d45341dc07714e691ac41369695e51c",
                "sha256": "d9c3900ee929d5413b966800396490ab57ff58e336821a9b5d4d0b55191924ab"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2d45341dc07714e691ac41369695e51c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 14751937,
            "upload_time": "2024-12-18T14:52:13",
            "upload_time_iso_8601": "2024-12-18T14:52:13.989244Z",
            "url": "https://files.pythonhosted.org/packages/aa/00/a8e659a420c0935cc00824329394b3811466f4c2a25f0b05ecbcfce91947/stacrs_cli-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5bf012979be305cd1e3f94e36c92aeb03517903c8b0d54deb301da424efb015",
                "md5": "b95350ca13fbe95841ebe0acf408d9a1",
                "sha256": "aeabba9170a9f0bb026b0c66957f48fdadf40dd581b25905bb0bf56e893daa50"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b95350ca13fbe95841ebe0acf408d9a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 15314883,
            "upload_time": "2024-12-18T14:52:45",
            "upload_time_iso_8601": "2024-12-18T14:52:45.439351Z",
            "url": "https://files.pythonhosted.org/packages/f5/bf/012979be305cd1e3f94e36c92aeb03517903c8b0d54deb301da424efb015/stacrs_cli-0.4.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "109297d9c8812912171083760017a3f8b9f30f39941c72ffd96c378005562571",
                "md5": "1fdf717be2be309a38809c89b9e26d07",
                "sha256": "23e90ee3c95d34699fe5f9fc35f9ca918e10d16834db85caf9a27124d27efa61"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1fdf717be2be309a38809c89b9e26d07",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 15490226,
            "upload_time": "2024-12-18T14:53:19",
            "upload_time_iso_8601": "2024-12-18T14:53:19.343607Z",
            "url": "https://files.pythonhosted.org/packages/10/92/97d9c8812912171083760017a3f8b9f30f39941c72ffd96c378005562571/stacrs_cli-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7df2e94daf3ee81232574e983c383f2ddc53d0b31f4d8554b3c5bebaa5838e75",
                "md5": "02aa699864e1ed1530b7b90409cd7ebe",
                "sha256": "603c959196d5918bb144b1dfb87c6a7e14f6e8b885800c06156ba9878ff59763"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02aa699864e1ed1530b7b90409cd7ebe",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 11978227,
            "upload_time": "2024-12-18T14:51:31",
            "upload_time_iso_8601": "2024-12-18T14:51:31.532500Z",
            "url": "https://files.pythonhosted.org/packages/7d/f2/e94daf3ee81232574e983c383f2ddc53d0b31f4d8554b3c5bebaa5838e75/stacrs_cli-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd5b177bd565c66b423b31989db0e29e7ac3799303cde24163baed79b5024ae3",
                "md5": "e6e2dd1837f508ff48f1cba946fc150d",
                "sha256": "3f6dfbb5ea0b5a5dd986d4407242bb7515ab18f00cc58c2ff65e42ac1688de04"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e6e2dd1837f508ff48f1cba946fc150d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 11358027,
            "upload_time": "2024-12-18T14:51:21",
            "upload_time_iso_8601": "2024-12-18T14:51:21.814920Z",
            "url": "https://files.pythonhosted.org/packages/dd/5b/177bd565c66b423b31989db0e29e7ac3799303cde24163baed79b5024ae3/stacrs_cli-0.4.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3575b4e13967e45dec59e8cf19c8e1425229123ae93e93e9fc128da4546ba5f",
                "md5": "bbac554fce4adeaa3a478591ea5fc981",
                "sha256": "d4ab432bc852453358905df781ea9029948606fde5fad9fbfd536e6ce4e8b3bf"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bbac554fce4adeaa3a478591ea5fc981",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 14495469,
            "upload_time": "2024-12-18T14:49:10",
            "upload_time_iso_8601": "2024-12-18T14:49:10.980792Z",
            "url": "https://files.pythonhosted.org/packages/f3/57/5b4e13967e45dec59e8cf19c8e1425229123ae93e93e9fc128da4546ba5f/stacrs_cli-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "533229b431daa3b85b7449c176eb950333efa0233717e2d3657e23e9b7646c9d",
                "md5": "1a20e4a483d731995c656fdc3414070d",
                "sha256": "179974cf20f68f84bf3491599b798a34f808218ddf206465b79e4972ddd3879c"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1a20e4a483d731995c656fdc3414070d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 15927695,
            "upload_time": "2024-12-18T14:50:27",
            "upload_time_iso_8601": "2024-12-18T14:50:27.405828Z",
            "url": "https://files.pythonhosted.org/packages/53/32/29b431daa3b85b7449c176eb950333efa0233717e2d3657e23e9b7646c9d/stacrs_cli-0.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec1cee15687ffb40e0e01b55150f2b291dfb26562169c7af650953e57005ab7d",
                "md5": "31ab83abd3656085a736840c51345201",
                "sha256": "faf7a7e0dac9fd08f472ba7d0bcee1c344d962384867fa6ab8977403a2a01a0f"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "31ab83abd3656085a736840c51345201",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 15484153,
            "upload_time": "2024-12-18T14:49:47",
            "upload_time_iso_8601": "2024-12-18T14:49:47.234941Z",
            "url": "https://files.pythonhosted.org/packages/ec/1c/ee15687ffb40e0e01b55150f2b291dfb26562169c7af650953e57005ab7d/stacrs_cli-0.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a95e502a16d665c8d8e75ce31e9d8541221c9a48fd9ef1110e06897f18831c0f",
                "md5": "c72e525822ffd6f5bd3b9d8424cdd09b",
                "sha256": "9b29b6e04df95dd0c2bd8e9ff20a4a6c12731fa83777ffba4f18d761ceb9724b"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c72e525822ffd6f5bd3b9d8424cdd09b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 15342492,
            "upload_time": "2024-12-18T14:50:58",
            "upload_time_iso_8601": "2024-12-18T14:50:58.539355Z",
            "url": "https://files.pythonhosted.org/packages/a9/5e/502a16d665c8d8e75ce31e9d8541221c9a48fd9ef1110e06897f18831c0f/stacrs_cli-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b8f8865a8bc56fdb89ae6b392801ebd27d459cd13d23f5e23410d735498695e",
                "md5": "9dea4dfc4faf7efffaf528a1d5b1761c",
                "sha256": "6e1b20aea8183b555236ca8c72571963bd1dcf422fbb9f213bf8a3cd75c3643a"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9dea4dfc4faf7efffaf528a1d5b1761c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 15634647,
            "upload_time": "2024-12-18T14:51:46",
            "upload_time_iso_8601": "2024-12-18T14:51:46.327129Z",
            "url": "https://files.pythonhosted.org/packages/8b/8f/8865a8bc56fdb89ae6b392801ebd27d459cd13d23f5e23410d735498695e/stacrs_cli-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "584cf516e2f3440be886a8f4c2af7319653a1470027b86cd6f989635b45ec117",
                "md5": "30414c43747825254ba3f7658b232f70",
                "sha256": "1e395c43aa4a8a3ddbc1c6135e271282fbcc97a00926c638be49f8fa27f8ec73"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "30414c43747825254ba3f7658b232f70",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 14750689,
            "upload_time": "2024-12-18T14:52:17",
            "upload_time_iso_8601": "2024-12-18T14:52:17.236643Z",
            "url": "https://files.pythonhosted.org/packages/58/4c/f516e2f3440be886a8f4c2af7319653a1470027b86cd6f989635b45ec117/stacrs_cli-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5313807836ad1b318a8b83ceb05e05b0fc8d3fb6c205bdbf4c92d6d9c2790903",
                "md5": "fed410075828531d23a3d6e9bffe4352",
                "sha256": "398123cb2852884930d168f791d262fcfd6d6767342f2641b61668c95c69edf2"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "fed410075828531d23a3d6e9bffe4352",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 15314282,
            "upload_time": "2024-12-18T14:52:48",
            "upload_time_iso_8601": "2024-12-18T14:52:48.596770Z",
            "url": "https://files.pythonhosted.org/packages/53/13/807836ad1b318a8b83ceb05e05b0fc8d3fb6c205bdbf4c92d6d9c2790903/stacrs_cli-0.4.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f05232a7ff0cc7fb8658815d98eb025733669f0a285f88542243b62231271b0c",
                "md5": "13db282c08064084306de3c0d7d8354d",
                "sha256": "695a4756375b8f9490b9c733f539ed1651cee1681bd83cf03b1cc19f69f60b9d"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13db282c08064084306de3c0d7d8354d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 15487861,
            "upload_time": "2024-12-18T14:53:23",
            "upload_time_iso_8601": "2024-12-18T14:53:23.646919Z",
            "url": "https://files.pythonhosted.org/packages/f0/52/32a7ff0cc7fb8658815d98eb025733669f0a285f88542243b62231271b0c/stacrs_cli-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e00470d9b44d34a277672b4971a5539da5cbe5071065d3501a62993d5942079",
                "md5": "2a2cb014f7fee4aa3c6e4c4d10af131b",
                "sha256": "d213a28ee1bbb6ecc67981b16ab78b2ef915ed0ec33b167401c8828503cc371e"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2a2cb014f7fee4aa3c6e4c4d10af131b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 14496899,
            "upload_time": "2024-12-18T14:49:14",
            "upload_time_iso_8601": "2024-12-18T14:49:14.178234Z",
            "url": "https://files.pythonhosted.org/packages/2e/00/470d9b44d34a277672b4971a5539da5cbe5071065d3501a62993d5942079/stacrs_cli-0.4.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3213c06dcedef2a381bf010cda297be301d20482346d65e34a3cbe1c3da1da0c",
                "md5": "54017f843c736eecfd37e0a181b0e0f5",
                "sha256": "840b0b39e5512925322a801950b578218ef4bcd9d4d19575666d2e6ec99c4aa9"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "54017f843c736eecfd37e0a181b0e0f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 15490311,
            "upload_time": "2024-12-18T14:49:51",
            "upload_time_iso_8601": "2024-12-18T14:49:51.628404Z",
            "url": "https://files.pythonhosted.org/packages/32/13/c06dcedef2a381bf010cda297be301d20482346d65e34a3cbe1c3da1da0c/stacrs_cli-0.4.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "949ac6b6f2a9f91d1c066b1ea6018f14b72fa4065a05f23abdbdc8e41e77901e",
                "md5": "f16124198af95ddad08599893ed302c1",
                "sha256": "a7e58ab344665f9dc6bbade82f0fa4d01564fb891341a70b8576f05defcc33f3"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f16124198af95ddad08599893ed302c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 15639429,
            "upload_time": "2024-12-18T14:51:49",
            "upload_time_iso_8601": "2024-12-18T14:51:49.481476Z",
            "url": "https://files.pythonhosted.org/packages/94/9a/c6b6f2a9f91d1c066b1ea6018f14b72fa4065a05f23abdbdc8e41e77901e/stacrs_cli-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "01ae4225c5652073a42c35f2f7da7f762d91a4b40eba08908afcbbafbe96c31e",
                "md5": "d5dcd9f7e3b008d8d3f962b2a19e4422",
                "sha256": "3acb3a46edd2e9db98d5f8bc246e828de5dc302a3e0bf4462ba04d6c4fdd5373"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d5dcd9f7e3b008d8d3f962b2a19e4422",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 14758893,
            "upload_time": "2024-12-18T14:52:21",
            "upload_time_iso_8601": "2024-12-18T14:52:21.193737Z",
            "url": "https://files.pythonhosted.org/packages/01/ae/4225c5652073a42c35f2f7da7f762d91a4b40eba08908afcbbafbe96c31e/stacrs_cli-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6cee634c903aa73b815da21ba49ab145755e295242cf09bdcec00e9dfe3227ce",
                "md5": "4eb9f6d0ceaabfa3991d988e6b1d79ac",
                "sha256": "ef56d493c642de23fa263eb0eb32aac566118c3dd2b2b8246062123169f27948"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4eb9f6d0ceaabfa3991d988e6b1d79ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 15322544,
            "upload_time": "2024-12-18T14:52:53",
            "upload_time_iso_8601": "2024-12-18T14:52:53.048857Z",
            "url": "https://files.pythonhosted.org/packages/6c/ee/634c903aa73b815da21ba49ab145755e295242cf09bdcec00e9dfe3227ce/stacrs_cli-0.4.1-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e1a788d0d556d92706ad2cbb1bc9191798e21fb1ee3e07586e3f92d21a25e1d",
                "md5": "19ed1e21fb243da2ef704f08a9b72a15",
                "sha256": "2405c205963e6d9364515367c9bdfae22ce88118acb41748a8e105410ce9eb8a"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19ed1e21fb243da2ef704f08a9b72a15",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 15489831,
            "upload_time": "2024-12-18T14:53:26",
            "upload_time_iso_8601": "2024-12-18T14:53:26.638778Z",
            "url": "https://files.pythonhosted.org/packages/0e/1a/788d0d556d92706ad2cbb1bc9191798e21fb1ee3e07586e3f92d21a25e1d/stacrs_cli-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d480c1ea425381133e8a63a6624f3edb98b78ee799fd718e8cc58673d0ea21fb",
                "md5": "c3ff58b44072a2c1bdcd43763536b091",
                "sha256": "b35e5b932f2a0986035613f9a6a2e44c40880ce5cbf24827bec91a7f0b23b55f"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c3ff58b44072a2c1bdcd43763536b091",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 14499487,
            "upload_time": "2024-12-18T14:49:18",
            "upload_time_iso_8601": "2024-12-18T14:49:18.475571Z",
            "url": "https://files.pythonhosted.org/packages/d4/80/c1ea425381133e8a63a6624f3edb98b78ee799fd718e8cc58673d0ea21fb/stacrs_cli-0.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de919956c2f9094dea98e18dab3e6f3c9d29eadd1732363fb9ab5d1272a89048",
                "md5": "e6f58491dda4250e165d6db3b2dfd7eb",
                "sha256": "91a0188b47bbd54b7be0ead2832181a8fcbdd937b1ee40e195608903747c8ed6"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e6f58491dda4250e165d6db3b2dfd7eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 15935818,
            "upload_time": "2024-12-18T14:50:32",
            "upload_time_iso_8601": "2024-12-18T14:50:32.098169Z",
            "url": "https://files.pythonhosted.org/packages/de/91/9956c2f9094dea98e18dab3e6f3c9d29eadd1732363fb9ab5d1272a89048/stacrs_cli-0.4.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b926fb93199903d595b3455e580d6916b015d5b7bcafc825dbeb5a76b95f6f3",
                "md5": "d18c85382229dbb1ebbe44399eae6f20",
                "sha256": "8a096dddd2f8241cbe63d53b1c03e9eea466bb0038e0bd67304f4b232e83f5e6"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d18c85382229dbb1ebbe44399eae6f20",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 15486642,
            "upload_time": "2024-12-18T14:49:54",
            "upload_time_iso_8601": "2024-12-18T14:49:54.986691Z",
            "url": "https://files.pythonhosted.org/packages/7b/92/6fb93199903d595b3455e580d6916b015d5b7bcafc825dbeb5a76b95f6f3/stacrs_cli-0.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a903de43d866503295cb65d426e06459bb0aaa29541d2ab4caaf3c8c0be8f4d",
                "md5": "f79bf648b6b2c3b067baae6e4c84b0bd",
                "sha256": "0fa956640db862de671cdc5fd2fae09a1d168f9ff63a69f702f4ab0929a32245"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f79bf648b6b2c3b067baae6e4c84b0bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 15342479,
            "upload_time": "2024-12-18T14:51:01",
            "upload_time_iso_8601": "2024-12-18T14:51:01.637543Z",
            "url": "https://files.pythonhosted.org/packages/8a/90/3de43d866503295cb65d426e06459bb0aaa29541d2ab4caaf3c8c0be8f4d/stacrs_cli-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6497ae54a4f9690701ab0919f6be960b2eca3fe3caab5f224fbf2c6c74682287",
                "md5": "eb48a96816dadd55fa81f760fa31d440",
                "sha256": "7675452b869558ae79af8dbddc62ff462ee57b5601390cb7e5f47e4acf0c822c"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eb48a96816dadd55fa81f760fa31d440",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 15641087,
            "upload_time": "2024-12-18T14:51:52",
            "upload_time_iso_8601": "2024-12-18T14:51:52.529498Z",
            "url": "https://files.pythonhosted.org/packages/64/97/ae54a4f9690701ab0919f6be960b2eca3fe3caab5f224fbf2c6c74682287/stacrs_cli-0.4.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db0dc5b909e0384cc8c24bf40ede0e7d6b3e9253a4c9b005d1f12387a102e63d",
                "md5": "5b8400548a7a2bd0e6dd7c994fa1100b",
                "sha256": "e2443bfe45f456822a81fd63aca428d7b7ef7dfe3a718be910d99d32003b0f0f"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5b8400548a7a2bd0e6dd7c994fa1100b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 14752279,
            "upload_time": "2024-12-18T14:52:25",
            "upload_time_iso_8601": "2024-12-18T14:52:25.424347Z",
            "url": "https://files.pythonhosted.org/packages/db/0d/c5b909e0384cc8c24bf40ede0e7d6b3e9253a4c9b005d1f12387a102e63d/stacrs_cli-0.4.1-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98ce0be7caa257f1044dede1395bfecd73f204c1829039e31a992a70d6f2bcbf",
                "md5": "9f1427e1639625c50f922e1329e97bde",
                "sha256": "b31607725dadcaf8e13ab433659893f621700bef32ff230db1dd439b99cea22c"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9f1427e1639625c50f922e1329e97bde",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 15310609,
            "upload_time": "2024-12-18T14:52:58",
            "upload_time_iso_8601": "2024-12-18T14:52:58.539884Z",
            "url": "https://files.pythonhosted.org/packages/98/ce/0be7caa257f1044dede1395bfecd73f204c1829039e31a992a70d6f2bcbf/stacrs_cli-0.4.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "968e52c1689c6e890db71b64427ec9ce19d27dbb49f8596a66b632edf65d3755",
                "md5": "31559bf77c287c8ae78e32075aa28482",
                "sha256": "3c70a21751979d402150fb1f743241c28b7adf220cb5e95c8da61f5f8c47dcaf"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31559bf77c287c8ae78e32075aa28482",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 15488860,
            "upload_time": "2024-12-18T14:53:30",
            "upload_time_iso_8601": "2024-12-18T14:53:30.390258Z",
            "url": "https://files.pythonhosted.org/packages/96/8e/52c1689c6e890db71b64427ec9ce19d27dbb49f8596a66b632edf65d3755/stacrs_cli-0.4.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98bec062ca3281806d4e6c90a85cef4411e20d5ada79102b10efcfebd4cef0a5",
                "md5": "ce162f8257f2362c0b8575d7cc5b8af6",
                "sha256": "97af6ce12b07684d8d6c4ea7e0db0c677d94788c604f921bdb061289bdaa9f2e"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ce162f8257f2362c0b8575d7cc5b8af6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 14501181,
            "upload_time": "2024-12-18T14:49:22",
            "upload_time_iso_8601": "2024-12-18T14:49:22.102956Z",
            "url": "https://files.pythonhosted.org/packages/98/be/c062ca3281806d4e6c90a85cef4411e20d5ada79102b10efcfebd4cef0a5/stacrs_cli-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a40c21605d8fa9b3cb9b25f1749785f1331e94301e286cab5159a695019c720f",
                "md5": "7a22f4593bc584164cc70cb8c2a9a28a",
                "sha256": "5367dc910822a7f94c65a73d452ea47caa0bdc88b9f8587117007346b8b76c52"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7a22f4593bc584164cc70cb8c2a9a28a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 15935472,
            "upload_time": "2024-12-18T14:50:35",
            "upload_time_iso_8601": "2024-12-18T14:50:35.141119Z",
            "url": "https://files.pythonhosted.org/packages/a4/0c/21605d8fa9b3cb9b25f1749785f1331e94301e286cab5159a695019c720f/stacrs_cli-0.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33357419bafa245263efdc1fca9bd37013a3928cf9dd04a69f136be1117fd451",
                "md5": "ead942daa988eb8bbbcb537936838d26",
                "sha256": "702c2ee6b5cd8858f80c76a9c9a436a3e11cc23774cdbb60a6a3477fac755905"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ead942daa988eb8bbbcb537936838d26",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 15487030,
            "upload_time": "2024-12-18T14:50:01",
            "upload_time_iso_8601": "2024-12-18T14:50:01.407081Z",
            "url": "https://files.pythonhosted.org/packages/33/35/7419bafa245263efdc1fca9bd37013a3928cf9dd04a69f136be1117fd451/stacrs_cli-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c2ef43a6331c01e2db30493dcdaf3a39183abb406bc71acece20531b94221471",
                "md5": "38b36d2c7de3a833922740c6ff591c16",
                "sha256": "63711a7388e3fa2e3043a00d17deeaaca2789cbedff47b9c2b925e2ec728ecae"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38b36d2c7de3a833922740c6ff591c16",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 15343534,
            "upload_time": "2024-12-18T14:51:04",
            "upload_time_iso_8601": "2024-12-18T14:51:04.663827Z",
            "url": "https://files.pythonhosted.org/packages/c2/ef/43a6331c01e2db30493dcdaf3a39183abb406bc71acece20531b94221471/stacrs_cli-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6ca1111e1ff61f7a2cde28dfa855f5b32c4673a33d61e3a751f2c1fb5351678",
                "md5": "b106406625832684b61487429368d9a6",
                "sha256": "8c5fe53a7dec78af726f3dba1f1a6d42b2d36dce753229ce6fb6e18cba8cb354"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b106406625832684b61487429368d9a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 15641942,
            "upload_time": "2024-12-18T14:51:55",
            "upload_time_iso_8601": "2024-12-18T14:51:55.631513Z",
            "url": "https://files.pythonhosted.org/packages/a6/ca/1111e1ff61f7a2cde28dfa855f5b32c4673a33d61e3a751f2c1fb5351678/stacrs_cli-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4e3b574f067d25416dba21968565a7e134d3cc6af51f3214441ee001bd16dd9",
                "md5": "8be57f8f850cb882d3bda07ba41e2f21",
                "sha256": "fe2a9e850c5d00e335feb43c91cf44cd144ff71cfec5c455155eec728ba4f11a"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8be57f8f850cb882d3bda07ba41e2f21",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 14752890,
            "upload_time": "2024-12-18T14:52:28",
            "upload_time_iso_8601": "2024-12-18T14:52:28.528888Z",
            "url": "https://files.pythonhosted.org/packages/c4/e3/b574f067d25416dba21968565a7e134d3cc6af51f3214441ee001bd16dd9/stacrs_cli-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "419b83d22836a424c1a02af06af50cd556d5e355da41ac11c110bd9574861086",
                "md5": "a9d43675f04b4d3800e469b0a405304b",
                "sha256": "91b42a40b51da235fd69e70b7d758004f8ab8c4f840b4ca15f8d4a3b6b10cd8e"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a9d43675f04b4d3800e469b0a405304b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 15310871,
            "upload_time": "2024-12-18T14:53:01",
            "upload_time_iso_8601": "2024-12-18T14:53:01.690624Z",
            "url": "https://files.pythonhosted.org/packages/41/9b/83d22836a424c1a02af06af50cd556d5e355da41ac11c110bd9574861086/stacrs_cli-0.4.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56e2afeb8ec52e13b9e0c4f7ebc832127be34bbca200e0bdce977a139e5a1eea",
                "md5": "cfaac58c22a85b6ca7293a8c515d2fd4",
                "sha256": "6a6024f3c7f72ef00080d77ac170c15ce85e7b9e12fc9333f36843d671f4956c"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfaac58c22a85b6ca7293a8c515d2fd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 15489408,
            "upload_time": "2024-12-18T14:53:35",
            "upload_time_iso_8601": "2024-12-18T14:53:35.267730Z",
            "url": "https://files.pythonhosted.org/packages/56/e2/afeb8ec52e13b9e0c4f7ebc832127be34bbca200e0bdce977a139e5a1eea/stacrs_cli-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e72e7633fcb3e0c33e1932babe9ca68bb1672294563a6b394498f85cd2d31146",
                "md5": "51c01a5fb12dcf6c74737f1a5e050c55",
                "sha256": "9fdc3b903d26c754b90d12e24314fd06b01464ead9f06af289d2c4b66efc0bee"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "51c01a5fb12dcf6c74737f1a5e050c55",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 14501031,
            "upload_time": "2024-12-18T14:49:27",
            "upload_time_iso_8601": "2024-12-18T14:49:27.127082Z",
            "url": "https://files.pythonhosted.org/packages/e7/2e/7633fcb3e0c33e1932babe9ca68bb1672294563a6b394498f85cd2d31146/stacrs_cli-0.4.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "527a459fd421b31c89f6df00d811906c01cb90a47a5c65cf8d46f16e99cb2c59",
                "md5": "de6deb23970cab10e51d7b5c2cab559a",
                "sha256": "bcfb645e0b548f7db4776d1aac7e2c4887a4bddd190841c7e002262f79f1c3be"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "de6deb23970cab10e51d7b5c2cab559a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 15941525,
            "upload_time": "2024-12-18T14:50:38",
            "upload_time_iso_8601": "2024-12-18T14:50:38.782713Z",
            "url": "https://files.pythonhosted.org/packages/52/7a/459fd421b31c89f6df00d811906c01cb90a47a5c65cf8d46f16e99cb2c59/stacrs_cli-0.4.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3fcd690af48730f94d9f415071c56524a92e3fa5e9ebe3f2981dd6ca8ae92595",
                "md5": "e1c6a8d6f9d489954dfc4039f28f2c12",
                "sha256": "d63c2c2b602af41151e95741bddf124a300c5528448494941bf9efe2f12820b9"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e1c6a8d6f9d489954dfc4039f28f2c12",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 15489600,
            "upload_time": "2024-12-18T14:50:07",
            "upload_time_iso_8601": "2024-12-18T14:50:07.939210Z",
            "url": "https://files.pythonhosted.org/packages/3f/cd/690af48730f94d9f415071c56524a92e3fa5e9ebe3f2981dd6ca8ae92595/stacrs_cli-0.4.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b10cb3c96e7d89b0cfcf81e6862ccf957dbb1dd02b6a401865f625777085057e",
                "md5": "15fc762c28e079c691c1b89ddc6f0779",
                "sha256": "5c1100adcf87a7fc923f70c0ac58c7c623c6a9981b798172c5eb45d62216e1e3"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15fc762c28e079c691c1b89ddc6f0779",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 15343420,
            "upload_time": "2024-12-18T14:51:09",
            "upload_time_iso_8601": "2024-12-18T14:51:09.148393Z",
            "url": "https://files.pythonhosted.org/packages/b1/0c/b3c96e7d89b0cfcf81e6862ccf957dbb1dd02b6a401865f625777085057e/stacrs_cli-0.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5de489c5fffaafe2e87de987fc22b289d688dfdd21343f07ddb09bd318e37800",
                "md5": "dc50c401b17d1176f25c271ab080076e",
                "sha256": "379992093165a5db0c1cc8c3ee3a74ca74dbe7bf73f79610e96beda03bc987be"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dc50c401b17d1176f25c271ab080076e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 15648736,
            "upload_time": "2024-12-18T14:51:59",
            "upload_time_iso_8601": "2024-12-18T14:51:59.832862Z",
            "url": "https://files.pythonhosted.org/packages/5d/e4/89c5fffaafe2e87de987fc22b289d688dfdd21343f07ddb09bd318e37800/stacrs_cli-0.4.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a4a2f47b0be1e2608433480d0a6dcf85061dbf179248a41e2490aa047a456eb",
                "md5": "9a53e3f8922444be3a5d1b451f05a9f5",
                "sha256": "bcaae2acbda4db71a4d383dfc424ba1803a1b4fcc0320446b02ebca8a2a3d461"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9a53e3f8922444be3a5d1b451f05a9f5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 14759290,
            "upload_time": "2024-12-18T14:52:31",
            "upload_time_iso_8601": "2024-12-18T14:52:31.726812Z",
            "url": "https://files.pythonhosted.org/packages/6a/4a/2f47b0be1e2608433480d0a6dcf85061dbf179248a41e2490aa047a456eb/stacrs_cli-0.4.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0656b2c4115359ae3129da7aa545d1054c3cbb2fd27b6d38209e69476072cd7c",
                "md5": "2f1e7248b1f9e89b85e993538a32e556",
                "sha256": "1264e11bc18b0313d12caeb453557621d18ff9651cc19e44b29ecd891f98dcd0"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2f1e7248b1f9e89b85e993538a32e556",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 15306705,
            "upload_time": "2024-12-18T14:53:04",
            "upload_time_iso_8601": "2024-12-18T14:53:04.804025Z",
            "url": "https://files.pythonhosted.org/packages/06/56/b2c4115359ae3129da7aa545d1054c3cbb2fd27b6d38209e69476072cd7c/stacrs_cli-0.4.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85402249054b89cb56523f64d18293c7e0a085a030fa948b9a28703d166cc35b",
                "md5": "7e654e2e3d817daf1f22cc945a81f46f",
                "sha256": "e5dbf6daf1092bd5807a9dd00f2f6ba8b4a327c49cc474b81d91e15e7a740dc7"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e654e2e3d817daf1f22cc945a81f46f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 15492338,
            "upload_time": "2024-12-18T14:53:40",
            "upload_time_iso_8601": "2024-12-18T14:53:40.416259Z",
            "url": "https://files.pythonhosted.org/packages/85/40/2249054b89cb56523f64d18293c7e0a085a030fa948b9a28703d166cc35b/stacrs_cli-0.4.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea4116af9519bf6feecf29029c2ad87094aa3c35ab640bb8e9b8187ad85b8f7b",
                "md5": "3b3dfd6d8ce0ab0e203205cd5b09e1e3",
                "sha256": "4ef261ef4d8801e27cc9f9b9d2b1b72a8249a6fcf23ee2327703a26147f0e656"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3b3dfd6d8ce0ab0e203205cd5b09e1e3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 14501823,
            "upload_time": "2024-12-18T14:49:31",
            "upload_time_iso_8601": "2024-12-18T14:49:31.377024Z",
            "url": "https://files.pythonhosted.org/packages/ea/41/16af9519bf6feecf29029c2ad87094aa3c35ab640bb8e9b8187ad85b8f7b/stacrs_cli-0.4.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6eb79c23ea411deb7b3674ce73e893debd9dcea688ebfdedd0c58e70d679c04a",
                "md5": "5d557b59d405c401e7612050a6823666",
                "sha256": "80dca3cd1cf08c8aa43de080bc913073a7c63125e9413b2aae280c216264c857"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5d557b59d405c401e7612050a6823666",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 15489273,
            "upload_time": "2024-12-18T14:50:11",
            "upload_time_iso_8601": "2024-12-18T14:50:11.695263Z",
            "url": "https://files.pythonhosted.org/packages/6e/b7/9c23ea411deb7b3674ce73e893debd9dcea688ebfdedd0c58e70d679c04a/stacrs_cli-0.4.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0412989a0db3bdee9ad19d6407d0c73ccb3625905c0e460e878f36527d099b03",
                "md5": "63fdd229a5573d60adbde5dd8525ab8b",
                "sha256": "9051f25021372ae10852df5f910199b3cc354cc2ad031ab0c3b1661c44302c31"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "63fdd229a5573d60adbde5dd8525ab8b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 15648664,
            "upload_time": "2024-12-18T14:52:03",
            "upload_time_iso_8601": "2024-12-18T14:52:03.591529Z",
            "url": "https://files.pythonhosted.org/packages/04/12/989a0db3bdee9ad19d6407d0c73ccb3625905c0e460e878f36527d099b03/stacrs_cli-0.4.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4f0dc902e3730535e6fb86eb1eb1ae60fbcbf0c945504b21d6dad643ca2ed9b",
                "md5": "d31759f9a1efa9cba34d72a063973ad5",
                "sha256": "2ed0ce03bc61c2be0d119d196144cc44d574e4049867896d26b59213ba968e56"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d31759f9a1efa9cba34d72a063973ad5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 14759355,
            "upload_time": "2024-12-18T14:52:36",
            "upload_time_iso_8601": "2024-12-18T14:52:36.135705Z",
            "url": "https://files.pythonhosted.org/packages/a4/f0/dc902e3730535e6fb86eb1eb1ae60fbcbf0c945504b21d6dad643ca2ed9b/stacrs_cli-0.4.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55cbbb99aa55ebba616b7da3f93c2d048737c778f8c33545add67a58e20b9838",
                "md5": "29e51d382269a9d54ff39011f3bd7f6b",
                "sha256": "b7782f95a06866d5004c4cc4a3aa23ee9c026cad58df9cc4b952c9b31943447d"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "29e51d382269a9d54ff39011f3bd7f6b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 15307542,
            "upload_time": "2024-12-18T14:53:08",
            "upload_time_iso_8601": "2024-12-18T14:53:08.248522Z",
            "url": "https://files.pythonhosted.org/packages/55/cb/bb99aa55ebba616b7da3f93c2d048737c778f8c33545add67a58e20b9838/stacrs_cli-0.4.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45aef96be1324af673df90bfca621fa3936bcf98b8933bc55e6b31d9f5120a44",
                "md5": "bdcf9ce2fc21201b68621c5eb5b07907",
                "sha256": "c1696321ccb6ec46d2f23337caec1512fdecf963165a93694d4fd3c0c3ca8abc"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bdcf9ce2fc21201b68621c5eb5b07907",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 15492503,
            "upload_time": "2024-12-18T14:53:43",
            "upload_time_iso_8601": "2024-12-18T14:53:43.510912Z",
            "url": "https://files.pythonhosted.org/packages/45/ae/f96be1324af673df90bfca621fa3936bcf98b8933bc55e6b31d9f5120a44/stacrs_cli-0.4.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31060e6112d0c6967e19fa5e961bfce91c619746862e1e21f3d7731aeb8c8bb5",
                "md5": "b397d1f934aa4b488c53ddcf3bad37b0",
                "sha256": "fbd252f6c1200ea76b6c8981013bad7874e6919b13c0db0ea493c52f79f4288a"
            },
            "downloads": -1,
            "filename": "stacrs_cli-0.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "b397d1f934aa4b488c53ddcf3bad37b0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1691320,
            "upload_time": "2024-12-18T14:53:45",
            "upload_time_iso_8601": "2024-12-18T14:53:45.769609Z",
            "url": "https://files.pythonhosted.org/packages/31/06/0e6112d0c6967e19fa5e961bfce91c619746862e1e21f3d7731aeb8c8bb5/stacrs_cli-0.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-18 14:53:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "stac-utils",
    "github_project": "stac-rs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "stacrs-cli"
}
        
Elapsed time: 0.46632s