casers


Namecasers JSON
Version 0.7.0 PyPI version JSON
download
home_pageNone
SummaryString case converter for Python written in Rust
upload_time2023-09-06 19:39:56
maintainerNone
docs_urlNone
authorDanil Akhtarov
requires_python>=3.7
licenseNone
keywords case rust convert cases
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # casers

[![PyPI](https://img.shields.io/pypi/v/casers)](https://pypi.org/project/casers/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/casers)](https://www.python.org/downloads/)
[![GitHub last commit](https://img.shields.io/github/last-commit/daxartio/casers)](https://github.com/daxartio/casers)
[![GitHub stars](https://img.shields.io/github/stars/daxartio/casers?style=social)](https://github.com/daxartio/casers)

## Features

| case     | example     |
|----------|-------------|
| camel    | `someText`  |
| snake    | `some_text` |
| kebab    | `some-text` |
| pascal   | `SomeText`  |
| constant | `SOME_TEXT` |

## Installation

```
pip install casers
```

## Usage

The examples are checked by pytest

```python
>>> from casers import to_camel, to_snake, to_kebab

>>> to_camel("some_text") == "someText"
True

>>> to_snake("someText") == "some_text"
True

>>> to_kebab("someText") == "some-text"
True
>>> to_kebab("some_text") == "some-text"
True

```

### pydantic

```
pip install "casers[pydantic]"
```

The package supports for pydantic 1 and 2 versions

```python
>>> from casers.pydantic import CamelAliases

>>> class Model(CamelAliases):
...     snake_case: str

>>> Model.model_validate({"snakeCase": "value"}).snake_case == "value"
True
>>> Model.model_validate_json('{"snakeCase": "value"}').snake_case == "value"
True

```

## Benchmark

```
------------------------------------------------------------------------------------------------ benchmark: 5 tests ------------------------------------------------------------------------------------------------
Name (time in us)                              Min                 Max                Mean             StdDev              Median                IQR            Outliers  OPS (Kops/s)            Rounds  Iterations
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_to_camel_python_builtin               31.4261 (1.0)      240.7331 (1.38)      33.6490 (1.0)       6.2544 (1.0)       32.5390 (1.0)       0.3171 (1.0)      635;2410       29.7185 (1.0)       16226           1
test_to_camel_rust                         47.2781 (1.50)     174.2220 (1.0)       49.2500 (1.46)      6.4981 (1.04)      47.7300 (1.47)      0.3830 (1.21)     656;1825       20.3046 (0.68)      12736           1
test_to_camel_pure_python                 107.1789 (3.41)     283.2729 (1.63)     114.8233 (3.41)     14.1427 (2.26)     112.8715 (3.47)      4.6182 (14.56)     418;558        8.7090 (0.29)       8522           1
test_to_camel_rust_parallel               113.6360 (3.62)     322.5910 (1.85)     145.0051 (4.31)     28.7182 (4.59)     136.9580 (4.21)     35.4961 (111.93)     302;65        6.8963 (0.23)       1917           1
test_to_camel_python_builtin_parallel     116.8901 (3.72)     392.9241 (2.26)     143.1725 (4.25)     23.2121 (3.71)     137.4620 (4.22)     23.0463 (72.67)     334;150        6.9846 (0.24)       3382           1
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Legend:
  Outliers: 1 Standard Deviation from Mean; 1.5 IQR (InterQuartile Range) from 1st Quartile and 3rd Quartile.
  OPS: Operations Per Second, computed as 1 / Mean
```

## License

* [MIT LICENSE](LICENSE)

## Contribution

[Contribution guidelines for this project](CONTRIBUTING.md)


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "casers",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "case,rust,convert cases",
    "author": "Danil Akhtarov",
    "author_email": "daxartio@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/e1/19/e9c17e45ea2f51349e0581a42a211722b62ba84b58bfa94f9cb4197bc334/casers-0.7.0.tar.gz",
    "platform": null,
    "description": "# casers\n\n[![PyPI](https://img.shields.io/pypi/v/casers)](https://pypi.org/project/casers/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/casers)](https://www.python.org/downloads/)\n[![GitHub last commit](https://img.shields.io/github/last-commit/daxartio/casers)](https://github.com/daxartio/casers)\n[![GitHub stars](https://img.shields.io/github/stars/daxartio/casers?style=social)](https://github.com/daxartio/casers)\n\n## Features\n\n| case     | example     |\n|----------|-------------|\n| camel    | `someText`  |\n| snake    | `some_text` |\n| kebab    | `some-text` |\n| pascal   | `SomeText`  |\n| constant | `SOME_TEXT` |\n\n## Installation\n\n```\npip install casers\n```\n\n## Usage\n\nThe examples are checked by pytest\n\n```python\n>>> from casers import to_camel, to_snake, to_kebab\n\n>>> to_camel(\"some_text\") == \"someText\"\nTrue\n\n>>> to_snake(\"someText\") == \"some_text\"\nTrue\n\n>>> to_kebab(\"someText\") == \"some-text\"\nTrue\n>>> to_kebab(\"some_text\") == \"some-text\"\nTrue\n\n```\n\n### pydantic\n\n```\npip install \"casers[pydantic]\"\n```\n\nThe package supports for pydantic 1 and 2 versions\n\n```python\n>>> from casers.pydantic import CamelAliases\n\n>>> class Model(CamelAliases):\n...     snake_case: str\n\n>>> Model.model_validate({\"snakeCase\": \"value\"}).snake_case == \"value\"\nTrue\n>>> Model.model_validate_json('{\"snakeCase\": \"value\"}').snake_case == \"value\"\nTrue\n\n```\n\n## Benchmark\n\n```\n------------------------------------------------------------------------------------------------ benchmark: 5 tests ------------------------------------------------------------------------------------------------\nName (time in us)                              Min                 Max                Mean             StdDev              Median                IQR            Outliers  OPS (Kops/s)            Rounds  Iterations\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ntest_to_camel_python_builtin               31.4261 (1.0)      240.7331 (1.38)      33.6490 (1.0)       6.2544 (1.0)       32.5390 (1.0)       0.3171 (1.0)      635;2410       29.7185 (1.0)       16226           1\ntest_to_camel_rust                         47.2781 (1.50)     174.2220 (1.0)       49.2500 (1.46)      6.4981 (1.04)      47.7300 (1.47)      0.3830 (1.21)     656;1825       20.3046 (0.68)      12736           1\ntest_to_camel_pure_python                 107.1789 (3.41)     283.2729 (1.63)     114.8233 (3.41)     14.1427 (2.26)     112.8715 (3.47)      4.6182 (14.56)     418;558        8.7090 (0.29)       8522           1\ntest_to_camel_rust_parallel               113.6360 (3.62)     322.5910 (1.85)     145.0051 (4.31)     28.7182 (4.59)     136.9580 (4.21)     35.4961 (111.93)     302;65        6.8963 (0.23)       1917           1\ntest_to_camel_python_builtin_parallel     116.8901 (3.72)     392.9241 (2.26)     143.1725 (4.25)     23.2121 (3.71)     137.4620 (4.22)     23.0463 (72.67)     334;150        6.9846 (0.24)       3382           1\n--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\nLegend:\n  Outliers: 1 Standard Deviation from Mean; 1.5 IQR (InterQuartile Range) from 1st Quartile and 3rd Quartile.\n  OPS: Operations Per Second, computed as 1 / Mean\n```\n\n## License\n\n* [MIT LICENSE](LICENSE)\n\n## Contribution\n\n[Contribution guidelines for this project](CONTRIBUTING.md)\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "String case converter for Python written in Rust",
    "version": "0.7.0",
    "project_urls": {
        "Changelog": "https://github.com/daxartio/casers/blob/main/CHANGELOG.md",
        "homepage": "https://pypi.org/project/casers",
        "repository": "https://github.com/daxartio/casers"
    },
    "split_keywords": [
        "case",
        "rust",
        "convert cases"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf4b6798d958e7d2c42d5e8b2b6bdbec73c179f8adfb64dfa1c1e138f194f145",
                "md5": "44cac49a7566565e715847d5865068c7",
                "sha256": "50311464f6017084992c69ef3e9c42e6e6c3418a01d9b797be6f600ee801d854"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44cac49a7566565e715847d5865068c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 245655,
            "upload_time": "2023-09-06T19:36:57",
            "upload_time_iso_8601": "2023-09-06T19:36:57.482424Z",
            "url": "https://files.pythonhosted.org/packages/cf/4b/6798d958e7d2c42d5e8b2b6bdbec73c179f8adfb64dfa1c1e138f194f145/casers-0.7.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "383f771030a3b40900e2d08931680ddf0111ba3677d58e2fbf4580d5dea0ce83",
                "md5": "2070a39a4434badf089acf181ac78800",
                "sha256": "747be2ef932cfe60b6b36eda27726980b61e18be6cbe0ed4e4968ff09df306d7"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2070a39a4434badf089acf181ac78800",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 241775,
            "upload_time": "2023-09-06T19:36:59",
            "upload_time_iso_8601": "2023-09-06T19:36:59.819873Z",
            "url": "https://files.pythonhosted.org/packages/38/3f/771030a3b40900e2d08931680ddf0111ba3677d58e2fbf4580d5dea0ce83/casers-0.7.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d01690d553aa48fc0dc5f4ed93c5eb1328b61f59cdf05df1b375983e179e96d1",
                "md5": "0fc35348ce0cf65b86ea9268b1a3d2b6",
                "sha256": "29df1f4ff8c03abafdb4fca0476d6bdf221654454c3c4007d6f5e42f1d1323fe"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0fc35348ce0cf65b86ea9268b1a3d2b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1138133,
            "upload_time": "2023-09-06T19:37:02",
            "upload_time_iso_8601": "2023-09-06T19:37:02.313355Z",
            "url": "https://files.pythonhosted.org/packages/d0/16/90d553aa48fc0dc5f4ed93c5eb1328b61f59cdf05df1b375983e179e96d1/casers-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4598190970f5718febda0b78fff3d7f42914e1e8669fc45c8236a04ca4e1d17",
                "md5": "a8583b7145a1b971bdc880854ad29653",
                "sha256": "8d81ed7ca14002f0b5d5dede689418f8659c11c8e889bd0d95e5738cec1413ba"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a8583b7145a1b971bdc880854ad29653",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1141705,
            "upload_time": "2023-09-06T19:37:05",
            "upload_time_iso_8601": "2023-09-06T19:37:05.115526Z",
            "url": "https://files.pythonhosted.org/packages/c4/59/8190970f5718febda0b78fff3d7f42914e1e8669fc45c8236a04ca4e1d17/casers-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2989820bfa28d49fe6902fea8ed3d624afede344184b3d73dede470a8e068788",
                "md5": "dac3b426bf6918ac076922aeac71c520",
                "sha256": "d1828630d3839e1276a92f58761b783d294c09b44d4208216b404c4ea8f289bf"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "dac3b426bf6918ac076922aeac71c520",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1249507,
            "upload_time": "2023-09-06T19:37:07",
            "upload_time_iso_8601": "2023-09-06T19:37:07.624762Z",
            "url": "https://files.pythonhosted.org/packages/29/89/820bfa28d49fe6902fea8ed3d624afede344184b3d73dede470a8e068788/casers-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a70f8c90255a23659730b72cf88f3e484252f79e751f132e2ee4adb05dce217a",
                "md5": "e5c4be342e122db15af4b6f572b2258f",
                "sha256": "f4f04fa89641b3f134d31817a8cae4e376baa8323d06c0dbd99197acd672d4d6"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e5c4be342e122db15af4b6f572b2258f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1304963,
            "upload_time": "2023-09-06T19:37:09",
            "upload_time_iso_8601": "2023-09-06T19:37:09.730607Z",
            "url": "https://files.pythonhosted.org/packages/a7/0f/8c90255a23659730b72cf88f3e484252f79e751f132e2ee4adb05dce217a/casers-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "809de2d4a55058dcc7a5084e6c75dcd634ec360bd8248d1f371319280bcfcb4c",
                "md5": "e4e5dc53e525c0f0ce8fa9d107d81b14",
                "sha256": "b8aa9e45e132e7a5c114eec0410db6db629100b4c2f34c96e0478a32fee0bc4d"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4e5dc53e525c0f0ce8fa9d107d81b14",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1138526,
            "upload_time": "2023-09-06T19:37:11",
            "upload_time_iso_8601": "2023-09-06T19:37:11.950099Z",
            "url": "https://files.pythonhosted.org/packages/80/9d/e2d4a55058dcc7a5084e6c75dcd634ec360bd8248d1f371319280bcfcb4c/casers-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aabaa6c55a9b5c1b54f18fec872553adc8f7e5b668d95364f37ed15410fe7203",
                "md5": "74c6e74c4c5f35c12a55156afa54c786",
                "sha256": "a4479cc3bc97146e86f0e6c5cf22ebfc77119ff643365ec303ce2e86ed1fc9a8"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "74c6e74c4c5f35c12a55156afa54c786",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1157349,
            "upload_time": "2023-09-06T19:37:14",
            "upload_time_iso_8601": "2023-09-06T19:37:14.086203Z",
            "url": "https://files.pythonhosted.org/packages/aa/ba/a6c55a9b5c1b54f18fec872553adc8f7e5b668d95364f37ed15410fe7203/casers-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "689e50acf3d927ef6e413493ab569238dca634880eddd7af0e53152d0498504c",
                "md5": "0eae6f462c9b1714ea78a5bdf3a4b7bf",
                "sha256": "21cc8655d73b4c2ccc89cf56ca91d8e82116eb8503958bdabbd8c029797f5d07"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "0eae6f462c9b1714ea78a5bdf3a4b7bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 109051,
            "upload_time": "2023-09-06T19:37:15",
            "upload_time_iso_8601": "2023-09-06T19:37:15.736671Z",
            "url": "https://files.pythonhosted.org/packages/68/9e/50acf3d927ef6e413493ab569238dca634880eddd7af0e53152d0498504c/casers-0.7.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "034cfd99e592093c80de4672f71f2a7741146e412bee4c5224ec3333f997381e",
                "md5": "2c848e8c431d4ecec9a62ec653911c0e",
                "sha256": "79d916f3f7aee62255c3c628023c25897987d53700f297f72365a0f115c14db4"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c848e8c431d4ecec9a62ec653911c0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 112077,
            "upload_time": "2023-09-06T19:37:17",
            "upload_time_iso_8601": "2023-09-06T19:37:17.755494Z",
            "url": "https://files.pythonhosted.org/packages/03/4c/fd99e592093c80de4672f71f2a7741146e412bee4c5224ec3333f997381e/casers-0.7.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c37f9024b05d07c6b5b28d4492a770bd337d4bab3e5de43c57913b0013284f1",
                "md5": "b5ee4bb945717a8e05dc010e9ec97358",
                "sha256": "9484332c6ae87e83d695061223f8bac339b86612e153320bc84741ec95b6236c"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5ee4bb945717a8e05dc010e9ec97358",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 245656,
            "upload_time": "2023-09-06T19:37:19",
            "upload_time_iso_8601": "2023-09-06T19:37:19.903064Z",
            "url": "https://files.pythonhosted.org/packages/0c/37/f9024b05d07c6b5b28d4492a770bd337d4bab3e5de43c57913b0013284f1/casers-0.7.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95151f88ea09d4e79c7a5c0d89acbab34dc15aea1a30d26c0552ca3bf0c8ee11",
                "md5": "dc5458b288e1985706e65da52d9793bc",
                "sha256": "a59aa8f103fd58a9ad1755747ee6ece626b062d88aa103032ebca70d229bd496"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dc5458b288e1985706e65da52d9793bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 241780,
            "upload_time": "2023-09-06T19:37:22",
            "upload_time_iso_8601": "2023-09-06T19:37:22.331420Z",
            "url": "https://files.pythonhosted.org/packages/95/15/1f88ea09d4e79c7a5c0d89acbab34dc15aea1a30d26c0552ca3bf0c8ee11/casers-0.7.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f77eaa691a3d9944367d5d6cba1d8d88c2b2be0799a8e8a36043cc43d4ac3a6",
                "md5": "cd6250c10c07dfc0221634ac84a7917c",
                "sha256": "4440bc2f128632650cac2324f2d00aec95ad5c5fa40491b45026279bf066e3e5"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cd6250c10c07dfc0221634ac84a7917c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1138197,
            "upload_time": "2023-09-06T19:37:25",
            "upload_time_iso_8601": "2023-09-06T19:37:25.138011Z",
            "url": "https://files.pythonhosted.org/packages/0f/77/eaa691a3d9944367d5d6cba1d8d88c2b2be0799a8e8a36043cc43d4ac3a6/casers-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f3aa7816bf4f63180f10856d9852a662e9b3280a8416a1fac55cb5eefa692a3",
                "md5": "3e636cf570d90049e20f9840a3e0902b",
                "sha256": "63c6569dcbec7a036cff411cc8e0dd0a277038360530efe1cffbff972fd09f5c"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3e636cf570d90049e20f9840a3e0902b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1141762,
            "upload_time": "2023-09-06T19:37:27",
            "upload_time_iso_8601": "2023-09-06T19:37:27.377930Z",
            "url": "https://files.pythonhosted.org/packages/7f/3a/a7816bf4f63180f10856d9852a662e9b3280a8416a1fac55cb5eefa692a3/casers-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b5a179b4c73472fc9688c7e352dfa9992bb8f92fcd26bdc16c59297383adc80",
                "md5": "0e5d6d09e4cd47731ee206b58bd27acd",
                "sha256": "64c7ba40e2ee09ea41d807eb89f1f0b5d58e69e7086509ba2d08f819f09102eb"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0e5d6d09e4cd47731ee206b58bd27acd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1249538,
            "upload_time": "2023-09-06T19:37:30",
            "upload_time_iso_8601": "2023-09-06T19:37:30.028716Z",
            "url": "https://files.pythonhosted.org/packages/0b/5a/179b4c73472fc9688c7e352dfa9992bb8f92fcd26bdc16c59297383adc80/casers-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d825c1b0b91539939ff0cf84d0e5c45b166095c73c65d4b86d2f9996bb67aa9",
                "md5": "8d83f0e62f1875bfae98cf09be58e140",
                "sha256": "218ed4c5887282bfb6d471beaa8f271ef4f18edb679159b2c52137b200b9f391"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8d83f0e62f1875bfae98cf09be58e140",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1304994,
            "upload_time": "2023-09-06T19:37:33",
            "upload_time_iso_8601": "2023-09-06T19:37:33.553870Z",
            "url": "https://files.pythonhosted.org/packages/6d/82/5c1b0b91539939ff0cf84d0e5c45b166095c73c65d4b86d2f9996bb67aa9/casers-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62d5cd7572fb3a6c9d6451e5e24aa0f4cf660bdcc330f6e47c08472b04905c69",
                "md5": "21329770bfcc7ae04f95f2e3e2301729",
                "sha256": "cd43ebf3e09e7c5174c7f5bd1d6263b2dae3b3329a2350bbf941407ce010d917"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21329770bfcc7ae04f95f2e3e2301729",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1138577,
            "upload_time": "2023-09-06T19:37:36",
            "upload_time_iso_8601": "2023-09-06T19:37:36.557717Z",
            "url": "https://files.pythonhosted.org/packages/62/d5/cd7572fb3a6c9d6451e5e24aa0f4cf660bdcc330f6e47c08472b04905c69/casers-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e22247dfe31b35e082db22acc7d4b9f0d6d675ca7d9a2ef35341ab969b4dee63",
                "md5": "8df510a0685e747a63544c1699e39e9b",
                "sha256": "08406693d1044529864616a84aaa2b1c4af4e9614768c262b8a99668073a9bf3"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "8df510a0685e747a63544c1699e39e9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1157381,
            "upload_time": "2023-09-06T19:37:38",
            "upload_time_iso_8601": "2023-09-06T19:37:38.483007Z",
            "url": "https://files.pythonhosted.org/packages/e2/22/47dfe31b35e082db22acc7d4b9f0d6d675ca7d9a2ef35341ab969b4dee63/casers-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14d59c2cce370cd4ddaba393a167658682d5fb34cc4d16ee975a003254fb3deb",
                "md5": "ac93d0809ec06e73b462dad7b28a71ea",
                "sha256": "ce860666f808ca6db37630bfbf96407141cf066488a5e38087ec61883ce56dbe"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "ac93d0809ec06e73b462dad7b28a71ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 109053,
            "upload_time": "2023-09-06T19:37:40",
            "upload_time_iso_8601": "2023-09-06T19:37:40.204273Z",
            "url": "https://files.pythonhosted.org/packages/14/d5/9c2cce370cd4ddaba393a167658682d5fb34cc4d16ee975a003254fb3deb/casers-0.7.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89e023054c5d0ba11d9c87939a6b090f01271b16845931833d6d501688b6beaf",
                "md5": "12dd5a6a388a8858f955648eb99177ec",
                "sha256": "058d7020e735e051ddda74d5aaa8b8a83c2c89cbf803ac22f5230c2944617238"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "12dd5a6a388a8858f955648eb99177ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 112080,
            "upload_time": "2023-09-06T19:37:41",
            "upload_time_iso_8601": "2023-09-06T19:37:41.602281Z",
            "url": "https://files.pythonhosted.org/packages/89/e0/23054c5d0ba11d9c87939a6b090f01271b16845931833d6d501688b6beaf/casers-0.7.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c76dfdcc00f5ed064335c0b0d52c85b74de39515750b559f9905d8916eb935dc",
                "md5": "8a097397bade0feddd132bc91fb361d4",
                "sha256": "05a275b7f2d8de22dd3ccd0d247dec7f78ec9989bf313afcfd91b988491d3d83"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8a097397bade0feddd132bc91fb361d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1137103,
            "upload_time": "2023-09-06T19:37:43",
            "upload_time_iso_8601": "2023-09-06T19:37:43.632497Z",
            "url": "https://files.pythonhosted.org/packages/c7/6d/fdcc00f5ed064335c0b0d52c85b74de39515750b559f9905d8916eb935dc/casers-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1607fd0890c8afbb0f18b39c5ad3ff755a7d0296befa043000d22b38f7e7af0f",
                "md5": "a591a1e546049e308b63bf166313483e",
                "sha256": "4fbe46bee6d6b0e198448769b4391e7e659147f3537873d91f1b67ba67ffe6b7"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a591a1e546049e308b63bf166313483e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1140606,
            "upload_time": "2023-09-06T19:37:46",
            "upload_time_iso_8601": "2023-09-06T19:37:46.238512Z",
            "url": "https://files.pythonhosted.org/packages/16/07/fd0890c8afbb0f18b39c5ad3ff755a7d0296befa043000d22b38f7e7af0f/casers-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "149ebc00f83987785dbd4a49e0b1c04e89ecfcdad46e4556aa26d74d78dd1c8f",
                "md5": "1728cbe31c35763e5bb8bf5219fa61e3",
                "sha256": "4ba28128d12057b1c3e72c7b8040d47ad3e614fc2dda067bed979903e9b9d21d"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1728cbe31c35763e5bb8bf5219fa61e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1253859,
            "upload_time": "2023-09-06T19:37:48",
            "upload_time_iso_8601": "2023-09-06T19:37:48.712276Z",
            "url": "https://files.pythonhosted.org/packages/14/9e/bc00f83987785dbd4a49e0b1c04e89ecfcdad46e4556aa26d74d78dd1c8f/casers-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "570c543f860ce2ddf0083569d7fa0f35027247806539dbf4c9022b79c54ce978",
                "md5": "183cf2e906889caab9585927e5738b81",
                "sha256": "f9f7a05f0257a439011a43b83cca5d1a34a8d78731cf7092ccfcc4e603348783"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "183cf2e906889caab9585927e5738b81",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1291438,
            "upload_time": "2023-09-06T19:37:53",
            "upload_time_iso_8601": "2023-09-06T19:37:53.189534Z",
            "url": "https://files.pythonhosted.org/packages/57/0c/543f860ce2ddf0083569d7fa0f35027247806539dbf4c9022b79c54ce978/casers-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "722fd3b396c0fd55819579e7175f82f38045d53b0b3248e824f1c53fbff2597b",
                "md5": "09d069e0a18002fec9091b2b031f7a22",
                "sha256": "233e3c11fb3cfb1028c10b8234adea22f415991da0774649c2ac1793e0247511"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09d069e0a18002fec9091b2b031f7a22",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1138483,
            "upload_time": "2023-09-06T19:37:55",
            "upload_time_iso_8601": "2023-09-06T19:37:55.202464Z",
            "url": "https://files.pythonhosted.org/packages/72/2f/d3b396c0fd55819579e7175f82f38045d53b0b3248e824f1c53fbff2597b/casers-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1c1af901def506094c6882acd0b0b801bb54937d12f5c49980a012f883245c8",
                "md5": "76dfe3fcf394dea0c0404e37be18d2af",
                "sha256": "bfea1422e85e597000e51128358f0a67d41be7bddd973df13f47d3428da4429c"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "76dfe3fcf394dea0c0404e37be18d2af",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1155627,
            "upload_time": "2023-09-06T19:37:57",
            "upload_time_iso_8601": "2023-09-06T19:37:57.091025Z",
            "url": "https://files.pythonhosted.org/packages/c1/c1/af901def506094c6882acd0b0b801bb54937d12f5c49980a012f883245c8/casers-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "840069d520c1509b150d2ba2be7816a76981e894397d1f9fa30e0cb4e623288f",
                "md5": "4293cf0083b51de4898213a41fe21780",
                "sha256": "19eebda3cd9c0ccfcaf4d8cf3565fef4f419fd1d9a83af0411861fdbcfe3fb20"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp37-cp37m-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4293cf0083b51de4898213a41fe21780",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 245680,
            "upload_time": "2023-09-06T19:37:59",
            "upload_time_iso_8601": "2023-09-06T19:37:59.020725Z",
            "url": "https://files.pythonhosted.org/packages/84/00/69d520c1509b150d2ba2be7816a76981e894397d1f9fa30e0cb4e623288f/casers-0.7.0-cp37-cp37m-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a8d7c02375cc118a24e3f2b87f4f8acdd4110ef11d9fe44c50723f34f300a71",
                "md5": "dbf4540b0b8fe58f797c25acb43d7245",
                "sha256": "3fb111057ab6be306ee4859d2740ee9b43d9fdff6ebe0d760e24513818365b6b"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp37-cp37m-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dbf4540b0b8fe58f797c25acb43d7245",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 241796,
            "upload_time": "2023-09-06T19:38:01",
            "upload_time_iso_8601": "2023-09-06T19:38:01.007462Z",
            "url": "https://files.pythonhosted.org/packages/0a/8d/7c02375cc118a24e3f2b87f4f8acdd4110ef11d9fe44c50723f34f300a71/casers-0.7.0-cp37-cp37m-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c226556396fae7d8bbd02addf9777d23dad405fe39623f88550776de33bc4f96",
                "md5": "40414b26b2f47e12f349e88f245141a2",
                "sha256": "b3aa4ef95b28014f5eecf2824757b5cabc88fbd6870c96f512f4fb993b2f176c"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "40414b26b2f47e12f349e88f245141a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1138408,
            "upload_time": "2023-09-06T19:38:05",
            "upload_time_iso_8601": "2023-09-06T19:38:05.381356Z",
            "url": "https://files.pythonhosted.org/packages/c2/26/556396fae7d8bbd02addf9777d23dad405fe39623f88550776de33bc4f96/casers-0.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db50c30069a628b05e95c0568413e1e8b15654279750ecb78193b3c2176fb903",
                "md5": "031201274efd501a194cb800e1e0c900",
                "sha256": "13de3c84e9ce6d0013a7d58709558e2d23f3c2e58c9347a958d57f6a581bdcba"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "031201274efd501a194cb800e1e0c900",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1141698,
            "upload_time": "2023-09-06T19:38:07",
            "upload_time_iso_8601": "2023-09-06T19:38:07.433521Z",
            "url": "https://files.pythonhosted.org/packages/db/50/c30069a628b05e95c0568413e1e8b15654279750ecb78193b3c2176fb903/casers-0.7.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37d05d29ae0811c93584ae508b1f734d63e1ec96872b5f63b9b151e150cf63c5",
                "md5": "d26eac6d1808095cc848d258dcb06ac0",
                "sha256": "71d7a7dea3846af7233db47f37c5b3f0be4cee86585c3184044062048441aaf9"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d26eac6d1808095cc848d258dcb06ac0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1249668,
            "upload_time": "2023-09-06T19:38:09",
            "upload_time_iso_8601": "2023-09-06T19:38:09.539459Z",
            "url": "https://files.pythonhosted.org/packages/37/d0/5d29ae0811c93584ae508b1f734d63e1ec96872b5f63b9b151e150cf63c5/casers-0.7.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2cc673bff2e2a9cac75c465c5cbab00b71ae055e185bab7e4f5a7c2dbfec183b",
                "md5": "d5f95f2439af4662624e08380cd16bd6",
                "sha256": "346fbb8187a7d040a16168fcd114da6ecea328f76bfb2f11abcc3f22a8ba8e21"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d5f95f2439af4662624e08380cd16bd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1305665,
            "upload_time": "2023-09-06T19:38:11",
            "upload_time_iso_8601": "2023-09-06T19:38:11.808348Z",
            "url": "https://files.pythonhosted.org/packages/2c/c6/73bff2e2a9cac75c465c5cbab00b71ae055e185bab7e4f5a7c2dbfec183b/casers-0.7.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb4bfe87ddcf8334600fb341dfc28aec2b33718c655e253cca3922bf204f5459",
                "md5": "456baee755a1d36e9066120fd210c9cb",
                "sha256": "5a00d62fe5112be0d47ee770a9b86e0cb31d92fbebfe9dbd87f2b2c224949034"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "456baee755a1d36e9066120fd210c9cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1138405,
            "upload_time": "2023-09-06T19:38:13",
            "upload_time_iso_8601": "2023-09-06T19:38:13.779854Z",
            "url": "https://files.pythonhosted.org/packages/cb/4b/fe87ddcf8334600fb341dfc28aec2b33718c655e253cca3922bf204f5459/casers-0.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b19892037af90f2b07488be5440c44b11223ee3e634120bde09c0b55052ee869",
                "md5": "2f49283deab63bb54550b20385ccb9ef",
                "sha256": "e2959406e5f51ecb8982b6c6d3f344155d61bc5962dca166e46d37c389572271"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2f49283deab63bb54550b20385ccb9ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1157152,
            "upload_time": "2023-09-06T19:38:16",
            "upload_time_iso_8601": "2023-09-06T19:38:16.417259Z",
            "url": "https://files.pythonhosted.org/packages/b1/98/92037af90f2b07488be5440c44b11223ee3e634120bde09c0b55052ee869/casers-0.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b830d25faad1b0b2896e59e8da922544846c14040d49811892f6df07d49bf2f6",
                "md5": "74e9b3494d5f1d48f22b4093a645fe33",
                "sha256": "e6e8e9120f52bf93afa972534a6a03526829b683d298992f0fc8a23c808e4f62"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "74e9b3494d5f1d48f22b4093a645fe33",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 109177,
            "upload_time": "2023-09-06T19:38:18",
            "upload_time_iso_8601": "2023-09-06T19:38:18.839263Z",
            "url": "https://files.pythonhosted.org/packages/b8/30/d25faad1b0b2896e59e8da922544846c14040d49811892f6df07d49bf2f6/casers-0.7.0-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2799143cfb51d5220b009887d7412958f2df4db27e8d8f8cdd21d47a9ef29017",
                "md5": "57cf590465278a7736843dc31509a2c1",
                "sha256": "3b0ab6296527fb78a25fa5884b3695cb3ddaa63668b6f3eeeb077175dd0c47ca"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "57cf590465278a7736843dc31509a2c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 112080,
            "upload_time": "2023-09-06T19:38:20",
            "upload_time_iso_8601": "2023-09-06T19:38:20.894631Z",
            "url": "https://files.pythonhosted.org/packages/27/99/143cfb51d5220b009887d7412958f2df4db27e8d8f8cdd21d47a9ef29017/casers-0.7.0-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "258108afef2411087b4b15e914c43470392f7c4e5c0faa89660e51efd39e3fd1",
                "md5": "b51359e5dba19a8cd544a8c126776f64",
                "sha256": "3f72664ea16691d13054c915a1dbbbb025eedf6eb48f081b94041f188fde0ae4"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b51359e5dba19a8cd544a8c126776f64",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1138414,
            "upload_time": "2023-09-06T19:38:22",
            "upload_time_iso_8601": "2023-09-06T19:38:22.653843Z",
            "url": "https://files.pythonhosted.org/packages/25/81/08afef2411087b4b15e914c43470392f7c4e5c0faa89660e51efd39e3fd1/casers-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ab187fcfa1f5a43bb48bfb3728f2755a08c835544c66bb12f2d5a97cbac0cdd",
                "md5": "3d64c11e2140e7e987fce0025a253f6a",
                "sha256": "021db6c611a8710c24613b90bb193f1c631c16b4b88d9aeed21dd07072bf74c1"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3d64c11e2140e7e987fce0025a253f6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1141731,
            "upload_time": "2023-09-06T19:38:24",
            "upload_time_iso_8601": "2023-09-06T19:38:24.896323Z",
            "url": "https://files.pythonhosted.org/packages/1a/b1/87fcfa1f5a43bb48bfb3728f2755a08c835544c66bb12f2d5a97cbac0cdd/casers-0.7.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afb615ca9228fabe53b71f9cf01bdfb547d9b7d765f6cd13e8f3808f1eb58412",
                "md5": "2bfaa7793b8937136901b645ca1178d7",
                "sha256": "8e26db2d4706c92ebe52662312f745e7dbe61f37df209cc94118f8f8e404271a"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2bfaa7793b8937136901b645ca1178d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1249743,
            "upload_time": "2023-09-06T19:38:27",
            "upload_time_iso_8601": "2023-09-06T19:38:27.475557Z",
            "url": "https://files.pythonhosted.org/packages/af/b6/15ca9228fabe53b71f9cf01bdfb547d9b7d765f6cd13e8f3808f1eb58412/casers-0.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0783b9d66f61c88c496c5302292234b489c08515700e6e86dfca5a3ccaf26c95",
                "md5": "16bdf582ba5279bed275b72269a94737",
                "sha256": "1f4a02b2d592b5dc3c588e7afa45fc58bf4c3f3f9ed1cfc01d76c5c51336aaa9"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "16bdf582ba5279bed275b72269a94737",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1304687,
            "upload_time": "2023-09-06T19:38:29",
            "upload_time_iso_8601": "2023-09-06T19:38:29.556373Z",
            "url": "https://files.pythonhosted.org/packages/07/83/b9d66f61c88c496c5302292234b489c08515700e6e86dfca5a3ccaf26c95/casers-0.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ea64e74bc4d80faa4c45186aac856f7a59e06dccc218c09d43e6fe8e7a23f5b",
                "md5": "fdd7844a8e12a4fc236274ec0fbbdc93",
                "sha256": "3c10c2102d7fcb1dc8e9f9e2d0a11cec757284f6f990543bea6eb2df2874a482"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fdd7844a8e12a4fc236274ec0fbbdc93",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1138428,
            "upload_time": "2023-09-06T19:38:32",
            "upload_time_iso_8601": "2023-09-06T19:38:32.114260Z",
            "url": "https://files.pythonhosted.org/packages/0e/a6/4e74bc4d80faa4c45186aac856f7a59e06dccc218c09d43e6fe8e7a23f5b/casers-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20f76053937c3f23f323b63e8ada98245f1e670ae1a00efde64d78a46b253cc8",
                "md5": "db6cad03129c9c70733fc66547b479ee",
                "sha256": "e405e1cbc09f05e3dbd002dfdb566f795c6f04fc3b606f6ba6cdd78cff4c5c9c"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "db6cad03129c9c70733fc66547b479ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1157241,
            "upload_time": "2023-09-06T19:38:34",
            "upload_time_iso_8601": "2023-09-06T19:38:34.765154Z",
            "url": "https://files.pythonhosted.org/packages/20/f7/6053937c3f23f323b63e8ada98245f1e670ae1a00efde64d78a46b253cc8/casers-0.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a5b7ba3bf29096bd41e366417e18719b6b7e869b027dd7e6dd419043d4772dd",
                "md5": "7db5368762fc5da673ce94c6ebab6c7d",
                "sha256": "4900361b9fab9762fe9f5b746dfea5c6029e9638d2ca10e8f836e7db6934bdbe"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "7db5368762fc5da673ce94c6ebab6c7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 109211,
            "upload_time": "2023-09-06T19:38:36",
            "upload_time_iso_8601": "2023-09-06T19:38:36.933297Z",
            "url": "https://files.pythonhosted.org/packages/2a/5b/7ba3bf29096bd41e366417e18719b6b7e869b027dd7e6dd419043d4772dd/casers-0.7.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f9a7d4c334e9f16d78394d5cc980ac5bb92d11fa5639cdddb055ce4d5ccebf5",
                "md5": "4d7c7edf4c1cafd5465baa86354ed6ea",
                "sha256": "02ee91e430373ba08ce38602184ed94aff4cb545215f21a6029de24788b66c98"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4d7c7edf4c1cafd5465baa86354ed6ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 112105,
            "upload_time": "2023-09-06T19:38:38",
            "upload_time_iso_8601": "2023-09-06T19:38:38.380876Z",
            "url": "https://files.pythonhosted.org/packages/2f/9a/7d4c334e9f16d78394d5cc980ac5bb92d11fa5639cdddb055ce4d5ccebf5/casers-0.7.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9bea0bcc7752eed4fee02ffccb8685644ed21d664f5df9229360fc6eaa4c6b2d",
                "md5": "cf4c787aedccedbd09b5fa0069658d6a",
                "sha256": "e6bbcfafb175020c9b1a04fc72209a8e92f36282759caf62ffe7cd9d8ec48295"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cf4c787aedccedbd09b5fa0069658d6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1138704,
            "upload_time": "2023-09-06T19:38:40",
            "upload_time_iso_8601": "2023-09-06T19:38:40.124121Z",
            "url": "https://files.pythonhosted.org/packages/9b/ea/0bcc7752eed4fee02ffccb8685644ed21d664f5df9229360fc6eaa4c6b2d/casers-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a51dce5df28d66315ad7abc931f193d05790c819699da60733e55dfbcca094bd",
                "md5": "da5729bf5f0827e817cd24845a3ee283",
                "sha256": "f117ea81ed29925f79da59f5d7e480d48389b6e569e159fe0eac89043040f95e"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "da5729bf5f0827e817cd24845a3ee283",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1141745,
            "upload_time": "2023-09-06T19:38:42",
            "upload_time_iso_8601": "2023-09-06T19:38:42.673632Z",
            "url": "https://files.pythonhosted.org/packages/a5/1d/ce5df28d66315ad7abc931f193d05790c819699da60733e55dfbcca094bd/casers-0.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b24295b441bc1796140dcfa0fe122c9059a3da10e91e2cd0d3c264115af193a",
                "md5": "3f02f7a05d631f50444de77b825c76d8",
                "sha256": "3737dddf159e194777595a33c12c97250985b26c544272e9dff8c0e8a2ed43eb"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3f02f7a05d631f50444de77b825c76d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1255496,
            "upload_time": "2023-09-06T19:38:44",
            "upload_time_iso_8601": "2023-09-06T19:38:44.794465Z",
            "url": "https://files.pythonhosted.org/packages/0b/24/295b441bc1796140dcfa0fe122c9059a3da10e91e2cd0d3c264115af193a/casers-0.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a80e3fe073835f108ebc7d9022c5fa25a82788d1c7c19dd6ec9820b962aa513b",
                "md5": "2c06bca0e7cfeb6c0624ccc6a8e9b92a",
                "sha256": "d5acfb92f4da30039eb40f5b0db72fbf7f1dccd38e00890b1634b0facdf8cd2c"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2c06bca0e7cfeb6c0624ccc6a8e9b92a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1304915,
            "upload_time": "2023-09-06T19:38:47",
            "upload_time_iso_8601": "2023-09-06T19:38:47.586178Z",
            "url": "https://files.pythonhosted.org/packages/a8/0e/3fe073835f108ebc7d9022c5fa25a82788d1c7c19dd6ec9820b962aa513b/casers-0.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ca52a47ab2f9970c6ea17e965941a84cc4aea3f72d92b7661f599edd7f47df7",
                "md5": "3c93fccc1f9a51ad39abca36bb336e9b",
                "sha256": "203d35652e7b11bf50cc9f716193f48897db53b19f97da74e55f4d0ed7b664e3"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c93fccc1f9a51ad39abca36bb336e9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1138462,
            "upload_time": "2023-09-06T19:38:50",
            "upload_time_iso_8601": "2023-09-06T19:38:50.262016Z",
            "url": "https://files.pythonhosted.org/packages/2c/a5/2a47ab2f9970c6ea17e965941a84cc4aea3f72d92b7661f599edd7f47df7/casers-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6faf51806a261c86a1252c294332826ac9428b4d7c4e345a923c73e9439019a7",
                "md5": "929cc67d2e6c628187a893a47855a810",
                "sha256": "d9e2ea1271ac6349876d1def721ce85fb0a558dad686f944b1bb7aedf37fff81"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "929cc67d2e6c628187a893a47855a810",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1157312,
            "upload_time": "2023-09-06T19:38:52",
            "upload_time_iso_8601": "2023-09-06T19:38:52.350974Z",
            "url": "https://files.pythonhosted.org/packages/6f/af/51806a261c86a1252c294332826ac9428b4d7c4e345a923c73e9439019a7/casers-0.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "695000560146257d828e3a4f0a2018e8be509fc9d04858633ec8a85fcf32c093",
                "md5": "bbe506bbf467150d3b553638a35a2c16",
                "sha256": "da46fc49b7f77ae662ad7950a2ac3fa033dfa5c8736d151fe5b2eb33eb355757"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "bbe506bbf467150d3b553638a35a2c16",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 109048,
            "upload_time": "2023-09-06T19:38:54",
            "upload_time_iso_8601": "2023-09-06T19:38:54.263235Z",
            "url": "https://files.pythonhosted.org/packages/69/50/00560146257d828e3a4f0a2018e8be509fc9d04858633ec8a85fcf32c093/casers-0.7.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30b9f7021adf63ff6ee6f7f2b038821fbe5629c3ea0e249902597dbf143310db",
                "md5": "6617b76775510db8248e0cc057b5a476",
                "sha256": "d1e803e0ec2a186740bd838548e3f47b690fafe3b972e49fa7c47c71d4dce24c"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6617b76775510db8248e0cc057b5a476",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 112081,
            "upload_time": "2023-09-06T19:38:55",
            "upload_time_iso_8601": "2023-09-06T19:38:55.724818Z",
            "url": "https://files.pythonhosted.org/packages/30/b9/f7021adf63ff6ee6f7f2b038821fbe5629c3ea0e249902597dbf143310db/casers-0.7.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98139aca0f6bed6cd73e6b4e3289ecb9a2831e7269d64a048ba74786d5ccc5a0",
                "md5": "75d9071698ff4d9a83440805a4d3fb7b",
                "sha256": "f79ab94812e03281a7e6c2c12115d31a30e26fb5aa0547e85cbcc1c7256a91bd"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "75d9071698ff4d9a83440805a4d3fb7b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1137903,
            "upload_time": "2023-09-06T19:38:57",
            "upload_time_iso_8601": "2023-09-06T19:38:57.819885Z",
            "url": "https://files.pythonhosted.org/packages/98/13/9aca0f6bed6cd73e6b4e3289ecb9a2831e7269d64a048ba74786d5ccc5a0/casers-0.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "986fec91c9196a5f7a87263ed8c7d43b9131f3948e5d07a6a973b41b146cf41c",
                "md5": "89e1255e490ba280d07a9d752027e22a",
                "sha256": "8775eb488df96d5957e6c43c8d99d581f4f0f00bc03fcd3d6a74d7814ddb9940"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "89e1255e490ba280d07a9d752027e22a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1141782,
            "upload_time": "2023-09-06T19:38:59",
            "upload_time_iso_8601": "2023-09-06T19:38:59.971458Z",
            "url": "https://files.pythonhosted.org/packages/98/6f/ec91c9196a5f7a87263ed8c7d43b9131f3948e5d07a6a973b41b146cf41c/casers-0.7.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a483337744e71e838dbe67c1eecf61263fcf0acd596c3902c98e8e71944c1509",
                "md5": "7aa9c3db1b8989f9d225a4e4ffc3813e",
                "sha256": "2c65ebb68c5cd8cffc74fd8582d7cd8878f7a9d43f9d56d24536ea600ca9e4aa"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7aa9c3db1b8989f9d225a4e4ffc3813e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1255475,
            "upload_time": "2023-09-06T19:39:02",
            "upload_time_iso_8601": "2023-09-06T19:39:02.534055Z",
            "url": "https://files.pythonhosted.org/packages/a4/83/337744e71e838dbe67c1eecf61263fcf0acd596c3902c98e8e71944c1509/casers-0.7.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4281546e9fdecbb193577393d7b1ad11505854925a25c54c42dd3c017ad0c46",
                "md5": "7646ad572b8a394dedf80b6a025c0282",
                "sha256": "7c57033ae5afb7b9388f16cde6d595fd947d2e981f260493376e374ca52a23ab"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7646ad572b8a394dedf80b6a025c0282",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1307491,
            "upload_time": "2023-09-06T19:39:05",
            "upload_time_iso_8601": "2023-09-06T19:39:05.309567Z",
            "url": "https://files.pythonhosted.org/packages/f4/28/1546e9fdecbb193577393d7b1ad11505854925a25c54c42dd3c017ad0c46/casers-0.7.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fcf03ca0bcadbdd55c574036e470e046813ff3109edc998848d947950a9d6a37",
                "md5": "77567466a3ed89f9d87cc5c845333486",
                "sha256": "13c1a1dc51e02e4508a4ade8ce4f452bcfa0f0c2c549fb403a7e976b17fc4071"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "77567466a3ed89f9d87cc5c845333486",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1138537,
            "upload_time": "2023-09-06T19:39:07",
            "upload_time_iso_8601": "2023-09-06T19:39:07.705465Z",
            "url": "https://files.pythonhosted.org/packages/fc/f0/3ca0bcadbdd55c574036e470e046813ff3109edc998848d947950a9d6a37/casers-0.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "532bbeb8cb8cfee6f337979b2059987a86868b8c01c6831e6e7f827bb222a583",
                "md5": "3753a36ce2995a5b64ffaca3f2d1d2e1",
                "sha256": "8c23563b4c7bf29f1371fffbd617b0ebcf409e56e5e540d3e15a59acee82e916"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3753a36ce2995a5b64ffaca3f2d1d2e1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1157544,
            "upload_time": "2023-09-06T19:39:09",
            "upload_time_iso_8601": "2023-09-06T19:39:09.706621Z",
            "url": "https://files.pythonhosted.org/packages/53/2b/beb8cb8cfee6f337979b2059987a86868b8c01c6831e6e7f827bb222a583/casers-0.7.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dac5e2357457dc8a319eae92251190413b4b1cf8f9a2c753db254a41f11374dd",
                "md5": "40ffe9304af08c00de5f60ee8eaf0b79",
                "sha256": "66ab47861e9f5049a9c03667107f085dfb7e57716bdd8d4dcf1f9d4816c1ba1a"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "40ffe9304af08c00de5f60ee8eaf0b79",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1142977,
            "upload_time": "2023-09-06T19:39:11",
            "upload_time_iso_8601": "2023-09-06T19:39:11.715689Z",
            "url": "https://files.pythonhosted.org/packages/da/c5/e2357457dc8a319eae92251190413b4b1cf8f9a2c753db254a41f11374dd/casers-0.7.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9802e5db60a155a9824565fd596a30d82b0cdbb1bfaf7367e78e000eb6a93bec",
                "md5": "c80978cdcbe36afb5fe22f135644e6c9",
                "sha256": "369cd8b1bdf7d447ddf1b2050541ae8cb9c6b7a021e27d75b250f133a69d012d"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c80978cdcbe36afb5fe22f135644e6c9",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1144336,
            "upload_time": "2023-09-06T19:39:15",
            "upload_time_iso_8601": "2023-09-06T19:39:15.087463Z",
            "url": "https://files.pythonhosted.org/packages/98/02/e5db60a155a9824565fd596a30d82b0cdbb1bfaf7367e78e000eb6a93bec/casers-0.7.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0db5cc150c69d771702b75dae833ce1fbad03e58db49d3b7fcbb5698e204a760",
                "md5": "80c40e1344c5f804185f1be10a2df7da",
                "sha256": "1985b31b88be96da3f3f477feb5185cabb0b063d10acde566226ada4d430c444"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "80c40e1344c5f804185f1be10a2df7da",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1251574,
            "upload_time": "2023-09-06T19:39:17",
            "upload_time_iso_8601": "2023-09-06T19:39:17.422832Z",
            "url": "https://files.pythonhosted.org/packages/0d/b5/cc150c69d771702b75dae833ce1fbad03e58db49d3b7fcbb5698e204a760/casers-0.7.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c93dbbe95fb9c3c89920c736eb4070e7141892c271f3d483560cd96f2938836e",
                "md5": "bc94740353bf17beb592d1e59c7c0bf4",
                "sha256": "587bf975e5883bf4f60bead441a21a39ae44c75106778391fcef528f4b46647e"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bc94740353bf17beb592d1e59c7c0bf4",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1310216,
            "upload_time": "2023-09-06T19:39:20",
            "upload_time_iso_8601": "2023-09-06T19:39:20.551035Z",
            "url": "https://files.pythonhosted.org/packages/c9/3d/bbe95fb9c3c89920c736eb4070e7141892c271f3d483560cd96f2938836e/casers-0.7.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "735db91f6cc866bb82428dd99345f0889ccc9bcbdf980e26d22939d1906a8af6",
                "md5": "f26313c5fc929c6e33a11d9de468ccb5",
                "sha256": "33383bf4897afac30040abf9e7aba8cd8c1e87270c244b2ef0ab9751319d8f33"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f26313c5fc929c6e33a11d9de468ccb5",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1141317,
            "upload_time": "2023-09-06T19:39:23",
            "upload_time_iso_8601": "2023-09-06T19:39:23.710290Z",
            "url": "https://files.pythonhosted.org/packages/73/5d/b91f6cc866bb82428dd99345f0889ccc9bcbdf980e26d22939d1906a8af6/casers-0.7.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "019b1287ab8546373f7cae038cc6cadceee9d2276ef67fcf54d2111aaa6ecea1",
                "md5": "6fff285e9b7e2cff67c7bf39722a7b95",
                "sha256": "c23bf5ccd320cb2540828aeb98ea2ac82932995a1f4f77afc195a16027d06fec"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "6fff285e9b7e2cff67c7bf39722a7b95",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1162149,
            "upload_time": "2023-09-06T19:39:25",
            "upload_time_iso_8601": "2023-09-06T19:39:25.745496Z",
            "url": "https://files.pythonhosted.org/packages/01/9b/1287ab8546373f7cae038cc6cadceee9d2276ef67fcf54d2111aaa6ecea1/casers-0.7.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e9917c5ef6b32b967f5faa0785cbeaae10b371700dda1bbfe3c0b9b8cd60fea",
                "md5": "3418d845a565afb0569833878210425e",
                "sha256": "72e54a34069803fc40ac66954db088877fc651d0204281845fefa45c0250161f"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3418d845a565afb0569833878210425e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1138428,
            "upload_time": "2023-09-06T19:39:27",
            "upload_time_iso_8601": "2023-09-06T19:39:27.994184Z",
            "url": "https://files.pythonhosted.org/packages/3e/99/17c5ef6b32b967f5faa0785cbeaae10b371700dda1bbfe3c0b9b8cd60fea/casers-0.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4699ada37b53129743b120972bed5f627dd90e47960aa43297b5fd38e873bd0",
                "md5": "d486345df69fe9c35bd9690a32306e0b",
                "sha256": "14e667e353e4d6a594a65a2b90b5b43df99b23c9fe8e891456651cdf1ed8c465"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d486345df69fe9c35bd9690a32306e0b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1140846,
            "upload_time": "2023-09-06T19:39:30",
            "upload_time_iso_8601": "2023-09-06T19:39:30.365060Z",
            "url": "https://files.pythonhosted.org/packages/d4/69/9ada37b53129743b120972bed5f627dd90e47960aa43297b5fd38e873bd0/casers-0.7.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "173cfa44104dbc8a8a26dd9c36436c229fb2e3ba960421ebbdaa1505e4cb7531",
                "md5": "f2856ac1571f6c71b2df3e2284deb25c",
                "sha256": "ccc8725b3410144e954028063310baa7511245d074be821eeac0e16342b00173"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f2856ac1571f6c71b2df3e2284deb25c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1255858,
            "upload_time": "2023-09-06T19:39:32",
            "upload_time_iso_8601": "2023-09-06T19:39:32.731625Z",
            "url": "https://files.pythonhosted.org/packages/17/3c/fa44104dbc8a8a26dd9c36436c229fb2e3ba960421ebbdaa1505e4cb7531/casers-0.7.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f2fc8dade72f3e0a495eeb51ca6dcc8b1fd1cf5aaba531b5473c43164515fba",
                "md5": "3c1601f59e75639c8255a27a7b43fca4",
                "sha256": "bfb98597197c0ddafd20eb8a9868eea18475f96a8a82145b5aafa01d4c473984"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3c1601f59e75639c8255a27a7b43fca4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1306997,
            "upload_time": "2023-09-06T19:39:35",
            "upload_time_iso_8601": "2023-09-06T19:39:35.462546Z",
            "url": "https://files.pythonhosted.org/packages/8f/2f/c8dade72f3e0a495eeb51ca6dcc8b1fd1cf5aaba531b5473c43164515fba/casers-0.7.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c460e4a3701094f3a1e8e31fa194f121f70c23e404a49d950e368d591d946301",
                "md5": "ee1ddd6f02d21c7e1a696b7dd4c58328",
                "sha256": "9da4f0c0b05e864207e87f55513cff32f5d18ad7bd6f4d2c3f8dbf5d811a51e1"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee1ddd6f02d21c7e1a696b7dd4c58328",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1138795,
            "upload_time": "2023-09-06T19:39:38",
            "upload_time_iso_8601": "2023-09-06T19:39:38.108237Z",
            "url": "https://files.pythonhosted.org/packages/c4/60/e4a3701094f3a1e8e31fa194f121f70c23e404a49d950e368d591d946301/casers-0.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b234eeb2f11b51e9ad5890464678123fca5dd7e67e9e354c03ba103428580451",
                "md5": "2049327301d645684a1be14def5dae51",
                "sha256": "ead0a4009b4a84e26151f567981ad8b0f74b79dd2f1d8bce9046b8f52dd4df2c"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2049327301d645684a1be14def5dae51",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1157485,
            "upload_time": "2023-09-06T19:39:40",
            "upload_time_iso_8601": "2023-09-06T19:39:40.199939Z",
            "url": "https://files.pythonhosted.org/packages/b2/34/eeb2f11b51e9ad5890464678123fca5dd7e67e9e354c03ba103428580451/casers-0.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86ac1637082f73877308c5f309ce6f9a4067bbaccd27cb8b5b7e9293937ae04e",
                "md5": "ef6d7761be0cd6d10fd4a45002326493",
                "sha256": "12db10e531742e7abbb5ccb5fdc213d3cf8f9e751d10e9a624e91202f5a3d2f9"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef6d7761be0cd6d10fd4a45002326493",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1137854,
            "upload_time": "2023-09-06T19:39:42",
            "upload_time_iso_8601": "2023-09-06T19:39:42.658876Z",
            "url": "https://files.pythonhosted.org/packages/86/ac/1637082f73877308c5f309ce6f9a4067bbaccd27cb8b5b7e9293937ae04e/casers-0.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0725d71fff35a8d07d460e48b7e21ab73452af19670b542963bc73f1eea3b4d8",
                "md5": "b2337ca21044ddf6f3f4e704a2accb6e",
                "sha256": "9b86acadc0fdd5a76b7b4e533531c7b5b0cb98dd1f17e91de557adc3089f10bd"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b2337ca21044ddf6f3f4e704a2accb6e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1141729,
            "upload_time": "2023-09-06T19:39:45",
            "upload_time_iso_8601": "2023-09-06T19:39:45.109916Z",
            "url": "https://files.pythonhosted.org/packages/07/25/d71fff35a8d07d460e48b7e21ab73452af19670b542963bc73f1eea3b4d8/casers-0.7.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d3089919f59f04c36fc55c0ecb90db133cb4588899f567cef28104b7bf2fa1a",
                "md5": "ef544f4fe89fea320dae24a09f7bcef5",
                "sha256": "1f229f4eacc638f04b1b8ad08d96c15e9a339fc5cb2f6f34a72e270a5f068f66"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ef544f4fe89fea320dae24a09f7bcef5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1255408,
            "upload_time": "2023-09-06T19:39:47",
            "upload_time_iso_8601": "2023-09-06T19:39:47.341470Z",
            "url": "https://files.pythonhosted.org/packages/3d/30/89919f59f04c36fc55c0ecb90db133cb4588899f567cef28104b7bf2fa1a/casers-0.7.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f59cd0a547d820295b9b7f817c89a64e2d663948f5d9eb75a094fe6006d6c3f3",
                "md5": "b9d259e75992495d8dff123d867e8714",
                "sha256": "18cee8450ffd47594454b334dc04600c5243882ad7fbfb388bd9e1f54f9c063c"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b9d259e75992495d8dff123d867e8714",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1307397,
            "upload_time": "2023-09-06T19:39:49",
            "upload_time_iso_8601": "2023-09-06T19:39:49.367637Z",
            "url": "https://files.pythonhosted.org/packages/f5/9c/d0a547d820295b9b7f817c89a64e2d663948f5d9eb75a094fe6006d6c3f3/casers-0.7.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb4109fa5be0cc034cc7592ae5accb7b2ebc578b4b44a0e1a62527e6dc2a3cc0",
                "md5": "31564c967a1a1dafaefe0a2f03ae2e72",
                "sha256": "913af10cdd9949ccff9f95102cb97dab4253600b3324f97e284ceebacf742152"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31564c967a1a1dafaefe0a2f03ae2e72",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1138441,
            "upload_time": "2023-09-06T19:39:52",
            "upload_time_iso_8601": "2023-09-06T19:39:52.273467Z",
            "url": "https://files.pythonhosted.org/packages/fb/41/09fa5be0cc034cc7592ae5accb7b2ebc578b4b44a0e1a62527e6dc2a3cc0/casers-0.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4347bf57e1c4450c753aab1063f3cc1b4cf6a170aa0a8ecd1bd4e6a837e8012f",
                "md5": "7fdf82dc231eb6fdacee655129d5e235",
                "sha256": "faee5608c9d0d26a982760ad1837812b8d3949e4e5572fa3e9ffa1ecee0c8e21"
            },
            "downloads": -1,
            "filename": "casers-0.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7fdf82dc231eb6fdacee655129d5e235",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1157501,
            "upload_time": "2023-09-06T19:39:54",
            "upload_time_iso_8601": "2023-09-06T19:39:54.504977Z",
            "url": "https://files.pythonhosted.org/packages/43/47/bf57e1c4450c753aab1063f3cc1b4cf6a170aa0a8ecd1bd4e6a837e8012f/casers-0.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e119e9c17e45ea2f51349e0581a42a211722b62ba84b58bfa94f9cb4197bc334",
                "md5": "7346f0fd8b32061c53fc59982d2e7d25",
                "sha256": "d4617cf1f9a77ee8548d02630492f904ef185ae7d60f856992a674f853509294"
            },
            "downloads": -1,
            "filename": "casers-0.7.0.tar.gz",
            "has_sig": false,
            "md5_digest": "7346f0fd8b32061c53fc59982d2e7d25",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 43596,
            "upload_time": "2023-09-06T19:39:56",
            "upload_time_iso_8601": "2023-09-06T19:39:56.869033Z",
            "url": "https://files.pythonhosted.org/packages/e1/19/e9c17e45ea2f51349e0581a42a211722b62ba84b58bfa94f9cb4197bc334/casers-0.7.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-06 19:39:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "daxartio",
    "github_project": "casers",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "casers"
}
        
Elapsed time: 0.11608s