shard-computer


Nameshard-computer JSON
Version 1.1.1 PyPI version JSON
download
home_pagehttps://github.com/seung-lab/shard-computer/
SummaryA library for rapid computation of Neuroglancer Precomputed shard hashes.
upload_time2023-12-19 07:42:14
maintainer
docs_urlNone
authorWilliam Silversmith
requires_python>=3.7.0,<4.0.0
licenseLicense :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
keywords neuroglancer sharding igneous cloud-volume murmurhash3
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![Automated Tests](https://github.com/github/docs/actions/workflows/run_tests.yml/badge.svg) [![PyPI version](https://badge.fury.io/py/shard-computer.svg)](https://badge.fury.io/py/shard-computer)


# shard-computer
Perform accelerated shard hash computation for [Neuroglancer Precomputed shards](https://github.com/google/neuroglancer/blob/master/src/neuroglancer/datasource/precomputed/sharded.md#sharding-specification).

```python
import shardcomputer

preshift_bits = 0
shard_bits = 11
minishard_bits = 8

label = 12949142

shard_no = shardcomputer.shard_number(label, preshift_bits, shard_bits, minishard_bits)

# let labels be a uint64 numpy array of labels
# e.g. set(['4d2'])
shard_no_set = shardcomputer.unique_shard_numbers(
	labels, preshift_bits, shard_bits, minishard_bits
)

# Returns shard number -> label list dict
# e.g. {'4d2': [12949142]}
shard_no_to_labels = shardcomputer.assign_labels_to_shards(
	label, preshift_bits, shard_bits, minishard_bits
)

```

## Install

```
pip install shard-computer
```

## Credits

Thank you to Austin Appleby for placing MurMurhash3 into the public domain.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/seung-lab/shard-computer/",
    "name": "shard-computer",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7.0,<4.0.0",
    "maintainer_email": "",
    "keywords": "neuroglancer sharding igneous cloud-volume MurmurHash3",
    "author": "William Silversmith",
    "author_email": "ws9@princeton.edu",
    "download_url": "https://files.pythonhosted.org/packages/07/a3/1af80f83e65dca8ddc7e339122c03eab420aa9430ba01a31209cac5eb7f4/shard-computer-1.1.1.tar.gz",
    "platform": null,
    "description": "![Automated Tests](https://github.com/github/docs/actions/workflows/run_tests.yml/badge.svg) [![PyPI version](https://badge.fury.io/py/shard-computer.svg)](https://badge.fury.io/py/shard-computer)\n\n\n# shard-computer\nPerform accelerated shard hash computation for [Neuroglancer Precomputed shards](https://github.com/google/neuroglancer/blob/master/src/neuroglancer/datasource/precomputed/sharded.md#sharding-specification).\n\n```python\nimport shardcomputer\n\npreshift_bits = 0\nshard_bits = 11\nminishard_bits = 8\n\nlabel = 12949142\n\nshard_no = shardcomputer.shard_number(label, preshift_bits, shard_bits, minishard_bits)\n\n# let labels be a uint64 numpy array of labels\n# e.g. set(['4d2'])\nshard_no_set = shardcomputer.unique_shard_numbers(\n\tlabels, preshift_bits, shard_bits, minishard_bits\n)\n\n# Returns shard number -> label list dict\n# e.g. {'4d2': [12949142]}\nshard_no_to_labels = shardcomputer.assign_labels_to_shards(\n\tlabel, preshift_bits, shard_bits, minishard_bits\n)\n\n```\n\n## Install\n\n```\npip install shard-computer\n```\n\n## Credits\n\nThank you to Austin Appleby for placing MurMurhash3 into the public domain.\n\n",
    "bugtrack_url": null,
    "license": "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
    "summary": "A library for rapid computation of Neuroglancer Precomputed shard hashes.",
    "version": "1.1.1",
    "project_urls": {
        "Homepage": "https://github.com/seung-lab/shard-computer/"
    },
    "split_keywords": [
        "neuroglancer",
        "sharding",
        "igneous",
        "cloud-volume",
        "murmurhash3"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "921c4d2226e47719187ef88bdf33c77ea6777fd6cf67854b05d274bef5f9e4d4",
                "md5": "1c30f6d824141894811f6a2f208fc49d",
                "sha256": "da899480599a302f5e5a452c9f58ac0554cce3bf384072168675722ef793eb8b"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c30f6d824141894811f6a2f208fc49d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 75107,
            "upload_time": "2023-12-19T07:41:20",
            "upload_time_iso_8601": "2023-12-19T07:41:20.752486Z",
            "url": "https://files.pythonhosted.org/packages/92/1c/4d2226e47719187ef88bdf33c77ea6777fd6cf67854b05d274bef5f9e4d4/shard_computer-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9daebdaaa522b10f1c7cbebd0d7950e03c12b9b958cdd2c53c4a548decec0096",
                "md5": "027ba6c8551d7e24a59c5fc02017304e",
                "sha256": "6a2c407943413a31e7576311e4c0755649c65edcfeb04b86647a1269ce7b49e6"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "027ba6c8551d7e24a59c5fc02017304e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 72799,
            "upload_time": "2023-12-19T07:41:22",
            "upload_time_iso_8601": "2023-12-19T07:41:22.670318Z",
            "url": "https://files.pythonhosted.org/packages/9d/ae/bdaaa522b10f1c7cbebd0d7950e03c12b9b958cdd2c53c4a548decec0096/shard_computer-1.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47079b38b543561fa135e51ba5b1cc53ce4af4a924259dcfaed911f7a56aa6ed",
                "md5": "055790ab4404a59218492948fe231839",
                "sha256": "27980ace33652985baa8400dd9f61c3c49f3ba754d4ec2a74ab798749bcb5d07"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "055790ab4404a59218492948fe231839",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 104472,
            "upload_time": "2023-12-19T07:41:24",
            "upload_time_iso_8601": "2023-12-19T07:41:24.389140Z",
            "url": "https://files.pythonhosted.org/packages/47/07/9b38b543561fa135e51ba5b1cc53ce4af4a924259dcfaed911f7a56aa6ed/shard_computer-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c559594ac1b689f97b5596f2dab01f82ef83665afd0a6651ddf1a1647eada7ec",
                "md5": "185f63110e2892967fc2ba230be5ea60",
                "sha256": "00cfb76844c21f25ea356095e317cc49f31a14bc96de7b35d511ae620144e711"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "185f63110e2892967fc2ba230be5ea60",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 112047,
            "upload_time": "2023-12-19T07:41:25",
            "upload_time_iso_8601": "2023-12-19T07:41:25.915245Z",
            "url": "https://files.pythonhosted.org/packages/c5/59/594ac1b689f97b5596f2dab01f82ef83665afd0a6651ddf1a1647eada7ec/shard_computer-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e783868a986a6da02f7d1f968a0bac32398f1641028d1773682d47e696817e6",
                "md5": "c5c2be270969ffbd39ffe7319548460e",
                "sha256": "6f066c5a6454149e3e4607e34a8acd46e8107e2bc1bb299ae3810542fcc345b1"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5c2be270969ffbd39ffe7319548460e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 106581,
            "upload_time": "2023-12-19T07:41:26",
            "upload_time_iso_8601": "2023-12-19T07:41:26.938774Z",
            "url": "https://files.pythonhosted.org/packages/1e/78/3868a986a6da02f7d1f968a0bac32398f1641028d1773682d47e696817e6/shard_computer-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d434754b4c11c28979c80924ce173a0cede624320a3505124be4228693df88b",
                "md5": "a816b156aa4f845b047be2438a6ea797",
                "sha256": "bf96bc5e3cf44ea9ceb24950c8273505d7e4e2ffe42884798682a570937fe9c3"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "a816b156aa4f845b047be2438a6ea797",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 63421,
            "upload_time": "2023-12-19T07:41:28",
            "upload_time_iso_8601": "2023-12-19T07:41:28.006884Z",
            "url": "https://files.pythonhosted.org/packages/5d/43/4754b4c11c28979c80924ce173a0cede624320a3505124be4228693df88b/shard_computer-1.1.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "342036cbd5e40f15b57dc63b2d76cfede69fe972adbf73e94798647067203495",
                "md5": "dc0ce1119072845ae89b980e0c3b961a",
                "sha256": "fc804cfdc1a3ef11b87963e9c2aa75d7deff7f9ed898e3575b4e52857b22dfba"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dc0ce1119072845ae89b980e0c3b961a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 69236,
            "upload_time": "2023-12-19T07:41:29",
            "upload_time_iso_8601": "2023-12-19T07:41:29.635468Z",
            "url": "https://files.pythonhosted.org/packages/34/20/36cbd5e40f15b57dc63b2d76cfede69fe972adbf73e94798647067203495/shard_computer-1.1.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c708a8032e73b6a80aedaa8fe9a90d1ddc89bb26e35983a56a8328f516edd76f",
                "md5": "e3feceab1062dc72b0cb2f079786551c",
                "sha256": "1028e2d8e2b5940f53201454401d07af9054ee114ae883c2cf5dcdb896ea9a1e"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e3feceab1062dc72b0cb2f079786551c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 76619,
            "upload_time": "2023-12-19T07:41:30",
            "upload_time_iso_8601": "2023-12-19T07:41:30.638924Z",
            "url": "https://files.pythonhosted.org/packages/c7/08/a8032e73b6a80aedaa8fe9a90d1ddc89bb26e35983a56a8328f516edd76f/shard_computer-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7d61d5465f2b4d07e9f2a50273d7eb263e2bfb97d3e41f641f5b608bdb2c58d",
                "md5": "ee9e23f02ddc9842fb753444bd16a5cb",
                "sha256": "1ff4b6da2d8bd7db368ed3e1dbb4ed6c3aa1265467819e289aa7060e19204c27"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ee9e23f02ddc9842fb753444bd16a5cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 74198,
            "upload_time": "2023-12-19T07:41:31",
            "upload_time_iso_8601": "2023-12-19T07:41:31.567527Z",
            "url": "https://files.pythonhosted.org/packages/b7/d6/1d5465f2b4d07e9f2a50273d7eb263e2bfb97d3e41f641f5b608bdb2c58d/shard_computer-1.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "232b63308e77e8117c981654dafe5c247b45f8852d310f3dfaf9aaf3766fc4cb",
                "md5": "5674db4f42f5b669c4cafd9b8c1ab4f1",
                "sha256": "040f211fb7f319f90b48b42addc9a825a398a118f5e4898c6930d5b89871476c"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5674db4f42f5b669c4cafd9b8c1ab4f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 105560,
            "upload_time": "2023-12-19T07:41:33",
            "upload_time_iso_8601": "2023-12-19T07:41:33.157202Z",
            "url": "https://files.pythonhosted.org/packages/23/2b/63308e77e8117c981654dafe5c247b45f8852d310f3dfaf9aaf3766fc4cb/shard_computer-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "436a3ce9b2826a3bcd8006f255811834a275711126bd55571dca4647358aff9b",
                "md5": "9d63debaa15e4acba4a439c1224bae9f",
                "sha256": "540f509bee147b8782dfe2a3f4673511f327803f5bcedf3ce952fc4b61710304"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9d63debaa15e4acba4a439c1224bae9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 113518,
            "upload_time": "2023-12-19T07:41:34",
            "upload_time_iso_8601": "2023-12-19T07:41:34.701916Z",
            "url": "https://files.pythonhosted.org/packages/43/6a/3ce9b2826a3bcd8006f255811834a275711126bd55571dca4647358aff9b/shard_computer-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35774646dec257d5bd967ef301d5e82eef2e2a368d54105cfbe9efce4921fc2c",
                "md5": "e05d310e132ec513798db69da86d3688",
                "sha256": "e3699262cf879f157d3bda4345d486e7c62ed4b104fc227c5c3d55fe919026a4"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e05d310e132ec513798db69da86d3688",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 107908,
            "upload_time": "2023-12-19T07:41:35",
            "upload_time_iso_8601": "2023-12-19T07:41:35.784472Z",
            "url": "https://files.pythonhosted.org/packages/35/77/4646dec257d5bd967ef301d5e82eef2e2a368d54105cfbe9efce4921fc2c/shard_computer-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfcd9d6cb3e2a426dccf2a60e06ad36eb7c2e1bdbba97fc1ff18ab58631d97f1",
                "md5": "8c469e32429ae245186a966936b8b058",
                "sha256": "ed2af8e1a229fa93cf90132ba01fad58156e71d1420a416cdc288933de7c0378"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "8c469e32429ae245186a966936b8b058",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 64281,
            "upload_time": "2023-12-19T07:41:37",
            "upload_time_iso_8601": "2023-12-19T07:41:37.020462Z",
            "url": "https://files.pythonhosted.org/packages/df/cd/9d6cb3e2a426dccf2a60e06ad36eb7c2e1bdbba97fc1ff18ab58631d97f1/shard_computer-1.1.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8adcf4fdf52fdf034c46a6e0d87e9ad61d370dd94456d8121e60cc614124a2f",
                "md5": "31c21c1d87b8aaef653bad81075fb129",
                "sha256": "d81d3b52fde4bbdd215587bc10f8a6981ba4da304247b937ad92aef7c2256e7b"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "31c21c1d87b8aaef653bad81075fb129",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 69953,
            "upload_time": "2023-12-19T07:41:37",
            "upload_time_iso_8601": "2023-12-19T07:41:37.975660Z",
            "url": "https://files.pythonhosted.org/packages/f8/ad/cf4fdf52fdf034c46a6e0d87e9ad61d370dd94456d8121e60cc614124a2f/shard_computer-1.1.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd292cad4144b7eb3fe6abb468f1142e155281634370520b42ee0a11d8e4e562",
                "md5": "dcaed2557c7affe07d78dba7eb87b031",
                "sha256": "766a816ce065334ce6ab6772283252ec465a7afa54552454bbb7df75acf240ee"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dcaed2557c7affe07d78dba7eb87b031",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 75852,
            "upload_time": "2023-12-19T07:41:39",
            "upload_time_iso_8601": "2023-12-19T07:41:39.673085Z",
            "url": "https://files.pythonhosted.org/packages/fd/29/2cad4144b7eb3fe6abb468f1142e155281634370520b42ee0a11d8e4e562/shard_computer-1.1.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7354a5565b34188219e8cd0a47326944e50e8ed1a3eea37926c43df2c366fabb",
                "md5": "424e0fda562c2f8268c60e03e08d928f",
                "sha256": "639f99b65221a52aaf902d20598043af4ac16eeee15961f6667d4a12e0d43339"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "424e0fda562c2f8268c60e03e08d928f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 73163,
            "upload_time": "2023-12-19T07:41:41",
            "upload_time_iso_8601": "2023-12-19T07:41:41.303492Z",
            "url": "https://files.pythonhosted.org/packages/73/54/a5565b34188219e8cd0a47326944e50e8ed1a3eea37926c43df2c366fabb/shard_computer-1.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "545eec7212e194b4b1eea64d38b7fcc81556d3feb4083006e8e4885578e0710f",
                "md5": "a7adf7eec54225d1162f97091d348530",
                "sha256": "fd72dcd937056f7d3eef0a54ea73039e6f8f9a14a8c399802a7549053609c062"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a7adf7eec54225d1162f97091d348530",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 105274,
            "upload_time": "2023-12-19T07:41:42",
            "upload_time_iso_8601": "2023-12-19T07:41:42.265257Z",
            "url": "https://files.pythonhosted.org/packages/54/5e/ec7212e194b4b1eea64d38b7fcc81556d3feb4083006e8e4885578e0710f/shard_computer-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fad6e220c7c25b40fb072f8d0e2c73e0982cbc95a605220d4d135475e3f1019",
                "md5": "07ea2912ccb5fe2308d097bee707625d",
                "sha256": "5a49761482d99836b792d2b7acd6b3f759457739ca59df9546650659ca5e9457"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "07ea2912ccb5fe2308d097bee707625d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 113753,
            "upload_time": "2023-12-19T07:41:43",
            "upload_time_iso_8601": "2023-12-19T07:41:43.566471Z",
            "url": "https://files.pythonhosted.org/packages/5f/ad/6e220c7c25b40fb072f8d0e2c73e0982cbc95a605220d4d135475e3f1019/shard_computer-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "818e5720c257b8da2785a8a9a85412dbb0faa2e25b475147ed0457a91a6fcb0e",
                "md5": "cfc60e359e91bd8fb3d667fcae8c2bff",
                "sha256": "b757dd78b91e89427c98e70c011a1233165c00e44350790c4dd415f31b4017c4"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfc60e359e91bd8fb3d667fcae8c2bff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 107876,
            "upload_time": "2023-12-19T07:41:44",
            "upload_time_iso_8601": "2023-12-19T07:41:44.587499Z",
            "url": "https://files.pythonhosted.org/packages/81/8e/5720c257b8da2785a8a9a85412dbb0faa2e25b475147ed0457a91a6fcb0e/shard_computer-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8178728177debde0057ff99f2c0dad23ad063dded3de889c41a02d564cecaa77",
                "md5": "54f1d38984a559d6b02dd3bb2713ad5c",
                "sha256": "48c770503e5054e5bb34725060590880cfc2cc1a7d4fa2943dbc06b2dfe8de33"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "54f1d38984a559d6b02dd3bb2713ad5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 64111,
            "upload_time": "2023-12-19T07:41:45",
            "upload_time_iso_8601": "2023-12-19T07:41:45.922028Z",
            "url": "https://files.pythonhosted.org/packages/81/78/728177debde0057ff99f2c0dad23ad063dded3de889c41a02d564cecaa77/shard_computer-1.1.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fc5937f59de1a1a8bb3dc60d20353c7e65598ffd89fc35930dd636ae528487d",
                "md5": "ca4af62e4cf021824564cb7521e3101c",
                "sha256": "da5be0e183295f25331de35d761000408c1094501c28d81c796f21d67f58f548"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ca4af62e4cf021824564cb7521e3101c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 69774,
            "upload_time": "2023-12-19T07:41:46",
            "upload_time_iso_8601": "2023-12-19T07:41:46.983914Z",
            "url": "https://files.pythonhosted.org/packages/1f/c5/937f59de1a1a8bb3dc60d20353c7e65598ffd89fc35930dd636ae528487d/shard_computer-1.1.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7cc1fd6b5f334094c70a02e0a09cfd08462905b9da943e4fb3d3f0f82346535",
                "md5": "e0e48985dd35840a2d2f2a230f529d7f",
                "sha256": "a46d07671926ff5aa06b778ccafcaaf1df2fb6ecbeeff2eb27c352634935a250"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e0e48985dd35840a2d2f2a230f529d7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 75155,
            "upload_time": "2023-12-19T07:41:48",
            "upload_time_iso_8601": "2023-12-19T07:41:48.072916Z",
            "url": "https://files.pythonhosted.org/packages/a7/cc/1fd6b5f334094c70a02e0a09cfd08462905b9da943e4fb3d3f0f82346535/shard_computer-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04338e1d3db596a079f7460f362b5fe8c9e31c8b6d190cc4337b43bd3777451b",
                "md5": "6323e54241c834d78530702aa26fc74d",
                "sha256": "59653cb2e53e212ffc6fa6e0eadc9935191f1ac980fd930bc2f4ef86641cb0e3"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6323e54241c834d78530702aa26fc74d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 105936,
            "upload_time": "2023-12-19T07:41:49",
            "upload_time_iso_8601": "2023-12-19T07:41:49.646257Z",
            "url": "https://files.pythonhosted.org/packages/04/33/8e1d3db596a079f7460f362b5fe8c9e31c8b6d190cc4337b43bd3777451b/shard_computer-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec7a99519df11b010f8bc317e8503a0ecf1f678e5fb8886f2b488005940125eb",
                "md5": "00aef08b220f51a8e1cad3a98a3f54d2",
                "sha256": "b90df3584768d31d48c58c8dc08e122c1a8846a8a93d540a3de2c8e7b554280e"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "00aef08b220f51a8e1cad3a98a3f54d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 114145,
            "upload_time": "2023-12-19T07:41:50",
            "upload_time_iso_8601": "2023-12-19T07:41:50.625091Z",
            "url": "https://files.pythonhosted.org/packages/ec/7a/99519df11b010f8bc317e8503a0ecf1f678e5fb8886f2b488005940125eb/shard_computer-1.1.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81c76907915349faf786363062bae448ffbeb10351d55d63917937fb2f7c453f",
                "md5": "10bd13bfb4a427bd4197bab402f260d5",
                "sha256": "c4ddd493b3bc629b51e431abd32abe81757718b3db0e313530a1d9fe49143c2f"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10bd13bfb4a427bd4197bab402f260d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 107746,
            "upload_time": "2023-12-19T07:41:52",
            "upload_time_iso_8601": "2023-12-19T07:41:52.244078Z",
            "url": "https://files.pythonhosted.org/packages/81/c7/6907915349faf786363062bae448ffbeb10351d55d63917937fb2f7c453f/shard_computer-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3091e5b2ad77e07996d28502f587eefa7e9f8c1d4ab8c3256d95ba5f21572c72",
                "md5": "c2b4603d99dec874ec814975f8795a5e",
                "sha256": "141f8eff7cc0994b21eac3320132ae2529fb52c42fb0a879496b957a55f701d0"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "c2b4603d99dec874ec814975f8795a5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 64463,
            "upload_time": "2023-12-19T07:41:53",
            "upload_time_iso_8601": "2023-12-19T07:41:53.899660Z",
            "url": "https://files.pythonhosted.org/packages/30/91/e5b2ad77e07996d28502f587eefa7e9f8c1d4ab8c3256d95ba5f21572c72/shard_computer-1.1.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe36a47c9c0f1ef78a56fc0b451a6cba8f00aebf8b1348b99a0ebf404306993c",
                "md5": "c97e2a9a2d74a9df7e135014c4429a5b",
                "sha256": "70503ad8a0e57597d27b229f9299ee35243e0f85455f2197a89eef7b6c28bf2a"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c97e2a9a2d74a9df7e135014c4429a5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 69689,
            "upload_time": "2023-12-19T07:41:55",
            "upload_time_iso_8601": "2023-12-19T07:41:55.034348Z",
            "url": "https://files.pythonhosted.org/packages/fe/36/a47c9c0f1ef78a56fc0b451a6cba8f00aebf8b1348b99a0ebf404306993c/shard_computer-1.1.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d594eedc7727ef6954746eb5ea576931e4b9bee7a529d978a4a6ed02adeb5fa7",
                "md5": "28175a453b1e11ff65fe7e57855e55ac",
                "sha256": "c1a5742b0709da97b7f2efb119eac9b61e0a3bc19f3ddc4cab8a3aaf3d17fe57"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "28175a453b1e11ff65fe7e57855e55ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 75071,
            "upload_time": "2023-12-19T07:41:56",
            "upload_time_iso_8601": "2023-12-19T07:41:56.059481Z",
            "url": "https://files.pythonhosted.org/packages/d5/94/eedc7727ef6954746eb5ea576931e4b9bee7a529d978a4a6ed02adeb5fa7/shard_computer-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb8e4b8836e107fd138ef1f294c089b6c89a8859c9195e25ceab23b73592fa48",
                "md5": "e55bbcc223e3a7f055ab1fcaa37fa0a4",
                "sha256": "c3308e7cd46a002a6c6c72c6dc356db0aa60f31d52eac3a2d7f8d647bf5adeeb"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e55bbcc223e3a7f055ab1fcaa37fa0a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 72701,
            "upload_time": "2023-12-19T07:41:57",
            "upload_time_iso_8601": "2023-12-19T07:41:57.032845Z",
            "url": "https://files.pythonhosted.org/packages/cb/8e/4b8836e107fd138ef1f294c089b6c89a8859c9195e25ceab23b73592fa48/shard_computer-1.1.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "951516fb7a213a2b78bec1bf1a8969bb800be858bd8b636d1b49c715355d5c0a",
                "md5": "03a9c7011f82276cab05070dcfaa8305",
                "sha256": "aea51b0712254f61bd41a2ef23ffa88713b75d33e8260edbd23d944f805ff725"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "03a9c7011f82276cab05070dcfaa8305",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 104206,
            "upload_time": "2023-12-19T07:41:58",
            "upload_time_iso_8601": "2023-12-19T07:41:58.635243Z",
            "url": "https://files.pythonhosted.org/packages/95/15/16fb7a213a2b78bec1bf1a8969bb800be858bd8b636d1b49c715355d5c0a/shard_computer-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd4be03180bc93eefc53b3098bce9d1ad51e2cd45855e458b269890233ac4a2b",
                "md5": "3ea9cba8cd83ec2b2094f83527f5163c",
                "sha256": "48625fad1cf3a6c409636626d3106a66721e0dbef47515642a991b9349ce2049"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3ea9cba8cd83ec2b2094f83527f5163c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 111827,
            "upload_time": "2023-12-19T07:41:59",
            "upload_time_iso_8601": "2023-12-19T07:41:59.576046Z",
            "url": "https://files.pythonhosted.org/packages/bd/4b/e03180bc93eefc53b3098bce9d1ad51e2cd45855e458b269890233ac4a2b/shard_computer-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3a596917260b67a157cc4f98ed8e7fa8b1bdd30d7f3f547ca90afff6e2f8539",
                "md5": "2337296ff2371d1b92b47d51a2bbe946",
                "sha256": "f8f9f22ad8f66b54948867f1e347ca2d6c38fd5ce83d8ff103424ecd2e1156bf"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2337296ff2371d1b92b47d51a2bbe946",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 106394,
            "upload_time": "2023-12-19T07:42:01",
            "upload_time_iso_8601": "2023-12-19T07:42:01.122354Z",
            "url": "https://files.pythonhosted.org/packages/d3/a5/96917260b67a157cc4f98ed8e7fa8b1bdd30d7f3f547ca90afff6e2f8539/shard_computer-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e54afef0e5005d2050db282d3ff5d5ce440169a894e43555acd49d3b2382f1c1",
                "md5": "c183cea2d5f84282a69b5c919f644a56",
                "sha256": "dda9c0b720e5898f377ac999dc120af7b87658cbcd798db908622361c96a2fa4"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "c183cea2d5f84282a69b5c919f644a56",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 63360,
            "upload_time": "2023-12-19T07:42:02",
            "upload_time_iso_8601": "2023-12-19T07:42:02.208256Z",
            "url": "https://files.pythonhosted.org/packages/e5/4a/fef0e5005d2050db282d3ff5d5ce440169a894e43555acd49d3b2382f1c1/shard_computer-1.1.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bcb48030a19dc0e884a7c69422224c49c103c7161a2f88019ec5cc81de162bd",
                "md5": "6387d87b4965966f829992ef2a41c713",
                "sha256": "4bce8c3fb31f6c86b50288d50e1e56225b30de31b1549c6e3e506c69e5752fdf"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6387d87b4965966f829992ef2a41c713",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 69152,
            "upload_time": "2023-12-19T07:42:03",
            "upload_time_iso_8601": "2023-12-19T07:42:03.218983Z",
            "url": "https://files.pythonhosted.org/packages/8b/cb/48030a19dc0e884a7c69422224c49c103c7161a2f88019ec5cc81de162bd/shard_computer-1.1.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97b9a02d5c2e539070fd2773c48963a7fb656b5e2bd1cbda4ee05bc0442aa6d9",
                "md5": "864349fea23ddfb88ec048dfdb8f566b",
                "sha256": "84bc42b8f201783bac951657a84e32ccd31f551e4ea2876e7ac9d552d1ad5c91"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "864349fea23ddfb88ec048dfdb8f566b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 75287,
            "upload_time": "2023-12-19T07:42:04",
            "upload_time_iso_8601": "2023-12-19T07:42:04.807504Z",
            "url": "https://files.pythonhosted.org/packages/97/b9/a02d5c2e539070fd2773c48963a7fb656b5e2bd1cbda4ee05bc0442aa6d9/shard_computer-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3da8b463c06a0b1356183ed38210a632fe3636d40ec3621cb750ba97ebff5e8",
                "md5": "72a5465d396b636179e54fa83895a307",
                "sha256": "220756ef7da046c914ba82f8b0e7ac35052fe6438759987c582104e1cac561d6"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "72a5465d396b636179e54fa83895a307",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 72907,
            "upload_time": "2023-12-19T07:42:05",
            "upload_time_iso_8601": "2023-12-19T07:42:05.979093Z",
            "url": "https://files.pythonhosted.org/packages/f3/da/8b463c06a0b1356183ed38210a632fe3636d40ec3621cb750ba97ebff5e8/shard_computer-1.1.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af393e3f88f0f16786b9e9b069d1511c55f3e49258e8a3e81a1a54e1b57e3da4",
                "md5": "db7f2df7d3e2c37a71c14953a7136efc",
                "sha256": "84f0a3e3e23c81a3b885a7b1d10ddca55c36dc464f0a3056202cb344551e5728"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "db7f2df7d3e2c37a71c14953a7136efc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 104513,
            "upload_time": "2023-12-19T07:42:08",
            "upload_time_iso_8601": "2023-12-19T07:42:08.159733Z",
            "url": "https://files.pythonhosted.org/packages/af/39/3e3f88f0f16786b9e9b069d1511c55f3e49258e8a3e81a1a54e1b57e3da4/shard_computer-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59d330e71d604317b1e129a8f88e3a71d08d5ed7fde476f53845983f21717b58",
                "md5": "ba863d7240a7536bc2714d2f2521c340",
                "sha256": "c8415f99d7140692d7fbe07fb9d1b578b97da59099f6d8e0ca53ec313b64ee62"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ba863d7240a7536bc2714d2f2521c340",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 112242,
            "upload_time": "2023-12-19T07:42:09",
            "upload_time_iso_8601": "2023-12-19T07:42:09.306438Z",
            "url": "https://files.pythonhosted.org/packages/59/d3/30e71d604317b1e129a8f88e3a71d08d5ed7fde476f53845983f21717b58/shard_computer-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95b82fe6ec59eafe6728003e444cc468ea1d4d7efda912b945c5328420fe5aad",
                "md5": "2956c9b5cf7aaaf7fb45a0fd662c1ced",
                "sha256": "d123a715a50fa8614063ff7b9dc8b748424364614f0d910a592aa4bbc8ab369b"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2956c9b5cf7aaaf7fb45a0fd662c1ced",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 106800,
            "upload_time": "2023-12-19T07:42:11",
            "upload_time_iso_8601": "2023-12-19T07:42:11.632935Z",
            "url": "https://files.pythonhosted.org/packages/95/b8/2fe6ec59eafe6728003e444cc468ea1d4d7efda912b945c5328420fe5aad/shard_computer-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebe5540c79d4359986b71f67904f69ebe398f8b54bd7d534503a2527708e579e",
                "md5": "b2bc4f239b2dbe7545e7c9ebd4203896",
                "sha256": "84e78c372952083dd6523550e2387792a39d82c114f8edae4b896257eef9a599"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "b2bc4f239b2dbe7545e7c9ebd4203896",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 63520,
            "upload_time": "2023-12-19T07:42:12",
            "upload_time_iso_8601": "2023-12-19T07:42:12.747466Z",
            "url": "https://files.pythonhosted.org/packages/eb/e5/540c79d4359986b71f67904f69ebe398f8b54bd7d534503a2527708e579e/shard_computer-1.1.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16beeab758fc9b679b2076b943f8b5ec584d2311e4fb75e27084d4132a117443",
                "md5": "ddca9b47079760d0229b4f4f5b1e76dd",
                "sha256": "115bed52fde90d9d134b5ede69c5c0bdd37486994c1b8ebf5301396418c68c8f"
            },
            "downloads": -1,
            "filename": "shard_computer-1.1.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ddca9b47079760d0229b4f4f5b1e76dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 68904,
            "upload_time": "2023-12-19T07:42:13",
            "upload_time_iso_8601": "2023-12-19T07:42:13.815125Z",
            "url": "https://files.pythonhosted.org/packages/16/be/eab758fc9b679b2076b943f8b5ec584d2311e4fb75e27084d4132a117443/shard_computer-1.1.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07a31af80f83e65dca8ddc7e339122c03eab420aa9430ba01a31209cac5eb7f4",
                "md5": "bdd333cc46d6c9861b90b9ac15cd67d8",
                "sha256": "147524455acef038bcfbdd33bf3847dd6bbc9ac2063c7aa65b99ff57e22ac9ec"
            },
            "downloads": -1,
            "filename": "shard-computer-1.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "bdd333cc46d6c9861b90b9ac15cd67d8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7.0,<4.0.0",
            "size": 15488,
            "upload_time": "2023-12-19T07:42:14",
            "upload_time_iso_8601": "2023-12-19T07:42:14.881986Z",
            "url": "https://files.pythonhosted.org/packages/07/a3/1af80f83e65dca8ddc7e339122c03eab420aa9430ba01a31209cac5eb7f4/shard-computer-1.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-19 07:42:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "seung-lab",
    "github_project": "shard-computer",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "shard-computer"
}
        
Elapsed time: 0.16411s