stacrs


Namestacrs JSON
Version 0.3.0 PyPI version JSON
download
home_pageNone
SummaryA no-dependency Python package for STAC, using Rust under the hood.
upload_time2024-11-22 12:20:40
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords stac geospatial
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # stacrs

[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/gadomski/stacrs/ci.yaml?branch=main&style=for-the-badge)](https://github.com/gadomski/stacrs/actions/workflows/ci.yaml)
[![PyPI - Version](https://img.shields.io/pypi/v/stacrs?style=for-the-badge)](https://pypi.org/project/stacrs)
![PyPI - License](https://img.shields.io/pypi/l/stacrs?style=for-the-badge)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg?style=for-the-badge)](./CODE_OF_CONDUCT)

A small no-dependency Python package for [STAC](https://stacspec.org/), using Rust under the hood.

## Usage

Install via **pip**:

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

Then:

```python
import stacrs

# Search a STAC API
items = stacrs.search(
    "https://landsatlook.usgs.gov/stac-server",
    collections="landsat-c2l2-sr",
    intersects={"type": "Point", "coordinates": [-105.119, 40.173]},
    sortby="-properties.datetime",
    max_items=100,
)

# Write items to a stac-geoparquet file
stacrs.write("items.parquet", items)

# Read items from a stac-geoparquet file as an item collection
item_collection = stacrs.read("items.parquet")

# Use `search_to` for better performance if you know you'll be writing the items
# to a file
stacrs.search_to(
    "items.parquet",
    "https://landsatlook.usgs.gov/stac-server",
    collections="landsat-c2l2-sr",
    intersects={"type": "Point", "coordinates": [-105.119, 40.173]},
    sortby="-properties.datetime",
    max_items=100,
)
```

See [the documentation](https://gadom.ski/stacrs) for details.
In particular, our [example notebook](https://gadom.ski/stacrs/latest/example/) demonstrates some of the more interesting features.

## Comparisons

This package (intentionally) has limited functionality, as it is _not_ intended to be a replacement for existing Python STAC packages.
[pystac](https://pystac.readthedocs.io) is a mature Python library with a significantly richer API for working with STAC objects.
For querying STAC APIs, [pystac-client](https://pystac-client.readthedocs.io) is more feature-rich than our simplistic `stacrs.search`.

That being said, it is hoped that **stacrs** will be a nice complement to the existing Python STAC ecosystem by providing a no-dependency package with unique capabilities, such as searching directly into a stac-geoparquet file.

## Development

Get [Rust](https://rustup.rs/) and [uv](https://docs.astral.sh/uv/getting-started/installation/).
Then:

```shell
git clone git@github.com:gadomski/stacrs.git
cd stacrs
uv sync  # This will take a little while while the Rust dependencies build
uv run pytest
```

See [CONTRIBUTING.md](./CONTRIBUTING.md) for more information about contributing to this project.

## License

**stacrs** is dual-licensed under both the MIT license and the Apache license (Version 2.0).
See [LICENSE-APACHE](./LICENSE-APACHE) and [LICENSE-MIT](./LICENSE-MIT) for details.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "stacrs",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "stac, geospatial",
    "author": null,
    "author_email": "Pete Gadomski <pete.gadomski@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/60/c0/cf94a072855a032f1bb2a9131f125a38a2d5e010e1de68c49615f8eb2208/stacrs-0.3.0.tar.gz",
    "platform": null,
    "description": "# stacrs\n\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/gadomski/stacrs/ci.yaml?branch=main&style=for-the-badge)](https://github.com/gadomski/stacrs/actions/workflows/ci.yaml)\n[![PyPI - Version](https://img.shields.io/pypi/v/stacrs?style=for-the-badge)](https://pypi.org/project/stacrs)\n![PyPI - License](https://img.shields.io/pypi/l/stacrs?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\nA small no-dependency Python package for [STAC](https://stacspec.org/), using Rust under the hood.\n\n## Usage\n\nInstall via **pip**:\n\n```shell\npython -m pip install stacrs\n```\n\nThen:\n\n```python\nimport stacrs\n\n# Search a STAC API\nitems = stacrs.search(\n    \"https://landsatlook.usgs.gov/stac-server\",\n    collections=\"landsat-c2l2-sr\",\n    intersects={\"type\": \"Point\", \"coordinates\": [-105.119, 40.173]},\n    sortby=\"-properties.datetime\",\n    max_items=100,\n)\n\n# Write items to a stac-geoparquet file\nstacrs.write(\"items.parquet\", items)\n\n# Read items from a stac-geoparquet file as an item collection\nitem_collection = stacrs.read(\"items.parquet\")\n\n# Use `search_to` for better performance if you know you'll be writing the items\n# to a file\nstacrs.search_to(\n    \"items.parquet\",\n    \"https://landsatlook.usgs.gov/stac-server\",\n    collections=\"landsat-c2l2-sr\",\n    intersects={\"type\": \"Point\", \"coordinates\": [-105.119, 40.173]},\n    sortby=\"-properties.datetime\",\n    max_items=100,\n)\n```\n\nSee [the documentation](https://gadom.ski/stacrs) for details.\nIn particular, our [example notebook](https://gadom.ski/stacrs/latest/example/) demonstrates some of the more interesting features.\n\n## Comparisons\n\nThis package (intentionally) has limited functionality, as it is _not_ intended to be a replacement for existing Python STAC packages.\n[pystac](https://pystac.readthedocs.io) is a mature Python library with a significantly richer API for working with STAC objects.\nFor querying STAC APIs, [pystac-client](https://pystac-client.readthedocs.io) is more feature-rich than our simplistic `stacrs.search`.\n\nThat being said, it is hoped that **stacrs** will be a nice complement to the existing Python STAC ecosystem by providing a no-dependency package with unique capabilities, such as searching directly into a stac-geoparquet file.\n\n## Development\n\nGet [Rust](https://rustup.rs/) and [uv](https://docs.astral.sh/uv/getting-started/installation/).\nThen:\n\n```shell\ngit clone git@github.com:gadomski/stacrs.git\ncd stacrs\nuv sync  # This will take a little while while the Rust dependencies build\nuv run pytest\n```\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md) for more information about contributing to this project.\n\n## License\n\n**stacrs** is dual-licensed under both the MIT license and the Apache license (Version 2.0).\nSee [LICENSE-APACHE](./LICENSE-APACHE) and [LICENSE-MIT](./LICENSE-MIT) for details.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A no-dependency Python package for STAC, using Rust under the hood.",
    "version": "0.3.0",
    "project_urls": {
        "Documentation": "https://gadom.ski/stacrs",
        "Issues": "https://github.com/gadomski/stacrs/issues",
        "Repository": "https://github.com/gadomski/stacrs"
    },
    "split_keywords": [
        "stac",
        " geospatial"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07d0e3ab0dd154020621dec8e715c429ca66126ce24b93e25493efc6172f93eb",
                "md5": "40d60768b498a71001780aa67d3dacd5",
                "sha256": "7dce86ab72b663d6d52f9e968aa30a9f5f099e4434ea71cb3c79a98264578dc7"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "40d60768b498a71001780aa67d3dacd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 16108451,
            "upload_time": "2024-11-22T12:19:31",
            "upload_time_iso_8601": "2024-11-22T12:19:31.644586Z",
            "url": "https://files.pythonhosted.org/packages/07/d0/e3ab0dd154020621dec8e715c429ca66126ce24b93e25493efc6172f93eb/stacrs-0.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34cd6d82cfe78cbd617cb57302e3ce29c79fb5c154c86aaac523a9a51d729801",
                "md5": "5a793a940191bec66a57fb251f7ac959",
                "sha256": "5fd475c02006edae24d8b1c15bc90aac18dd6f360e254a8fae4f59ffbf228a72"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5a793a940191bec66a57fb251f7ac959",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 20218605,
            "upload_time": "2024-11-22T12:18:46",
            "upload_time_iso_8601": "2024-11-22T12:18:46.559387Z",
            "url": "https://files.pythonhosted.org/packages/34/cd/6d82cfe78cbd617cb57302e3ce29c79fb5c154c86aaac523a9a51d729801/stacrs-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c873ff6132d0387bba53b38ed6f13f15dc1ba7a3d13fe34ec017bd8cd3a7ae1",
                "md5": "2dcc084f88ea49ee2f52f305c22a3516",
                "sha256": "391de3ba44fcac5e85ece5bde0933b7ca7e97f1ae486ef6ad92da9d5501e150a"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2dcc084f88ea49ee2f52f305c22a3516",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 23854615,
            "upload_time": "2024-11-22T12:19:07",
            "upload_time_iso_8601": "2024-11-22T12:19:07.999452Z",
            "url": "https://files.pythonhosted.org/packages/2c/87/3ff6132d0387bba53b38ed6f13f15dc1ba7a3d13fe34ec017bd8cd3a7ae1/stacrs-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d51bb70c0dd86b70254c6765d189e0d07838734b53a94cc87a60ec4f0f00b3e6",
                "md5": "d90ac5018cd214ad71cd135a8ac7f269",
                "sha256": "b851cc15e96a2c6b0c8b17fed51c7cf01184714f4d886a0bbfb194bc21e1a179"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d90ac5018cd214ad71cd135a8ac7f269",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 21934424,
            "upload_time": "2024-11-22T12:18:57",
            "upload_time_iso_8601": "2024-11-22T12:18:57.208073Z",
            "url": "https://files.pythonhosted.org/packages/d5/1b/b70c0dd86b70254c6765d189e0d07838734b53a94cc87a60ec4f0f00b3e6/stacrs-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6821370f619650163cb882c4845c4f556f2a7e28c3b117609dbab1a28d7ac317",
                "md5": "3c8282fd34f9eafa54f11e03ffa32b46",
                "sha256": "1c1baabbbf447ef50043cd3f43dc7597bbc82c8814df2d7c0de10c347f1d7864"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c8282fd34f9eafa54f11e03ffa32b46",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 21851769,
            "upload_time": "2024-11-22T12:19:18",
            "upload_time_iso_8601": "2024-11-22T12:19:18.634997Z",
            "url": "https://files.pythonhosted.org/packages/68/21/370f619650163cb882c4845c4f556f2a7e28c3b117609dbab1a28d7ac317/stacrs-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56203a46084fc13217b61fbdd83be6ed89ec542622dea305d0732fcb572aae55",
                "md5": "c83881c98820c71863194b6059b5aa6b",
                "sha256": "da0db6735135ea63163502e04a5fa7bb7a1b26095dbe0b09642686be0b35449d"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c83881c98820c71863194b6059b5aa6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 27108640,
            "upload_time": "2024-11-22T12:19:46",
            "upload_time_iso_8601": "2024-11-22T12:19:46.759412Z",
            "url": "https://files.pythonhosted.org/packages/56/20/3a46084fc13217b61fbdd83be6ed89ec542622dea305d0732fcb572aae55/stacrs-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73241aac4140c50aad906ac66a1a704d2974ddcad67eb024003b21b45d570c9e",
                "md5": "93afc37b2ae3451bc2653deaca2a22ac",
                "sha256": "c24f2cafbca9f2785a0828d1105533b645ab0227109e832921a73ec460f591cb"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "93afc37b2ae3451bc2653deaca2a22ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 26928327,
            "upload_time": "2024-11-22T12:20:03",
            "upload_time_iso_8601": "2024-11-22T12:20:03.140403Z",
            "url": "https://files.pythonhosted.org/packages/73/24/1aac4140c50aad906ac66a1a704d2974ddcad67eb024003b21b45d570c9e/stacrs-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8690053420019722f0ab5c5a1ed7f4a83716d845622e9126d08907ccf6cffda9",
                "md5": "3b96078136d0e95f8ba1bc3a92f64f2f",
                "sha256": "4d05bdb50020450288e102bc1b6ca6ce8244917c79a0fe3e177a4974e3bb112c"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3b96078136d0e95f8ba1bc3a92f64f2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 29307581,
            "upload_time": "2024-11-22T12:20:15",
            "upload_time_iso_8601": "2024-11-22T12:20:15.868933Z",
            "url": "https://files.pythonhosted.org/packages/86/90/053420019722f0ab5c5a1ed7f4a83716d845622e9126d08907ccf6cffda9/stacrs-0.3.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efad85d771a4b9a4acd44c8b37cd8d28b49458710fed0ed9eff8aa3423080f99",
                "md5": "b4221904f3f99b2e2a6a8da11ef51f46",
                "sha256": "bacb893b20588566bc5256e841b2e6e9cbc2c916acc2e136ef23ca67285ad2b4"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4221904f3f99b2e2a6a8da11ef51f46",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 27941144,
            "upload_time": "2024-11-22T12:20:28",
            "upload_time_iso_8601": "2024-11-22T12:20:28.160202Z",
            "url": "https://files.pythonhosted.org/packages/ef/ad/85d771a4b9a4acd44c8b37cd8d28b49458710fed0ed9eff8aa3423080f99/stacrs-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b1525c4a2a76d854b9b6d0149e96a624ccc4de872b21b8b733d428afff230e0",
                "md5": "ea1aa03d3713de7812c2c66251bf6b71",
                "sha256": "afdfdb38f5d7bb23b01d4075723c0b30bd33b752561f41693afc714eea987558"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea1aa03d3713de7812c2c66251bf6b71",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 17827894,
            "upload_time": "2024-11-22T12:19:39",
            "upload_time_iso_8601": "2024-11-22T12:19:39.483837Z",
            "url": "https://files.pythonhosted.org/packages/1b/15/25c4a2a76d854b9b6d0149e96a624ccc4de872b21b8b733d428afff230e0/stacrs-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2b67c1bc31afad28b506a8a2f2d4f770d7871888c595e05be5943be45d26bf8",
                "md5": "92c2e1d9adc027d3f779019437f0894d",
                "sha256": "5037cba36c2babf1d2b28cb238d8c8502f06959bf1d98af762cc2785690ecd63"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "92c2e1d9adc027d3f779019437f0894d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 16108513,
            "upload_time": "2024-11-22T12:19:33",
            "upload_time_iso_8601": "2024-11-22T12:19:33.861923Z",
            "url": "https://files.pythonhosted.org/packages/e2/b6/7c1bc31afad28b506a8a2f2d4f770d7871888c595e05be5943be45d26bf8/stacrs-0.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "595580c6fd12f5fbf573d2c94cd79ff3dac746adb0f21b8396914f14dc3cb343",
                "md5": "2f4779e50f110ba117aa6f89e6bbd909",
                "sha256": "6a2a6a1ecf95ccc29ea4cf22e062e93bf3883bddd83ea9592b0168b513808915"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2f4779e50f110ba117aa6f89e6bbd909",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 20218872,
            "upload_time": "2024-11-22T12:18:49",
            "upload_time_iso_8601": "2024-11-22T12:18:49.374994Z",
            "url": "https://files.pythonhosted.org/packages/59/55/80c6fd12f5fbf573d2c94cd79ff3dac746adb0f21b8396914f14dc3cb343/stacrs-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbd37c62e2d3d6c3d1e9f8280dce5d0d6f92820ad697aa0586c60e5a362c2a75",
                "md5": "a9e9f6fe464235df790cf8651b9d045f",
                "sha256": "b4630fb6ff994bfb3c227cf69f2f97d4c7182d695222954dc8c7e7cd6ed8d1de"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a9e9f6fe464235df790cf8651b9d045f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 23854764,
            "upload_time": "2024-11-22T12:19:10",
            "upload_time_iso_8601": "2024-11-22T12:19:10.788281Z",
            "url": "https://files.pythonhosted.org/packages/bb/d3/7c62e2d3d6c3d1e9f8280dce5d0d6f92820ad697aa0586c60e5a362c2a75/stacrs-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4a894a3088ba6966178b0f6a2f0f51eadd318ecf2f6f442ee365b3ed4401e22",
                "md5": "f045c0f70783a2ed420770206d8f889c",
                "sha256": "ec5288fb213c8ec1efb5bb21b14190b1a252b25fe22db0a7e609eec2370a0ae0"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f045c0f70783a2ed420770206d8f889c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 21935165,
            "upload_time": "2024-11-22T12:19:00",
            "upload_time_iso_8601": "2024-11-22T12:19:00.052526Z",
            "url": "https://files.pythonhosted.org/packages/e4/a8/94a3088ba6966178b0f6a2f0f51eadd318ecf2f6f442ee365b3ed4401e22/stacrs-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e39a728632ebe9c1c9bc1e899744a57a4b466d2aad3a6e691140e6d375d510d3",
                "md5": "460558dfb2a7fac623d2958c06abdfd2",
                "sha256": "8620dfe4ed6028e8458a18415292d09530f2f63ccdce57f9a90cd1ba03229511"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "460558dfb2a7fac623d2958c06abdfd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 21851514,
            "upload_time": "2024-11-22T12:19:21",
            "upload_time_iso_8601": "2024-11-22T12:19:21.521716Z",
            "url": "https://files.pythonhosted.org/packages/e3/9a/728632ebe9c1c9bc1e899744a57a4b466d2aad3a6e691140e6d375d510d3/stacrs-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43f8c34fa30e3869eb7bcb019b90d44bc4c2190c70a9e17fcee93aa1a297685c",
                "md5": "3382ef0df28b63333b1526a99073c123",
                "sha256": "751d9820d92e9bb9564958c5ea367fcb8694eb19a5ee3a2cde7e34b0f01ca21a"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3382ef0df28b63333b1526a99073c123",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 27108488,
            "upload_time": "2024-11-22T12:19:49",
            "upload_time_iso_8601": "2024-11-22T12:19:49.453264Z",
            "url": "https://files.pythonhosted.org/packages/43/f8/c34fa30e3869eb7bcb019b90d44bc4c2190c70a9e17fcee93aa1a297685c/stacrs-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "418dc92211e9258a3df487da56df348ded80b2a1987f67b2b353d0998d6dfa60",
                "md5": "a10a7dfb3174faefa9c22a810bb4d15b",
                "sha256": "d400e7e9c1245100405ab14c24893e579b116f7083f9183b98d893f36855e30c"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a10a7dfb3174faefa9c22a810bb4d15b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 26927615,
            "upload_time": "2024-11-22T12:20:06",
            "upload_time_iso_8601": "2024-11-22T12:20:06.385252Z",
            "url": "https://files.pythonhosted.org/packages/41/8d/c92211e9258a3df487da56df348ded80b2a1987f67b2b353d0998d6dfa60/stacrs-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eceaf6b0db2dbddf3266313d6a984dabb2c366775804c2daa322f8063c6e2a6b",
                "md5": "1402fe714ed7e6253cd394471287dc64",
                "sha256": "7b3aeacad5cb2ebf4ff7f8383e7ee8ab9e53f621ac2e8bed61714d2668af3b24"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1402fe714ed7e6253cd394471287dc64",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 29307131,
            "upload_time": "2024-11-22T12:20:19",
            "upload_time_iso_8601": "2024-11-22T12:20:19.582168Z",
            "url": "https://files.pythonhosted.org/packages/ec/ea/f6b0db2dbddf3266313d6a984dabb2c366775804c2daa322f8063c6e2a6b/stacrs-0.3.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0197407ef11aaccdd9a1cb7ae5dc041d9da391607680c471d506d8513499dd4f",
                "md5": "fe05a1cc44ad65dfd907025bdc429d95",
                "sha256": "124aa2eb43befdf9682355bae85ac96afec57c52788679ec9a807bbf27396731"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe05a1cc44ad65dfd907025bdc429d95",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 27941109,
            "upload_time": "2024-11-22T12:20:30",
            "upload_time_iso_8601": "2024-11-22T12:20:30.976280Z",
            "url": "https://files.pythonhosted.org/packages/01/97/407ef11aaccdd9a1cb7ae5dc041d9da391607680c471d506d8513499dd4f/stacrs-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8798fe05b97df5e6355921000d30391a0e70a50b2a75883ad4c20779e988ae74",
                "md5": "b3adb3e0adc9839b3ff0133817bbca0e",
                "sha256": "812cd58187a7eb1556338d501b784a68d2eb83995bc9c24034d29ae77e991d36"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3adb3e0adc9839b3ff0133817bbca0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 17827857,
            "upload_time": "2024-11-22T12:19:42",
            "upload_time_iso_8601": "2024-11-22T12:19:42.566241Z",
            "url": "https://files.pythonhosted.org/packages/87/98/fe05b97df5e6355921000d30391a0e70a50b2a75883ad4c20779e988ae74/stacrs-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3b8773dca315918e5f8496718726f20aaa2a3fde19a82b8e4f128c49aad483e",
                "md5": "20b00e38a75ce9a44bdea4d486a9ed8b",
                "sha256": "002eda619c5e7935587ab30d6247b4cdb602a28998dcfe9a2c5b12114e88b5e3"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "20b00e38a75ce9a44bdea4d486a9ed8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 16113023,
            "upload_time": "2024-11-22T12:19:36",
            "upload_time_iso_8601": "2024-11-22T12:19:36.981069Z",
            "url": "https://files.pythonhosted.org/packages/c3/b8/773dca315918e5f8496718726f20aaa2a3fde19a82b8e4f128c49aad483e/stacrs-0.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edd31da809f0bfcf6fcb11a0fe9c147a7efa76139019d4f3f16ecf45d4efe99a",
                "md5": "943700c115efdbb003e065f9311e559e",
                "sha256": "91a2d89d2653a38072ad6498e4950a8f0216c1fc64edc240bdaa397f368e192e"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "943700c115efdbb003e065f9311e559e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 20213202,
            "upload_time": "2024-11-22T12:18:52",
            "upload_time_iso_8601": "2024-11-22T12:18:52.322713Z",
            "url": "https://files.pythonhosted.org/packages/ed/d3/1da809f0bfcf6fcb11a0fe9c147a7efa76139019d4f3f16ecf45d4efe99a/stacrs-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3df29bf133f109f78fb026bfde45f5afd1ebddf8655c552144b9044d8e5bb6d0",
                "md5": "f7184eaca5c083c4eb4ebf7f9a21a0bc",
                "sha256": "76137fba3735ada863c3ed67c24d7f65f3bcac1e1b90e2990e14f35b2108feb1"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f7184eaca5c083c4eb4ebf7f9a21a0bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 23852986,
            "upload_time": "2024-11-22T12:19:13",
            "upload_time_iso_8601": "2024-11-22T12:19:13.273897Z",
            "url": "https://files.pythonhosted.org/packages/3d/f2/9bf133f109f78fb026bfde45f5afd1ebddf8655c552144b9044d8e5bb6d0/stacrs-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45b17dd82838584dc5cfd650f0345f1bc6e12729224fff11eeb33a0ed735956d",
                "md5": "c2a7af60e330dfac922b19e8914de470",
                "sha256": "b46f5303b63b1d066e97deabdd198b5e2f86dfdbfcfceaf5e82603e852fcde49"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c2a7af60e330dfac922b19e8914de470",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 21937587,
            "upload_time": "2024-11-22T12:19:02",
            "upload_time_iso_8601": "2024-11-22T12:19:02.675474Z",
            "url": "https://files.pythonhosted.org/packages/45/b1/7dd82838584dc5cfd650f0345f1bc6e12729224fff11eeb33a0ed735956d/stacrs-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a11772d58bb348f454c423ffbe3c2c88099ba4c8847c002c1c4e29d42fd56ee",
                "md5": "e054f1c43e8e34f08dfdb045b6be472f",
                "sha256": "e4987958f729048b3fa4b406257975edc7493de198239e51b46b2409e5e23faa"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e054f1c43e8e34f08dfdb045b6be472f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 21851352,
            "upload_time": "2024-11-22T12:19:25",
            "upload_time_iso_8601": "2024-11-22T12:19:25.027419Z",
            "url": "https://files.pythonhosted.org/packages/4a/11/772d58bb348f454c423ffbe3c2c88099ba4c8847c002c1c4e29d42fd56ee/stacrs-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "291fdc80c6e788734e9eb494d5e1a1ed33e4c66e735147d3833ae131cf8619a3",
                "md5": "e6408c9c4acac20cb85382aec2515946",
                "sha256": "af6f9df5d44890e87e1235e4f35a67b623204ee3327e94b0f1987e5f83c514f0"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e6408c9c4acac20cb85382aec2515946",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 27117735,
            "upload_time": "2024-11-22T12:19:53",
            "upload_time_iso_8601": "2024-11-22T12:19:53.940678Z",
            "url": "https://files.pythonhosted.org/packages/29/1f/dc80c6e788734e9eb494d5e1a1ed33e4c66e735147d3833ae131cf8619a3/stacrs-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "278e23ea12e24b2d646f15f40cdaae5301f3befb4dd04ab5f08909b76ab74982",
                "md5": "4402320e59fa58a16d94166535e30c1e",
                "sha256": "783335d974e006ae9ad9c4c37b1210e0f84c7df579a8de9db2815c996cd8637d"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4402320e59fa58a16d94166535e30c1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 26926327,
            "upload_time": "2024-11-22T12:20:09",
            "upload_time_iso_8601": "2024-11-22T12:20:09.728608Z",
            "url": "https://files.pythonhosted.org/packages/27/8e/23ea12e24b2d646f15f40cdaae5301f3befb4dd04ab5f08909b76ab74982/stacrs-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a0e6e8dae9d947abb4bf92f6af3d0f042988019b81a73fd516db2bcb88722e9",
                "md5": "b01b2733ebc7efbac07065aeb51c97c1",
                "sha256": "52b7cd19e7f28579832164e57f59c9244497338ee55ef6fa0614ffb4febfd87c"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b01b2733ebc7efbac07065aeb51c97c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 29306059,
            "upload_time": "2024-11-22T12:20:22",
            "upload_time_iso_8601": "2024-11-22T12:20:22.347891Z",
            "url": "https://files.pythonhosted.org/packages/9a/0e/6e8dae9d947abb4bf92f6af3d0f042988019b81a73fd516db2bcb88722e9/stacrs-0.3.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c98517d76434579eac0c62a65b8faa34630229a71c18c400d7cbcdddff64b79",
                "md5": "eebe9cb860a73a1967e6aa35e0ef8153",
                "sha256": "d737dfa8ba3fe692705d20936567ecd6321b5236507ff127532e181a20d85f86"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eebe9cb860a73a1967e6aa35e0ef8153",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 27945785,
            "upload_time": "2024-11-22T12:20:34",
            "upload_time_iso_8601": "2024-11-22T12:20:34.927085Z",
            "url": "https://files.pythonhosted.org/packages/3c/98/517d76434579eac0c62a65b8faa34630229a71c18c400d7cbcdddff64b79/stacrs-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba8690998ac6f1251702e160cb07f525c0c06022a53339f2e7b638a232a1d7bc",
                "md5": "78adbb24a9e3dd73a5207c2d17f9b5de",
                "sha256": "52f5d368ade4957054d297ade18a5de44cd109abe0227f52252a363feb4ff564"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "78adbb24a9e3dd73a5207c2d17f9b5de",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 20218978,
            "upload_time": "2024-11-22T12:18:54",
            "upload_time_iso_8601": "2024-11-22T12:18:54.775480Z",
            "url": "https://files.pythonhosted.org/packages/ba/86/90998ac6f1251702e160cb07f525c0c06022a53339f2e7b638a232a1d7bc/stacrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be6d6b109221d7b8e695989909010e60f37d05bc619c66613bbb6a64ab17bc15",
                "md5": "990899a7c2e2612baa443f5f7433b523",
                "sha256": "dfe3ab0dcdf52777d98648b49124d8890ffed2e48f1a1949ef2efa8d2da7eaee"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "990899a7c2e2612baa443f5f7433b523",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 23860137,
            "upload_time": "2024-11-22T12:19:15",
            "upload_time_iso_8601": "2024-11-22T12:19:15.851397Z",
            "url": "https://files.pythonhosted.org/packages/be/6d/6b109221d7b8e695989909010e60f37d05bc619c66613bbb6a64ab17bc15/stacrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9748f1d992d2773e1309ea37e26a91c5b2b5f8d99cb900a4ea01239ae75c182",
                "md5": "2793fb089ddbf962f5c5138ba05c484a",
                "sha256": "29aa46d9571fe60aaff35c9fcef6623877363ee3aa451125fed1b2ea56f99914"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2793fb089ddbf962f5c5138ba05c484a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 21934547,
            "upload_time": "2024-11-22T12:19:05",
            "upload_time_iso_8601": "2024-11-22T12:19:05.374700Z",
            "url": "https://files.pythonhosted.org/packages/e9/74/8f1d992d2773e1309ea37e26a91c5b2b5f8d99cb900a4ea01239ae75c182/stacrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e104555ba4b9df1b46d086fa18233b3ae8caf2f9d01c253101d397ecd2e8ff5",
                "md5": "9cf068b6d30c4434296548e6ff6752f5",
                "sha256": "7af9ebc5dccd0d01a4708c79fa281355d058237ce2130d10f5331d3bf33f49b9"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9cf068b6d30c4434296548e6ff6752f5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 21852312,
            "upload_time": "2024-11-22T12:19:28",
            "upload_time_iso_8601": "2024-11-22T12:19:28.787454Z",
            "url": "https://files.pythonhosted.org/packages/4e/10/4555ba4b9df1b46d086fa18233b3ae8caf2f9d01c253101d397ecd2e8ff5/stacrs-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "02d063fcf004415eb7483582e2b698ecd6f4787993a177b455cd11e5dcf1b5fe",
                "md5": "86f09dd509b3c7410c34aaa96f3353a2",
                "sha256": "5c86009e8ae0e63ca89974c02ed73b22800954692c67accbe2df4f7368dd41c4"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "86f09dd509b3c7410c34aaa96f3353a2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 27114792,
            "upload_time": "2024-11-22T12:19:59",
            "upload_time_iso_8601": "2024-11-22T12:19:59.619833Z",
            "url": "https://files.pythonhosted.org/packages/02/d0/63fcf004415eb7483582e2b698ecd6f4787993a177b455cd11e5dcf1b5fe/stacrs-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5147019fc1675230d6a6cfed6bff7f00d363c239768362196af7b3146f027f8a",
                "md5": "61e0afa11d58c6a381e8dcdec83084dc",
                "sha256": "8ea3aea9e1817602bba446951a1f264e47bb6379aec9b92454ca4d689e2a9b54"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "61e0afa11d58c6a381e8dcdec83084dc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 26930319,
            "upload_time": "2024-11-22T12:20:13",
            "upload_time_iso_8601": "2024-11-22T12:20:13.111798Z",
            "url": "https://files.pythonhosted.org/packages/51/47/019fc1675230d6a6cfed6bff7f00d363c239768362196af7b3146f027f8a/stacrs-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa102bd59966f6183dc4d63e77ed5d5f329c8afd0cde113dfdd386a6f8645561",
                "md5": "91325f95e102406c97caf185b6694140",
                "sha256": "14fc0eba5aa59768b85b5b65a33774adbf740b81259d5c41e8f3a9227e0bfdc8"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "91325f95e102406c97caf185b6694140",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 29312922,
            "upload_time": "2024-11-22T12:20:25",
            "upload_time_iso_8601": "2024-11-22T12:20:25.025520Z",
            "url": "https://files.pythonhosted.org/packages/aa/10/2bd59966f6183dc4d63e77ed5d5f329c8afd0cde113dfdd386a6f8645561/stacrs-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "422e21ddc172057b2d3a53f81cb79f0f6a64fba3c50decad5ef6b6180042369c",
                "md5": "89283854f9754854e366f32ad02ccc54",
                "sha256": "f70ab4caa1275d7a0493f68aa9f5e463f1708c5ddfcdebad568eef140e454102"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89283854f9754854e366f32ad02ccc54",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 27942670,
            "upload_time": "2024-11-22T12:20:37",
            "upload_time_iso_8601": "2024-11-22T12:20:37.640460Z",
            "url": "https://files.pythonhosted.org/packages/42/2e/21ddc172057b2d3a53f81cb79f0f6a64fba3c50decad5ef6b6180042369c/stacrs-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60c0cf94a072855a032f1bb2a9131f125a38a2d5e010e1de68c49615f8eb2208",
                "md5": "52e4a094989d32f2e1ac0b43e255bc3b",
                "sha256": "0b321137b06a7a6be118d81a5dac01657252ed3f5c3c6b0f20f30ad10cd27a96"
            },
            "downloads": -1,
            "filename": "stacrs-0.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "52e4a094989d32f2e1ac0b43e255bc3b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 462646,
            "upload_time": "2024-11-22T12:20:40",
            "upload_time_iso_8601": "2024-11-22T12:20:40.516455Z",
            "url": "https://files.pythonhosted.org/packages/60/c0/cf94a072855a032f1bb2a9131f125a38a2d5e010e1de68c49615f8eb2208/stacrs-0.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-22 12:20:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gadomski",
    "github_project": "stacrs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "stacrs"
}
        
Elapsed time: 0.43549s