obstore


Nameobstore JSON
Version 0.4.0 PyPI version JSON
download
home_pagehttps://developmentseed.org/obstore
SummaryThe simplest, highest-throughput interface to Amazon S3, Google Cloud Storage, Azure Blob Storage, and S3-compliant APIs like Cloudflare R2.
upload_time2025-02-10 14:58:06
maintainerNone
docs_urlNone
authorKyle Barron <kyle@developmentseed.org>
requires_python>=3.9
licenseMIT OR Apache-2.0
keywords python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # obstore

[![PyPI][pypi_badge]][pypi_link]
[![Conda Version][conda_version_badge]][conda_version]
[![PyPI - Downloads][pypi-img]][pypi-link]

[pypi_badge]: https://badge.fury.io/py/obstore.svg
[pypi_link]: https://pypi.org/project/obstore/
[conda_version_badge]: https://img.shields.io/conda/vn/conda-forge/obstore.svg
[conda_version]: https://prefix.dev/channels/conda-forge/packages/obstore
[pypi-img]: https://img.shields.io/pypi/dm/obstore
[pypi-link]: https://pypi.org/project/obstore/

The simplest, highest-throughput [^1] Python interface to [S3][s3], [GCS][gcs], [Azure Storage][azure_storage], & other S3-compliant APIs, powered by Rust.

[s3]: https://aws.amazon.com/s3/
[gcs]: https://cloud.google.com/storage
[azure_storage]: https://learn.microsoft.com/en-us/azure/storage/common/storage-introduction

- Sync and async API with **full type hinting**.
- **Streaming downloads** with configurable chunking.
- **Streaming uploads** from async or sync iterators.
- **Streaming list**, with no need to paginate.
- Automatic [**multipart uploads**](https://docs.aws.amazon.com/AmazonS3/latest/userguide/mpuoverview.html) for large file objects.
- Support for **conditional put** ("put if not exists"), as well as custom tags and attributes.
- Optionally return list results in [Apache Arrow](https://arrow.apache.org/) format, which is faster and more memory-efficient than materializing Python `dict`s.
- File-like object API and [fsspec](https://github.com/fsspec/filesystem_spec) integration.
- Easy to install with no required Python dependencies.
- The [underlying Rust library](https://docs.rs/object_store) is production quality and used in large scale production systems, such as the Rust package registry [crates.io](https://crates.io/).
- Zero-copy data exchange between Rust and Python via the [buffer protocol](https://jakevdp.github.io/blog/2014/05/05/introduction-to-the-python-buffer-protocol/).

<!-- For Rust developers looking to add object_store support to their Python packages, refer to pyo3-object_store. -->

[^1]: Benchmarking is currently ongoing, but [early results](https://github.com/geospatial-jeff/pyasyncio-benchmark/blob/2d8ee4df8c2d93463323394f09fd094ad0381122/test_results/cog_header_results.csv) indicate 9x higher throughput than aioboto3 and fsspec.

## Installation

To install obstore using pip:

```sh
pip install obstore
```

Obstore is on [conda-forge](https://prefix.dev/channels/conda-forge/packages/obstore) and can be installed using [conda](https://docs.conda.io), [mamba](https://mamba.readthedocs.io/), or [pixi](https://pixi.sh/). To install obstore using conda:

```
conda install -c conda-forge obstore
```

## Documentation

[Full documentation is available on the website](https://developmentseed.org/obstore).

Head to [Getting Started](https://developmentseed.org/obstore/latest/getting-started/) to dig in.


            

Raw data

            {
    "_id": null,
    "home_page": "https://developmentseed.org/obstore",
    "name": "obstore",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "python",
    "author": "Kyle Barron <kyle@developmentseed.org>",
    "author_email": "Kyle Barron <kyle@developmentseed.org>",
    "download_url": null,
    "platform": null,
    "description": "# obstore\n\n[![PyPI][pypi_badge]][pypi_link]\n[![Conda Version][conda_version_badge]][conda_version]\n[![PyPI - Downloads][pypi-img]][pypi-link]\n\n[pypi_badge]: https://badge.fury.io/py/obstore.svg\n[pypi_link]: https://pypi.org/project/obstore/\n[conda_version_badge]: https://img.shields.io/conda/vn/conda-forge/obstore.svg\n[conda_version]: https://prefix.dev/channels/conda-forge/packages/obstore\n[pypi-img]: https://img.shields.io/pypi/dm/obstore\n[pypi-link]: https://pypi.org/project/obstore/\n\nThe simplest, highest-throughput [^1] Python interface to [S3][s3], [GCS][gcs], [Azure Storage][azure_storage], & other S3-compliant APIs, powered by Rust.\n\n[s3]: https://aws.amazon.com/s3/\n[gcs]: https://cloud.google.com/storage\n[azure_storage]: https://learn.microsoft.com/en-us/azure/storage/common/storage-introduction\n\n- Sync and async API with **full type hinting**.\n- **Streaming downloads** with configurable chunking.\n- **Streaming uploads** from async or sync iterators.\n- **Streaming list**, with no need to paginate.\n- Automatic [**multipart uploads**](https://docs.aws.amazon.com/AmazonS3/latest/userguide/mpuoverview.html) for large file objects.\n- Support for **conditional put** (\"put if not exists\"), as well as custom tags and attributes.\n- Optionally return list results in [Apache Arrow](https://arrow.apache.org/) format, which is faster and more memory-efficient than materializing Python `dict`s.\n- File-like object API and [fsspec](https://github.com/fsspec/filesystem_spec) integration.\n- Easy to install with no required Python dependencies.\n- The [underlying Rust library](https://docs.rs/object_store) is production quality and used in large scale production systems, such as the Rust package registry [crates.io](https://crates.io/).\n- Zero-copy data exchange between Rust and Python via the [buffer protocol](https://jakevdp.github.io/blog/2014/05/05/introduction-to-the-python-buffer-protocol/).\n\n<!-- For Rust developers looking to add object_store support to their Python packages, refer to pyo3-object_store. -->\n\n[^1]: Benchmarking is currently ongoing, but [early results](https://github.com/geospatial-jeff/pyasyncio-benchmark/blob/2d8ee4df8c2d93463323394f09fd094ad0381122/test_results/cog_header_results.csv) indicate 9x higher throughput than aioboto3 and fsspec.\n\n## Installation\n\nTo install obstore using pip:\n\n```sh\npip install obstore\n```\n\nObstore is on [conda-forge](https://prefix.dev/channels/conda-forge/packages/obstore) and can be installed using [conda](https://docs.conda.io), [mamba](https://mamba.readthedocs.io/), or [pixi](https://pixi.sh/). To install obstore using conda:\n\n```\nconda install -c conda-forge obstore\n```\n\n## Documentation\n\n[Full documentation is available on the website](https://developmentseed.org/obstore).\n\nHead to [Getting Started](https://developmentseed.org/obstore/latest/getting-started/) to dig in.\n\n",
    "bugtrack_url": null,
    "license": "MIT OR Apache-2.0",
    "summary": "The simplest, highest-throughput interface to Amazon S3, Google Cloud Storage, Azure Blob Storage, and S3-compliant APIs like Cloudflare R2.",
    "version": "0.4.0",
    "project_urls": {
        "Homepage": "https://developmentseed.org/obstore",
        "Source Code": "https://github.com/developmentseed/obstore"
    },
    "split_keywords": [
        "python"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4848d5114e5afc1ba74512b635dc391a54340085125c497b40863d00b268adbe",
                "md5": "53c989725338d5d9c967888dcc62d192",
                "sha256": "5289f9d2b3e76384594c678bf61b128d9d108439add15152cc67a3f126a54269"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "53c989725338d5d9c967888dcc62d192",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5371532,
            "upload_time": "2025-02-10T14:58:06",
            "upload_time_iso_8601": "2025-02-10T14:58:06.015986Z",
            "url": "https://files.pythonhosted.org/packages/48/48/d5114e5afc1ba74512b635dc391a54340085125c497b40863d00b268adbe/obstore-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "480a10f0cd0aa5d7cc8367658fe130467a3e197ee87ff0b468aa5336676c9356",
                "md5": "1eb8c1b80b1479ecb6ffb2b75404b44a",
                "sha256": "72a4a838a5311f4172c70da52bdcaa0c85d681708cb08f87fc47dacef441e3dd"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1eb8c1b80b1479ecb6ffb2b75404b44a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5055603,
            "upload_time": "2025-02-10T14:58:08",
            "upload_time_iso_8601": "2025-02-10T14:58:08.933106Z",
            "url": "https://files.pythonhosted.org/packages/48/0a/10f0cd0aa5d7cc8367658fe130467a3e197ee87ff0b468aa5336676c9356/obstore-0.4.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ca4d15136199796f246b783ab9274e95bf606b1fbe8d2860fd232e4c42effb7",
                "md5": "bea76933c2b6012aec14fbe37d1a6c02",
                "sha256": "fbef4a0d5b79290527ab99215accf2cd1f19a1c2f384491c526c7fb88716b732"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bea76933c2b6012aec14fbe37d1a6c02",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5380849,
            "upload_time": "2025-02-10T14:58:11",
            "upload_time_iso_8601": "2025-02-10T14:58:11.530243Z",
            "url": "https://files.pythonhosted.org/packages/8c/a4/d15136199796f246b783ab9274e95bf606b1fbe8d2860fd232e4c42effb7/obstore-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a64bfbd5d0a2576d155b61abe805076177b2c418ae2fd268b8c9bc397623804e",
                "md5": "aec531374e1c41b53dbc7d268d305aa2",
                "sha256": "bb1002100dad78b09fe222f2fe98153b70972b0a96217c6aacda038a2c95165d"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "aec531374e1c41b53dbc7d268d305aa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5431424,
            "upload_time": "2025-02-10T14:58:13",
            "upload_time_iso_8601": "2025-02-10T14:58:13.093479Z",
            "url": "https://files.pythonhosted.org/packages/a6/4b/fbd5d0a2576d155b61abe805076177b2c418ae2fd268b8c9bc397623804e/obstore-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8354af3b5b3fada4244319037b35b010993f7f7b579dc665324e1f4263f8c13f",
                "md5": "a470d980f0b02db78a5b5f480e293bb6",
                "sha256": "4b5037c258627e3c6c6ad04b85822ae3fa31d339be42115b15fbea3530b19e09"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a470d980f0b02db78a5b5f480e293bb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5666035,
            "upload_time": "2025-02-10T14:58:14",
            "upload_time_iso_8601": "2025-02-10T14:58:14.736987Z",
            "url": "https://files.pythonhosted.org/packages/83/54/af3b5b3fada4244319037b35b010993f7f7b579dc665324e1f4263f8c13f/obstore-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c95ffb2b7bf6ac5b3e46fd220f2124355d8245895883698cee1ad9ec4493bc10",
                "md5": "3a90937bca8e5c1219de93321cd67cee",
                "sha256": "4f2305673735b0cfe81707d518e2501b7cb7b3297781bab4ad44987ddcc2f9e9"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3a90937bca8e5c1219de93321cd67cee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 6873585,
            "upload_time": "2025-02-10T14:58:16",
            "upload_time_iso_8601": "2025-02-10T14:58:16.536818Z",
            "url": "https://files.pythonhosted.org/packages/c9/5f/fb2b7bf6ac5b3e46fd220f2124355d8245895883698cee1ad9ec4493bc10/obstore-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a46bb890896f5949cea6168ae97ccf21e61e732747e2a579dd5dedd9dd7cbf42",
                "md5": "215818876d5a1364c53300cc7c940fc7",
                "sha256": "f40816f10e866acaaafc8f24ce3b3bee418ba357541cbd46c0079c7f63e3fdfb"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "215818876d5a1364c53300cc7c940fc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5499357,
            "upload_time": "2025-02-10T14:58:18",
            "upload_time_iso_8601": "2025-02-10T14:58:18.945072Z",
            "url": "https://files.pythonhosted.org/packages/a4/6b/b890896f5949cea6168ae97ccf21e61e732747e2a579dd5dedd9dd7cbf42/obstore-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "069d935c055b9c8866f1a56c9c9af6e25aa7e0b996a084df233ff70d92964fbd",
                "md5": "90a59c479dfea7de4250c20b768d9abc",
                "sha256": "55ce93e06be84732742c0ac1c1da3e09f256f8886dfc593da94f3113eec04544"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-manylinux_2_24_aarch64.whl",
            "has_sig": false,
            "md5_digest": "90a59c479dfea7de4250c20b768d9abc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5330606,
            "upload_time": "2025-02-10T14:58:21",
            "upload_time_iso_8601": "2025-02-10T14:58:21.448211Z",
            "url": "https://files.pythonhosted.org/packages/06/9d/935c055b9c8866f1a56c9c9af6e25aa7e0b996a084df233ff70d92964fbd/obstore-0.4.0-cp310-cp310-manylinux_2_24_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa1713d342fc53d009f79521b45ce21e8266495411c947a53e65cdd61c36ad0a",
                "md5": "006b1c5d83125562eadbc7b7384493c2",
                "sha256": "7882d1df2851499caeda20b4af3f45132075fac8ca6dd5dcdcc8de475328e21c"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "006b1c5d83125562eadbc7b7384493c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5438162,
            "upload_time": "2025-02-10T14:58:23",
            "upload_time_iso_8601": "2025-02-10T14:58:23.564846Z",
            "url": "https://files.pythonhosted.org/packages/aa/17/13d342fc53d009f79521b45ce21e8266495411c947a53e65cdd61c36ad0a/obstore-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ce2f6f19e994f6a67e58d6b3ca366512f0436b1ce8f1299b8d0932aa6e89676",
                "md5": "0c21022b8fff17d22888957baec0e749",
                "sha256": "395b94d7f3eaf07c2d4a018c8f5ae1115918a3967715dbf8d2c7c571c80e9d8a"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0c21022b8fff17d22888957baec0e749",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5567570,
            "upload_time": "2025-02-10T14:58:25",
            "upload_time_iso_8601": "2025-02-10T14:58:25.091637Z",
            "url": "https://files.pythonhosted.org/packages/2c/e2/f6f19e994f6a67e58d6b3ca366512f0436b1ce8f1299b8d0932aa6e89676/obstore-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "554ffbd96b4720feb3b6d7db05a2e9a19677d2dcd029371e075420a5bfbbf2dd",
                "md5": "6c14994a845b5b77ebe5753152bd7bff",
                "sha256": "b213da09d0ca7846227d76ddc215476adb08339a1733cbb7fd726be501614f6d"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6c14994a845b5b77ebe5753152bd7bff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5449310,
            "upload_time": "2025-02-10T14:58:27",
            "upload_time_iso_8601": "2025-02-10T14:58:27.651800Z",
            "url": "https://files.pythonhosted.org/packages/55/4f/fbd96b4720feb3b6d7db05a2e9a19677d2dcd029371e075420a5bfbbf2dd/obstore-0.4.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1c3670566abdcf86f533394a6c3f01f640dc0f926d07d8562ff4383eb7eeb93",
                "md5": "2cd4c53e37c0bcc4167096b551c7d398",
                "sha256": "b94fe1c387885ac7bf98edb0f87a2585250c7d539144a284dfad30568083d7ad"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2cd4c53e37c0bcc4167096b551c7d398",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5626037,
            "upload_time": "2025-02-10T14:58:32",
            "upload_time_iso_8601": "2025-02-10T14:58:32.868691Z",
            "url": "https://files.pythonhosted.org/packages/f1/c3/670566abdcf86f533394a6c3f01f640dc0f926d07d8562ff4383eb7eeb93/obstore-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d47bc303fa4d9df5bbe237fa366ff632cb563b8846978edb5db730be3bf79dd5",
                "md5": "1e62f0403cf91ff28447e4f9869fc1ae",
                "sha256": "5fc1ab0318787028ae62069c579a6fdc56ec77cb5ec896931d7f2e2c4774f65b"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1e62f0403cf91ff28447e4f9869fc1ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5346606,
            "upload_time": "2025-02-10T14:58:34",
            "upload_time_iso_8601": "2025-02-10T14:58:34.642222Z",
            "url": "https://files.pythonhosted.org/packages/d4/7b/c303fa4d9df5bbe237fa366ff632cb563b8846978edb5db730be3bf79dd5/obstore-0.4.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6e71ab6c56055ed2ba7901e613432d8e296e9c6cb8f611b3059b9f68406fe36",
                "md5": "54f14602db7f5dd13c6166aba7f68520",
                "sha256": "204d9b6fec49d4a4ba33e7a391bfa2ba068e80b82858521a240695c9bf4643de"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54f14602db7f5dd13c6166aba7f68520",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5371630,
            "upload_time": "2025-02-10T14:58:36",
            "upload_time_iso_8601": "2025-02-10T14:58:36.761457Z",
            "url": "https://files.pythonhosted.org/packages/d6/e7/1ab6c56055ed2ba7901e613432d8e296e9c6cb8f611b3059b9f68406fe36/obstore-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "803c8648cbd3a95f8b475ecf091ad9b1f42d82a974746b3ac89d5880b77fb475",
                "md5": "36fa501620e89756ddc2e2e1bbb5ea42",
                "sha256": "80f3d23ca211b8d64fcbdd9d6406ab10795f0405c14a5309a59cb57a6b253e80"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "36fa501620e89756ddc2e2e1bbb5ea42",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5055837,
            "upload_time": "2025-02-10T14:58:38",
            "upload_time_iso_8601": "2025-02-10T14:58:38.656887Z",
            "url": "https://files.pythonhosted.org/packages/80/3c/8648cbd3a95f8b475ecf091ad9b1f42d82a974746b3ac89d5880b77fb475/obstore-0.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3309116c9adddd47f2f82c8dcc0ad31a3d0f50139209fd0d2175ac0a97063c4",
                "md5": "a7bb6f04fac954e30dc2437321951999",
                "sha256": "cd21a142da82bb3734245351d7aad565b5abc8b6a33669bef59e5e32fafb9739"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a7bb6f04fac954e30dc2437321951999",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5381158,
            "upload_time": "2025-02-10T14:58:40",
            "upload_time_iso_8601": "2025-02-10T14:58:40.450036Z",
            "url": "https://files.pythonhosted.org/packages/e3/30/9116c9adddd47f2f82c8dcc0ad31a3d0f50139209fd0d2175ac0a97063c4/obstore-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0621d041a0593a606b5f1fdf76178e85058d4da0c69f9c13955482d7c40f613c",
                "md5": "069f45b4d2019bffdb59261c463bf9b2",
                "sha256": "2cc7d9b38d8b8ced7838e8e7c4ab51fa936d77c4b6707ba947e9382666cfb8fd"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "069f45b4d2019bffdb59261c463bf9b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5431325,
            "upload_time": "2025-02-10T14:58:42",
            "upload_time_iso_8601": "2025-02-10T14:58:42.899719Z",
            "url": "https://files.pythonhosted.org/packages/06/21/d041a0593a606b5f1fdf76178e85058d4da0c69f9c13955482d7c40f613c/obstore-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0b49a3f3ea26ba296bd2dcb18e657215a2cea42c08dd7633309a4d35c34c977",
                "md5": "f91d8991027b21f61f56e8b48feee6a2",
                "sha256": "3de0b735a4c5e4ce9a64a491c69028e30061674f888485f8b4d7d98686f40093"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f91d8991027b21f61f56e8b48feee6a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5666060,
            "upload_time": "2025-02-10T14:58:44",
            "upload_time_iso_8601": "2025-02-10T14:58:44.635309Z",
            "url": "https://files.pythonhosted.org/packages/c0/b4/9a3f3ea26ba296bd2dcb18e657215a2cea42c08dd7633309a4d35c34c977/obstore-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba73353a179795aa585cd17d0d66207bbe714986fffc1b35d39407ada1bcf754",
                "md5": "0292331b32fb5211200445a2c2f93401",
                "sha256": "7bac9affd710d41ba11738d034e893ec79464a1d885a9b9e584f679970239253"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0292331b32fb5211200445a2c2f93401",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 6873593,
            "upload_time": "2025-02-10T14:58:47",
            "upload_time_iso_8601": "2025-02-10T14:58:47.372548Z",
            "url": "https://files.pythonhosted.org/packages/ba/73/353a179795aa585cd17d0d66207bbe714986fffc1b35d39407ada1bcf754/obstore-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4b3cda6a80a189a1e3b997ccf017fe577b4f4c6fd96c8832fb3a6d2cf8893a5",
                "md5": "5da468734812e486c08e3483b9faf15b",
                "sha256": "b908f5d06abba647ae135b2fef9d68b6ea4a9a3280c9f6032b6ef7cfc91a5ca0"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5da468734812e486c08e3483b9faf15b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5499358,
            "upload_time": "2025-02-10T14:58:49",
            "upload_time_iso_8601": "2025-02-10T14:58:49.097019Z",
            "url": "https://files.pythonhosted.org/packages/e4/b3/cda6a80a189a1e3b997ccf017fe577b4f4c6fd96c8832fb3a6d2cf8893a5/obstore-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c1d570d206148e235ed980f4443498e8e08bfa071dbfec70b9887b46a52d41a",
                "md5": "f5f273a68d547bffd880524593b7f98d",
                "sha256": "3ae058a9d867cde891e6d54af6c4e0da503106457825d044a2cbfc7bdc2fa083"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-manylinux_2_24_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f5f273a68d547bffd880524593b7f98d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5330895,
            "upload_time": "2025-02-10T14:58:50",
            "upload_time_iso_8601": "2025-02-10T14:58:50.890143Z",
            "url": "https://files.pythonhosted.org/packages/0c/1d/570d206148e235ed980f4443498e8e08bfa071dbfec70b9887b46a52d41a/obstore-0.4.0-cp311-cp311-manylinux_2_24_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc3c5ba48939d31798d8c9eb9d4bebb68919bf029c5538b104699adc150eec7f",
                "md5": "eaadb26b093c5c86277f3ffe4c4a6c9c",
                "sha256": "4a939b82e6c7981cc8c6f28e6e78458d52adb39c962910f221410ad96e24be18"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eaadb26b093c5c86277f3ffe4c4a6c9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5437847,
            "upload_time": "2025-02-10T14:58:53",
            "upload_time_iso_8601": "2025-02-10T14:58:53.228841Z",
            "url": "https://files.pythonhosted.org/packages/bc/3c/5ba48939d31798d8c9eb9d4bebb68919bf029c5538b104699adc150eec7f/obstore-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00e2953cd59f615417189d59664d2034b505bc3d45fdc75658f70d6accfa780f",
                "md5": "1a0fe9db12fd71d209b3fa4daa24a4ad",
                "sha256": "e843e13781a996bc77e3b8496e836d5b8071304fd369065892815bd9cdc54f64"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1a0fe9db12fd71d209b3fa4daa24a4ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5567460,
            "upload_time": "2025-02-10T14:58:55",
            "upload_time_iso_8601": "2025-02-10T14:58:55.790735Z",
            "url": "https://files.pythonhosted.org/packages/00/e2/953cd59f615417189d59664d2034b505bc3d45fdc75658f70d6accfa780f/obstore-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6b89bc4537f543acb38c424713ee91e6c1a73a04f3c07072634688503d5638b",
                "md5": "8022fd83cd1cd2eea5b8778b7fabc038",
                "sha256": "b55f592bcccb254875ded17cd8b091202c21e79af20c757016683f00496caff5"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8022fd83cd1cd2eea5b8778b7fabc038",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5449093,
            "upload_time": "2025-02-10T14:58:57",
            "upload_time_iso_8601": "2025-02-10T14:58:57.535241Z",
            "url": "https://files.pythonhosted.org/packages/d6/b8/9bc4537f543acb38c424713ee91e6c1a73a04f3c07072634688503d5638b/obstore-0.4.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a399367a29b07b62d540a205d7cb609a20ab85a5e5279d9020bc3521c2a6470",
                "md5": "6775fe54df8ffc38288316c488f68bf3",
                "sha256": "2ad4837f12d4e67a14a307cfae405fb2c1f954f44b1f8e3b40be9334fedd5015"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6775fe54df8ffc38288316c488f68bf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5625984,
            "upload_time": "2025-02-10T14:58:59",
            "upload_time_iso_8601": "2025-02-10T14:58:59.128877Z",
            "url": "https://files.pythonhosted.org/packages/2a/39/9367a29b07b62d540a205d7cb609a20ab85a5e5279d9020bc3521c2a6470/obstore-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e841e2d351753dfe76f8f2afa5f102e8ad5f26298dd489e81d24f7a33d79d952",
                "md5": "e04733a22ab200379d602bbf474f343d",
                "sha256": "a27a59f89d377fb4fc26164362ccc71358cc174f8b163b0c1a7be24c8a5d8629"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e04733a22ab200379d602bbf474f343d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5346266,
            "upload_time": "2025-02-10T14:59:00",
            "upload_time_iso_8601": "2025-02-10T14:59:00.735125Z",
            "url": "https://files.pythonhosted.org/packages/e8/41/e2d351753dfe76f8f2afa5f102e8ad5f26298dd489e81d24f7a33d79d952/obstore-0.4.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b145047e15a7a484764053487d471a7ef5d3cd56cd4a9e1f39f9bac186b6b97a",
                "md5": "343411c1bc6353c5a2b09dbd7ff8cf29",
                "sha256": "f8fdf3c090f2af97b6cb93130ca2046d4d9825bec904d63f1100a83bc122bea4"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "343411c1bc6353c5a2b09dbd7ff8cf29",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5380054,
            "upload_time": "2025-02-10T14:59:02",
            "upload_time_iso_8601": "2025-02-10T14:59:02.869994Z",
            "url": "https://files.pythonhosted.org/packages/b1/45/047e15a7a484764053487d471a7ef5d3cd56cd4a9e1f39f9bac186b6b97a/obstore-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48e63134aca631141251ce3d14c60f3206fc63693aba4abb4a9430e43d838efc",
                "md5": "fdb6aef5b430be7834761ac096cb3d12",
                "sha256": "0d8c7009d7dc908658f106b3529dad260629f407b7ae4ed7e54b79e3ec2b3e3e"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fdb6aef5b430be7834761ac096cb3d12",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5057062,
            "upload_time": "2025-02-10T14:59:04",
            "upload_time_iso_8601": "2025-02-10T14:59:04.718783Z",
            "url": "https://files.pythonhosted.org/packages/48/e6/3134aca631141251ce3d14c60f3206fc63693aba4abb4a9430e43d838efc/obstore-0.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83a20543d84061d31c92927d4f034ca4a3a1cef291352a1434c75cac6da397bb",
                "md5": "8473b04a4900ad80800df732b6180901",
                "sha256": "7c63a1ff1159c1370fd919388f4b77556f55f77a631eba97ed5b582d47330200"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8473b04a4900ad80800df732b6180901",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5375893,
            "upload_time": "2025-02-10T14:59:06",
            "upload_time_iso_8601": "2025-02-10T14:59:06.469393Z",
            "url": "https://files.pythonhosted.org/packages/83/a2/0543d84061d31c92927d4f034ca4a3a1cef291352a1434c75cac6da397bb/obstore-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be69e6815d506445521759c45b4e44d3fb6abd6250a2d9b173449d82774d8975",
                "md5": "dadc402b0dc97fe0c2080358261f4516",
                "sha256": "3ec00fba4232b899a139b8e02f29bfaa67ee9dbf07bc72a8baab26c5303bb877"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dadc402b0dc97fe0c2080358261f4516",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5428874,
            "upload_time": "2025-02-10T14:59:08",
            "upload_time_iso_8601": "2025-02-10T14:59:08.959820Z",
            "url": "https://files.pythonhosted.org/packages/be/69/e6815d506445521759c45b4e44d3fb6abd6250a2d9b173449d82774d8975/obstore-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7fbb873955c5f3543ce18f5193aba0b92954d31742aa8fab89897c279d943252",
                "md5": "a52d9166d7af482644ad648aafaeccf6",
                "sha256": "e561e68b65df69923bd45eac234e5d1de1920a6722668c00f155c95f019b977e"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a52d9166d7af482644ad648aafaeccf6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5661417,
            "upload_time": "2025-02-10T14:59:11",
            "upload_time_iso_8601": "2025-02-10T14:59:11.462890Z",
            "url": "https://files.pythonhosted.org/packages/7f/bb/873955c5f3543ce18f5193aba0b92954d31742aa8fab89897c279d943252/obstore-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bfea769bf9931201caf0f09366946e5ca446b66563dcfe6271c164206dc5644f",
                "md5": "4902c88b04875a74dfcc41fb30070f6c",
                "sha256": "9ce927ed3411472efc6c75a7a1b187e5f11d7a88706335da1aa2a52a6d30313a"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4902c88b04875a74dfcc41fb30070f6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 6878883,
            "upload_time": "2025-02-10T14:59:14",
            "upload_time_iso_8601": "2025-02-10T14:59:14.198828Z",
            "url": "https://files.pythonhosted.org/packages/bf/ea/769bf9931201caf0f09366946e5ca446b66563dcfe6271c164206dc5644f/obstore-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "855f20dc1bc6be1c5f482551c41ab5799d565a0c96928ce13729356596960d25",
                "md5": "ae7861b16624cb4a8433529ae326f0e7",
                "sha256": "903b7d13de2897911a137a2f07cd4cf72d01ff3cf64cb111dbdadc1d28963be3"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae7861b16624cb4a8433529ae326f0e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5497357,
            "upload_time": "2025-02-10T14:59:16",
            "upload_time_iso_8601": "2025-02-10T14:59:16.076022Z",
            "url": "https://files.pythonhosted.org/packages/85/5f/20dc1bc6be1c5f482551c41ab5799d565a0c96928ce13729356596960d25/obstore-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "647306abfa3ea9c3e216d89163553fdbcd714cc09d57c2de80cb233b4c2d8c4b",
                "md5": "b4512fe809d7fbd9043ff24821a9be67",
                "sha256": "76f6181ae02f039ba9c7b7d35be54dc289f54499ede1cb384217cd438f81bb20"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-manylinux_2_24_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b4512fe809d7fbd9043ff24821a9be67",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5325647,
            "upload_time": "2025-02-10T14:59:17",
            "upload_time_iso_8601": "2025-02-10T14:59:17.855959Z",
            "url": "https://files.pythonhosted.org/packages/64/73/06abfa3ea9c3e216d89163553fdbcd714cc09d57c2de80cb233b4c2d8c4b/obstore-0.4.0-cp312-cp312-manylinux_2_24_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "235626fad6390857f4bc9d6a2e038bd496ac20545d47c2e0b290bbdb5ca38b80",
                "md5": "f9489ba6ab25494ddb70c4a15eb131b1",
                "sha256": "636f79f458485fb922d326588dca2d25879780591c0655b151a838e5f944afab"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f9489ba6ab25494ddb70c4a15eb131b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5429720,
            "upload_time": "2025-02-10T14:59:19",
            "upload_time_iso_8601": "2025-02-10T14:59:19.649294Z",
            "url": "https://files.pythonhosted.org/packages/23/56/26fad6390857f4bc9d6a2e038bd496ac20545d47c2e0b290bbdb5ca38b80/obstore-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afb1840f0e0536f0a65760fdc89922ea461765d6241e64ffb0b5c61506c07c94",
                "md5": "1142980c0f9f3b8622ae10cae431355f",
                "sha256": "7ecc3d7bcb69e694b8beda7dc0358c2b9e57b67867f64ad1b4a0c5d5d999d0bc"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1142980c0f9f3b8622ae10cae431355f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5565572,
            "upload_time": "2025-02-10T14:59:22",
            "upload_time_iso_8601": "2025-02-10T14:59:22.213451Z",
            "url": "https://files.pythonhosted.org/packages/af/b1/840f0e0536f0a65760fdc89922ea461765d6241e64ffb0b5c61506c07c94/obstore-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72fa8b77f2abea5752676ce2a9247c57ad9199c2adc7c48976b1381127debb46",
                "md5": "b48ed8d9200c41102399876495f891d0",
                "sha256": "05dd81e7ae7d79b79dbc04bfb8b8d6f451b9b65b87923a9d3288ab97833eb475"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b48ed8d9200c41102399876495f891d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5446130,
            "upload_time": "2025-02-10T14:59:24",
            "upload_time_iso_8601": "2025-02-10T14:59:24.615520Z",
            "url": "https://files.pythonhosted.org/packages/72/fa/8b77f2abea5752676ce2a9247c57ad9199c2adc7c48976b1381127debb46/obstore-0.4.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "753fa971a72afc52da438a571f9c5dfeb77430b4def370c6fe68cd95222abec5",
                "md5": "17f019619b7cdc9d6d0f208a3372c264",
                "sha256": "8d94af6b030bab5646f7be2e749120918c4244237acff486b501f44849a5fc06"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17f019619b7cdc9d6d0f208a3372c264",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5620114,
            "upload_time": "2025-02-10T14:59:26",
            "upload_time_iso_8601": "2025-02-10T14:59:26.263426Z",
            "url": "https://files.pythonhosted.org/packages/75/3f/a971a72afc52da438a571f9c5dfeb77430b4def370c6fe68cd95222abec5/obstore-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8603cf820671da9c423b81c25943eedd1af2cb610d52a286ff933affad18831",
                "md5": "209c1a23cad0e9db2cf8a13c4eaafc97",
                "sha256": "fc292904246c90b00f3b5fa094c85ab16f020db38463391e98d937f070a2a14c"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "209c1a23cad0e9db2cf8a13c4eaafc97",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5354538,
            "upload_time": "2025-02-10T14:59:28",
            "upload_time_iso_8601": "2025-02-10T14:59:28.034256Z",
            "url": "https://files.pythonhosted.org/packages/b8/60/3cf820671da9c423b81c25943eedd1af2cb610d52a286ff933affad18831/obstore-0.4.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "719bc0b80467b1b09784febe23f285ca8f58f7fa896a273fe4f5895c631cf022",
                "md5": "883f017c0d93e628516c1f8fa1c2cd74",
                "sha256": "c9ed6f0d42ea516723e070a92b49f8ff23b714d7e49732673009ab0757dbf8db"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "883f017c0d93e628516c1f8fa1c2cd74",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5379929,
            "upload_time": "2025-02-10T14:59:29",
            "upload_time_iso_8601": "2025-02-10T14:59:29.752023Z",
            "url": "https://files.pythonhosted.org/packages/71/9b/c0b80467b1b09784febe23f285ca8f58f7fa896a273fe4f5895c631cf022/obstore-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9f0de9bc14b0c6651baf4763129e5c726c606c69b958bd2293c076db5ccaf54",
                "md5": "93357b9ef611a2656585f24b0548ec2c",
                "sha256": "be199652c2e20f9fec8bc6cc6f672de5e932128a7f21d5710180fa4d33e43223"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "93357b9ef611a2656585f24b0548ec2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5056262,
            "upload_time": "2025-02-10T14:59:31",
            "upload_time_iso_8601": "2025-02-10T14:59:31.586859Z",
            "url": "https://files.pythonhosted.org/packages/b9/f0/de9bc14b0c6651baf4763129e5c726c606c69b958bd2293c076db5ccaf54/obstore-0.4.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "420cf1d4370ac3b0d97d9c4e5d6f93823396f4af1923e0159edc46216fd58331",
                "md5": "e3f04482f517e3c81d1a14aa79c1baef",
                "sha256": "ea1bf7c870101f7fa95e33b9ca1fb6231e71864001203b599abb0196f84a904d"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e3f04482f517e3c81d1a14aa79c1baef",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5375198,
            "upload_time": "2025-02-10T14:59:33",
            "upload_time_iso_8601": "2025-02-10T14:59:33.892391Z",
            "url": "https://files.pythonhosted.org/packages/42/0c/f1d4370ac3b0d97d9c4e5d6f93823396f4af1923e0159edc46216fd58331/obstore-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5da80d701c3aeb4afcf411a43a9c4e90917c3e5704c3959e7ae09d81c22c4eb",
                "md5": "b0d87319c0d038543d7fa53e53483f9d",
                "sha256": "ca0890226973af024b87114efa6b8e5d1a5bb326a6ea808eb3b1bcd1ed6c60db"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b0d87319c0d038543d7fa53e53483f9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5428503,
            "upload_time": "2025-02-10T14:59:35",
            "upload_time_iso_8601": "2025-02-10T14:59:35.660974Z",
            "url": "https://files.pythonhosted.org/packages/c5/da/80d701c3aeb4afcf411a43a9c4e90917c3e5704c3959e7ae09d81c22c4eb/obstore-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "504c10c041f30c21ed49b03e1cbeb2d22a5209d2abe2acf868262b506173b95a",
                "md5": "08e36685defdd364f0907a9d2a35ee5d",
                "sha256": "cc2f643880b29b98b692ee865c275314be8be5443c0ea4268abb4751d87c2276"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "08e36685defdd364f0907a9d2a35ee5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5661624,
            "upload_time": "2025-02-10T14:59:37",
            "upload_time_iso_8601": "2025-02-10T14:59:37.830604Z",
            "url": "https://files.pythonhosted.org/packages/50/4c/10c041f30c21ed49b03e1cbeb2d22a5209d2abe2acf868262b506173b95a/obstore-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4fd6b2dbc565bc103e352d7225b0e1615e93e02ebee6d421efa3e06b0ecc8527",
                "md5": "3b115e6bed0b61deb16cc53901bc9760",
                "sha256": "6b48b86d229f76f9b43cb2a382a452bfd32e451814c86de66dea1b82a232a639"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3b115e6bed0b61deb16cc53901bc9760",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 6891986,
            "upload_time": "2025-02-10T14:59:40",
            "upload_time_iso_8601": "2025-02-10T14:59:40.295861Z",
            "url": "https://files.pythonhosted.org/packages/4f/d6/b2dbc565bc103e352d7225b0e1615e93e02ebee6d421efa3e06b0ecc8527/obstore-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb83db5388be110caf8a777d50ed42369b603b49e907bf5b3b3182becbe72808",
                "md5": "17f7da7c56d67822a88b0bb046eed3f7",
                "sha256": "0265af83cd23de5d703a14caa356c78d466af3f84fd5532ea3669d750224fb66"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17f7da7c56d67822a88b0bb046eed3f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5496734,
            "upload_time": "2025-02-10T14:59:42",
            "upload_time_iso_8601": "2025-02-10T14:59:42.990136Z",
            "url": "https://files.pythonhosted.org/packages/eb/83/db5388be110caf8a777d50ed42369b603b49e907bf5b3b3182becbe72808/obstore-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03a8a8d0a66e7bcd3d8274b5756ceac62dc6fce552e5c3eab2c6247228955776",
                "md5": "7e2c1cf176f9d95bfe183f09072c613b",
                "sha256": "61f9fa93933100852e28771775852d4ae148633201fc0d9f4718ae555ea3b991"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-manylinux_2_24_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7e2c1cf176f9d95bfe183f09072c613b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5325192,
            "upload_time": "2025-02-10T14:59:44",
            "upload_time_iso_8601": "2025-02-10T14:59:44.691762Z",
            "url": "https://files.pythonhosted.org/packages/03/a8/a8d0a66e7bcd3d8274b5756ceac62dc6fce552e5c3eab2c6247228955776/obstore-0.4.0-cp313-cp313-manylinux_2_24_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6f44f9540b1cd1ec8b319425045857bf1372b8bdfbaa3372f45c151d9c9036b",
                "md5": "7eb31ae2e28d87283faa3f3fcd76f168",
                "sha256": "cb3e6e21c5b24cab70a601f78ab9637e7820ffcaf3a437e698c658b59fb30587"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7eb31ae2e28d87283faa3f3fcd76f168",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5428852,
            "upload_time": "2025-02-10T14:59:46",
            "upload_time_iso_8601": "2025-02-10T14:59:46.333194Z",
            "url": "https://files.pythonhosted.org/packages/e6/f4/4f9540b1cd1ec8b319425045857bf1372b8bdfbaa3372f45c151d9c9036b/obstore-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b1fb0663184392daaa882396648b5835dadb2ab4adeedc460ced9441830a582",
                "md5": "c574d425cbe86b95ec603715b67424d9",
                "sha256": "999cec62e647aec112151af1152d08b68fe091c55debbc0d1d78f7b17dc186b9"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c574d425cbe86b95ec603715b67424d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5565446,
            "upload_time": "2025-02-10T14:59:48",
            "upload_time_iso_8601": "2025-02-10T14:59:48.069225Z",
            "url": "https://files.pythonhosted.org/packages/3b/1f/b0663184392daaa882396648b5835dadb2ab4adeedc460ced9441830a582/obstore-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24a889c7957dca2ef894a5855b928d8548884a4f85516ed9b12868ff2701a4d9",
                "md5": "4b6dcd373c52605c7d6b2a049e4b7319",
                "sha256": "ac43866ff6f5363acdf6ae6d5e683474a71ecc717f7ec41e0fbe2b025ec23f88"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4b6dcd373c52605c7d6b2a049e4b7319",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5445762,
            "upload_time": "2025-02-10T14:59:49",
            "upload_time_iso_8601": "2025-02-10T14:59:49.663153Z",
            "url": "https://files.pythonhosted.org/packages/24/a8/89c7957dca2ef894a5855b928d8548884a4f85516ed9b12868ff2701a4d9/obstore-0.4.0-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "579df34a4fd15039a72231ddca2830e7a12100087cf5b464745c30bf76c63601",
                "md5": "2b83239e9240240adb02f847e2307279",
                "sha256": "c18487cf52b7a29b1dddaa020eeaf750fce354ddc045d38e2a908a4ed1639705"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b83239e9240240adb02f847e2307279",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5619370,
            "upload_time": "2025-02-10T14:59:51",
            "upload_time_iso_8601": "2025-02-10T14:59:51.765515Z",
            "url": "https://files.pythonhosted.org/packages/57/9d/f34a4fd15039a72231ddca2830e7a12100087cf5b464745c30bf76c63601/obstore-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "461dc9f3e956cbb600fb933a8e3bce14177ff80bdc949d0702758b9c4590331f",
                "md5": "2bff0f8e4783b3d1fe9af205f034196f",
                "sha256": "e6966717477cddf0def201c09f9c4d5f86dcd57c0b4c17dbe12915d73ccf7e72"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2bff0f8e4783b3d1fe9af205f034196f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 5354096,
            "upload_time": "2025-02-10T14:59:53",
            "upload_time_iso_8601": "2025-02-10T14:59:53.451888Z",
            "url": "https://files.pythonhosted.org/packages/46/1d/c9f3e956cbb600fb933a8e3bce14177ff80bdc949d0702758b9c4590331f/obstore-0.4.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6de97832310a23e48aa0ec55bc77478ee618abe6b06df6dc9730bcf3ade7c523",
                "md5": "e77f13a61fd6dceda9caf73f7fd6d29f",
                "sha256": "0b4c644ba553801e8c8d035fcd16e1bb9648a250b0f099a00fde6a2f107eb617"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e77f13a61fd6dceda9caf73f7fd6d29f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5373235,
            "upload_time": "2025-02-10T14:59:55",
            "upload_time_iso_8601": "2025-02-10T14:59:55.922070Z",
            "url": "https://files.pythonhosted.org/packages/6d/e9/7832310a23e48aa0ec55bc77478ee618abe6b06df6dc9730bcf3ade7c523/obstore-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b4991db092f768fbf44085789dc73eba14e6ae31d7dd8fd503a8d47eb28963d",
                "md5": "5f2388cb58a1fc0a9c6dbf521fa96024",
                "sha256": "9b98656e29b46fe912e8eeaf3cc282ea5c55a6b444cc40df154e5b89c769749f"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5f2388cb58a1fc0a9c6dbf521fa96024",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5057399,
            "upload_time": "2025-02-10T14:59:57",
            "upload_time_iso_8601": "2025-02-10T14:59:57.665128Z",
            "url": "https://files.pythonhosted.org/packages/2b/49/91db092f768fbf44085789dc73eba14e6ae31d7dd8fd503a8d47eb28963d/obstore-0.4.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb98514d900249f5afb3a14efc2eddd64d93fa5595939f4e5ede85db3f5f59c5",
                "md5": "d897606d9f5a73755fb06c0502845af1",
                "sha256": "1683ca43f4e9ab766890b4b9aeebea40879767a60df9369b0857a5cf17a648a4"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d897606d9f5a73755fb06c0502845af1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5381549,
            "upload_time": "2025-02-10T14:59:59",
            "upload_time_iso_8601": "2025-02-10T14:59:59.371416Z",
            "url": "https://files.pythonhosted.org/packages/bb/98/514d900249f5afb3a14efc2eddd64d93fa5595939f4e5ede85db3f5f59c5/obstore-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ee04411366ed5e81b708b0115dde557add93abfe459de9bc45020a06e94093b",
                "md5": "c99fc9903e428cd163a3cd1ef4c803dc",
                "sha256": "9e86accb6132f39acc2b45f56ae80ba5c179a1217ee06e53ca78bb364978633d"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c99fc9903e428cd163a3cd1ef4c803dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5431599,
            "upload_time": "2025-02-10T15:00:02",
            "upload_time_iso_8601": "2025-02-10T15:00:02.117627Z",
            "url": "https://files.pythonhosted.org/packages/8e/e0/4411366ed5e81b708b0115dde557add93abfe459de9bc45020a06e94093b/obstore-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d496bba265b4d8383b0f19133a549389e32ac25251163969b151d7e187e9ec1e",
                "md5": "995677187439fff1b366314a35614798",
                "sha256": "6488c4ebf1fff212b8dccbe047d8fe8abda1d14b53222d321d15d4af9b7c1f31"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "995677187439fff1b366314a35614798",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5666883,
            "upload_time": "2025-02-10T15:00:04",
            "upload_time_iso_8601": "2025-02-10T15:00:04.761068Z",
            "url": "https://files.pythonhosted.org/packages/d4/96/bba265b4d8383b0f19133a549389e32ac25251163969b151d7e187e9ec1e/obstore-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78b38bd13334a690f45c228c8c3add497db88e1819de1d34e4fcb92601c64628",
                "md5": "388841b9e5847101d31de59916b4d981",
                "sha256": "20b9b0d2a2148bc809ebd4eab59a6e21b5cc7a7ad4447410f826373124fd325a"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "388841b9e5847101d31de59916b4d981",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 6863064,
            "upload_time": "2025-02-10T15:00:06",
            "upload_time_iso_8601": "2025-02-10T15:00:06.659024Z",
            "url": "https://files.pythonhosted.org/packages/78/b3/8bd13334a690f45c228c8c3add497db88e1819de1d34e4fcb92601c64628/obstore-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc68b5a127a33ec4437eaa772c8dab31139c1d1613de3f4c94405bb348912582",
                "md5": "e57e47b36d08ac186ac65fb647078788",
                "sha256": "bfda30454fb98b01bafafa75e1f8481c75bebb71df9ae4a74feefaf88dc8057c"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e57e47b36d08ac186ac65fb647078788",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5500471,
            "upload_time": "2025-02-10T15:00:08",
            "upload_time_iso_8601": "2025-02-10T15:00:08.558587Z",
            "url": "https://files.pythonhosted.org/packages/dc/68/b5a127a33ec4437eaa772c8dab31139c1d1613de3f4c94405bb348912582/obstore-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a8fc6e8bebe820c3fb1c632e96dddac45f040f63bcdcaa5857b8e2340fbc342",
                "md5": "9ca6387f1dfee2808c5996e9ab88727b",
                "sha256": "4ce38e0ed246a7d401082b178b68068a411835e5bda4780a668aed6d12c7f997"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-manylinux_2_24_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9ca6387f1dfee2808c5996e9ab88727b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5331955,
            "upload_time": "2025-02-10T15:00:10",
            "upload_time_iso_8601": "2025-02-10T15:00:10.347606Z",
            "url": "https://files.pythonhosted.org/packages/4a/8f/c6e8bebe820c3fb1c632e96dddac45f040f63bcdcaa5857b8e2340fbc342/obstore-0.4.0-cp39-cp39-manylinux_2_24_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66c52abd124accab204afdcf1e41c0d469f41cff0230a36c4881a878b6a2bbea",
                "md5": "a8196d23e4f7514b9469b8af132013fa",
                "sha256": "c8e37459c7e1e8f3d99d47aedd92591467d1a26cee63705aef105c35c3804deb"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a8196d23e4f7514b9469b8af132013fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5438865,
            "upload_time": "2025-02-10T15:00:13",
            "upload_time_iso_8601": "2025-02-10T15:00:13.089994Z",
            "url": "https://files.pythonhosted.org/packages/66/c5/2abd124accab204afdcf1e41c0d469f41cff0230a36c4881a878b6a2bbea/obstore-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "344f29aa5ed8b17fdfcf72ead66d3caec6feb101baa4bb3f96ee372cebbff55a",
                "md5": "d64dd5ba4fc8eab3006f7ad29caeb81f",
                "sha256": "6373bca008cf800b6455225fb8c2483b1d830010d3857bd3a72c3f0523b86788"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d64dd5ba4fc8eab3006f7ad29caeb81f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5567882,
            "upload_time": "2025-02-10T15:00:14",
            "upload_time_iso_8601": "2025-02-10T15:00:14.868266Z",
            "url": "https://files.pythonhosted.org/packages/34/4f/29aa5ed8b17fdfcf72ead66d3caec6feb101baa4bb3f96ee372cebbff55a/obstore-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "883d09370c467b5f33d5a6371b8972e4d68aa7b51fdf380dfb69be76e6058896",
                "md5": "3c089f95195849cc30c50d0bf262f589",
                "sha256": "4c3c715e36fcc380c51dd5624224ddf8f1150db52cf8fea525b1c2189abc9945"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3c089f95195849cc30c50d0bf262f589",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5449205,
            "upload_time": "2025-02-10T15:00:16",
            "upload_time_iso_8601": "2025-02-10T15:00:16.759310Z",
            "url": "https://files.pythonhosted.org/packages/88/3d/09370c467b5f33d5a6371b8972e4d68aa7b51fdf380dfb69be76e6058896/obstore-0.4.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bad4ba42c3c7db86d0ea04636da6af5a35e208a4aeaeffe9480cad8bf9d4af6",
                "md5": "6ae72bd17695d2dd91aa65700f384879",
                "sha256": "e5b7a73f4e73b24d0ddc63034bcc8540ecc036fa1dec2a2bf61e4be54d179667"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ae72bd17695d2dd91aa65700f384879",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5626806,
            "upload_time": "2025-02-10T15:00:18",
            "upload_time_iso_8601": "2025-02-10T15:00:18.637360Z",
            "url": "https://files.pythonhosted.org/packages/4b/ad/4ba42c3c7db86d0ea04636da6af5a35e208a4aeaeffe9480cad8bf9d4af6/obstore-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45378d017b71f22156bfba91b1f5b76cfc160c55838cf69b4b8e2aa8c47d462b",
                "md5": "16c8f5ce3ce88aeac5e7bbed778adefb",
                "sha256": "bee833f67e9da1e2b43af692e76076b19fba2fec57c437ebfb9b1c92360c7815"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "16c8f5ce3ce88aeac5e7bbed778adefb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5346817,
            "upload_time": "2025-02-10T15:00:20",
            "upload_time_iso_8601": "2025-02-10T15:00:20.948347Z",
            "url": "https://files.pythonhosted.org/packages/45/37/8d017b71f22156bfba91b1f5b76cfc160c55838cf69b4b8e2aa8c47d462b/obstore-0.4.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c601f6876d8f00400f1f913c3f92d0e0460a771960944b6f7a0c636220ab35e6",
                "md5": "cbeea647ed7e5e7631caf2dd1a32808e",
                "sha256": "45125db600b7ae3699c83887d669312a56008f022c99de19efa724b3ac50d848"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cbeea647ed7e5e7631caf2dd1a32808e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 5371024,
            "upload_time": "2025-02-10T15:00:22",
            "upload_time_iso_8601": "2025-02-10T15:00:22.916057Z",
            "url": "https://files.pythonhosted.org/packages/c6/01/f6876d8f00400f1f913c3f92d0e0460a771960944b6f7a0c636220ab35e6/obstore-0.4.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "162482dfcd91c13845c17afa008d8f387a0d634ed5226d2dd26c80cacb943eab",
                "md5": "286aead47b7bf74f47e2c37585935e00",
                "sha256": "fc5272ccab9faca768eb5ac7745c39778155d2d966619a4482eeadaa2291c6fd"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "286aead47b7bf74f47e2c37585935e00",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 5054972,
            "upload_time": "2025-02-10T15:00:24",
            "upload_time_iso_8601": "2025-02-10T15:00:24.888362Z",
            "url": "https://files.pythonhosted.org/packages/16/24/82dfcd91c13845c17afa008d8f387a0d634ed5226d2dd26c80cacb943eab/obstore-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf25acc043cb83b1ab4e16a6fa92bcfd30e0e7d5cd919b300c5143b80c7fc9b5",
                "md5": "0b0afbfa45ddb1a0dbeeb70fa6f123b1",
                "sha256": "15c7c98cbfe028c55a0dcdc44a6fdb0c68570ded9ecc8b84bafbcad47272c8f8"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0b0afbfa45ddb1a0dbeeb70fa6f123b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 5380773,
            "upload_time": "2025-02-10T15:00:26",
            "upload_time_iso_8601": "2025-02-10T15:00:26.688260Z",
            "url": "https://files.pythonhosted.org/packages/cf/25/acc043cb83b1ab4e16a6fa92bcfd30e0e7d5cd919b300c5143b80c7fc9b5/obstore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74212acb48b709c480dd4f0a1598446e244475262c33ffcf5a6860cbaed79d4b",
                "md5": "01c81d4c6f775ea365672ba2070a3e15",
                "sha256": "be74de1dd797ee5442457efeee69408440307811d1920ab967493cb3bf0705c0"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "01c81d4c6f775ea365672ba2070a3e15",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 5431257,
            "upload_time": "2025-02-10T15:00:28",
            "upload_time_iso_8601": "2025-02-10T15:00:28.569913Z",
            "url": "https://files.pythonhosted.org/packages/74/21/2acb48b709c480dd4f0a1598446e244475262c33ffcf5a6860cbaed79d4b/obstore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa4aec910819628d8ccab070d3a59546d9d8fb9a449ea5965ca44148bbdafaee",
                "md5": "b7ee153a4fb8ceaec06970715004147f",
                "sha256": "aa4a8de1845bf3dc3cc05c53f994a46fe3c9bdff20962337c7c4b9bcbb57bc0d"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b7ee153a4fb8ceaec06970715004147f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 5665982,
            "upload_time": "2025-02-10T15:00:31",
            "upload_time_iso_8601": "2025-02-10T15:00:31.159510Z",
            "url": "https://files.pythonhosted.org/packages/aa/4a/ec910819628d8ccab070d3a59546d9d8fb9a449ea5965ca44148bbdafaee/obstore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f07db69e119451d00ff05619151240fc844e35f50a815447258d7ec0bbf165cf",
                "md5": "d347d533d3b4fa279b32b27c00e6bdbc",
                "sha256": "03bf8f55a6420e3648ae9a42971d624c3a382d6a12ee3924111b1ceaf3e41b52"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d347d533d3b4fa279b32b27c00e6bdbc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 6871028,
            "upload_time": "2025-02-10T15:00:33",
            "upload_time_iso_8601": "2025-02-10T15:00:33.079101Z",
            "url": "https://files.pythonhosted.org/packages/f0/7d/b69e119451d00ff05619151240fc844e35f50a815447258d7ec0bbf165cf/obstore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27f01e397eb80ca75c203c54b952a9bd3220d355d6ac2dbb3e0b01dabc22cebb",
                "md5": "0e9eb8b44d93882cb62bafd059d92f58",
                "sha256": "f3d87aaba03010dc95c223890f4400e5793e572f834d4e790a4f7f659e5088c3"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e9eb8b44d93882cb62bafd059d92f58",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 5498784,
            "upload_time": "2025-02-10T15:00:34",
            "upload_time_iso_8601": "2025-02-10T15:00:34.859873Z",
            "url": "https://files.pythonhosted.org/packages/27/f0/1e397eb80ca75c203c54b952a9bd3220d355d6ac2dbb3e0b01dabc22cebb/obstore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fcbbbae4ef625054494d0c6ebad7b51b9e2ab99895dc98d18d05d424223b5dca",
                "md5": "ed56cec219ac190dfc1b5fb36e09ccd4",
                "sha256": "b72804ed80506b0d362ac63c9a18ac56a3841d334d781069d6e08c252f809d9f"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ed56cec219ac190dfc1b5fb36e09ccd4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 5331133,
            "upload_time": "2025-02-10T15:00:36",
            "upload_time_iso_8601": "2025-02-10T15:00:36.990039Z",
            "url": "https://files.pythonhosted.org/packages/fc/bb/bae4ef625054494d0c6ebad7b51b9e2ab99895dc98d18d05d424223b5dca/obstore-0.4.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdef70462b05a7e41b684474c4d828dfb5db791dbbac68c945f9943e8e91c89e",
                "md5": "72473cbe9540f7592beadfe875e6efc2",
                "sha256": "e0f0027948fa57e0ff8ac25e4e26816b1dc071d3d29b2ab4c0b2512b17922b0a"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "72473cbe9540f7592beadfe875e6efc2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 5436802,
            "upload_time": "2025-02-10T15:00:39",
            "upload_time_iso_8601": "2025-02-10T15:00:39.891024Z",
            "url": "https://files.pythonhosted.org/packages/cd/ef/70462b05a7e41b684474c4d828dfb5db791dbbac68c945f9943e8e91c89e/obstore-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b16f3602e908ec7ab3dcd59b985e118522589ffb8891cb37d1324afc95a1a24",
                "md5": "799e50b10617b817a52f07a142f4212f",
                "sha256": "e7516450d8afab2019cc6e5b9e38d15ba9f769117993a9d568746df938bea13c"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "799e50b10617b817a52f07a142f4212f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 5567533,
            "upload_time": "2025-02-10T15:00:43",
            "upload_time_iso_8601": "2025-02-10T15:00:43.459733Z",
            "url": "https://files.pythonhosted.org/packages/5b/16/f3602e908ec7ab3dcd59b985e118522589ffb8891cb37d1324afc95a1a24/obstore-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c877564b4c5204d08259b9b279b5b38c2b3847f33d05483c3eeebd95f0005bb",
                "md5": "2c9a70cd53effefb5cd071ae7794010c",
                "sha256": "7101a3074feedd5ffc3ba7640ca3132d149ac946431fbdbab9ca01702c5f81e4"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2c9a70cd53effefb5cd071ae7794010c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 5448566,
            "upload_time": "2025-02-10T15:00:45",
            "upload_time_iso_8601": "2025-02-10T15:00:45.573179Z",
            "url": "https://files.pythonhosted.org/packages/1c/87/7564b4c5204d08259b9b279b5b38c2b3847f33d05483c3eeebd95f0005bb/obstore-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24a8e6ec971a5fe1d0cf1694c27e113841c7d5e316e4ca0ac7b293ca3be066c9",
                "md5": "bc9b99edee8ac0c68610fd2405c0bed0",
                "sha256": "f5a555277970f4f43d78c79a963300d539211dc1972e7cdd57e47c4aaf14d3a5"
            },
            "downloads": -1,
            "filename": "obstore-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc9b99edee8ac0c68610fd2405c0bed0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 5625428,
            "upload_time": "2025-02-10T15:00:47",
            "upload_time_iso_8601": "2025-02-10T15:00:47.537533Z",
            "url": "https://files.pythonhosted.org/packages/24/a8/e6ec971a5fe1d0cf1694c27e113841c7d5e316e4ca0ac7b293ca3be066c9/obstore-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-10 14:58:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "developmentseed",
    "github_project": "obstore",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "obstore"
}
        
Elapsed time: 1.57470s