casers


Namecasers JSON
Version 0.10.0 PyPI version JSON
download
home_pageNone
SummaryString case converter for Python written in Rust
upload_time2024-09-26 17:24:27
maintainerNone
docs_urlNone
authorDanil Akhtarov
requires_python>=3.8
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)
![PyPI - Downloads](https://img.shields.io/pypi/dm/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 2

```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

Apple M3 Pro

```
----------------------------------------------------------------------------------------------- benchmark: 5 tests -----------------------------------------------------------------------------------------------
Name (time in us)                             Min                   Max               Mean             StdDev             Median               IQR            Outliers  OPS (Kops/s)            Rounds  Iterations
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_to_camel_rust                         2.4580 (1.0)         10.7919 (1.0)       2.5684 (1.0)       0.0955 (1.0)       2.5420 (1.0)      0.0410 (1.0)     2123;2123      389.3475 (1.0)       79208           1
test_to_camel_python_builtin              10.3328 (4.20)        90.1250 (8.35)     10.7271 (4.18)      0.8965 (9.39)     10.6669 (4.20)     0.2082 (5.08)    1182;1739       93.2215 (0.24)      57419           1
test_to_camel_rust_parallel               20.1249 (8.19)       102.2089 (9.47)     29.5715 (11.51)     4.0862 (42.79)    28.4170 (11.18)    4.8331 (117.94)    855;158       33.8163 (0.09)       4783           1
test_to_camel_python_builtin_parallel     36.4999 (14.85)    1,233.1251 (114.26)   39.9730 (15.56)    19.0205 (199.20)   38.1658 (15.01)    0.8328 (20.32)     95;1059       25.0169 (0.06)       8741           1
test_to_camel_pure_python                 39.4580 (16.05)      212.9169 (19.73)    40.6741 (15.84)     3.1588 (33.08)    40.2501 (15.83)    0.4161 (10.15)    614;2145       24.5857 (0.06)      21878           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.8",
    "maintainer_email": null,
    "keywords": "case, rust, convert cases",
    "author": "Danil Akhtarov",
    "author_email": "daxartio@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/e9/11/c9196202899b1afce82b92d177cdb95b08f7691c624314d4ca2ef8a582ae/casers-0.10.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![PyPI - Downloads](https://img.shields.io/pypi/dm/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 2\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\nApple M3 Pro\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_rust                         2.4580 (1.0)         10.7919 (1.0)       2.5684 (1.0)       0.0955 (1.0)       2.5420 (1.0)      0.0410 (1.0)     2123;2123      389.3475 (1.0)       79208           1\ntest_to_camel_python_builtin              10.3328 (4.20)        90.1250 (8.35)     10.7271 (4.18)      0.8965 (9.39)     10.6669 (4.20)     0.2082 (5.08)    1182;1739       93.2215 (0.24)      57419           1\ntest_to_camel_rust_parallel               20.1249 (8.19)       102.2089 (9.47)     29.5715 (11.51)     4.0862 (42.79)    28.4170 (11.18)    4.8331 (117.94)    855;158       33.8163 (0.09)       4783           1\ntest_to_camel_python_builtin_parallel     36.4999 (14.85)    1,233.1251 (114.26)   39.9730 (15.56)    19.0205 (199.20)   38.1658 (15.01)    0.8328 (20.32)     95;1059       25.0169 (0.06)       8741           1\ntest_to_camel_pure_python                 39.4580 (16.05)      212.9169 (19.73)    40.6741 (15.84)     3.1588 (33.08)    40.2501 (15.83)    0.4161 (10.15)    614;2145       24.5857 (0.06)      21878           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.10.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": "ff87a2a1f694e161774f62c70911dd9e90351a1138d98f5fb53bc2463efcff60",
                "md5": "1ffd548cb7ef11b8bca34622a1ca876c",
                "sha256": "09c083853a717abae3c22485f6258e05bcfdb951265fc7ce004ef3128e495efd"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1ffd548cb7ef11b8bca34622a1ca876c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 194938,
            "upload_time": "2024-09-26T17:23:14",
            "upload_time_iso_8601": "2024-09-26T17:23:14.369951Z",
            "url": "https://files.pythonhosted.org/packages/ff/87/a2a1f694e161774f62c70911dd9e90351a1138d98f5fb53bc2463efcff60/casers-0.10.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1bb1c9375d0e784efc39d3e08bde938fefb64714be3203942e3d74305942794e",
                "md5": "c9920387a7c6b8c04e90102c7b26768c",
                "sha256": "ce6c0d5a2b805d9d5069c86588dbcb9c01846095e0b654738b376b4a58db44bd"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c9920387a7c6b8c04e90102c7b26768c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 232436,
            "upload_time": "2024-09-26T17:21:49",
            "upload_time_iso_8601": "2024-09-26T17:21:49.539341Z",
            "url": "https://files.pythonhosted.org/packages/1b/b1/c9375d0e784efc39d3e08bde938fefb64714be3203942e3d74305942794e/casers-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4f80fd38534c37a7fc94d55c4db5a13d00223e0a4f2f6f8a6c7dc7a7770f0ad",
                "md5": "2cc44a1af1aefe2f3842bb1677eab1d1",
                "sha256": "30c0d8767fdb5da29991efe424af150effc76a8ca63d14a0d325354a14ce6e83"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2cc44a1af1aefe2f3842bb1677eab1d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 237435,
            "upload_time": "2024-09-26T17:22:05",
            "upload_time_iso_8601": "2024-09-26T17:22:05.988081Z",
            "url": "https://files.pythonhosted.org/packages/d4/f8/0fd38534c37a7fc94d55c4db5a13d00223e0a4f2f6f8a6c7dc7a7770f0ad/casers-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7add8f4f4a21c21a2649680d92ff5fea3b8d7b30929ea33ad02eaa4afbcdd421",
                "md5": "6abd28c183923a791519757c3a28a531",
                "sha256": "80c9e54a312213a13524ae2aabb665db365f868164b4fa26ec179eddf529c349"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6abd28c183923a791519757c3a28a531",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 260989,
            "upload_time": "2024-09-26T17:22:20",
            "upload_time_iso_8601": "2024-09-26T17:22:20.850513Z",
            "url": "https://files.pythonhosted.org/packages/7a/dd/8f4f4a21c21a2649680d92ff5fea3b8d7b30929ea33ad02eaa4afbcdd421/casers-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afdecd8a93b684a0242d03ce1db5ae80be48fe9082b8dcce12fbbe37185f03d7",
                "md5": "c28074725056acd31e4c090e37e0d217",
                "sha256": "2778d08169a81b2a9ade9413594bfe39a91cc993c53b1c436912dd2d23517783"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c28074725056acd31e4c090e37e0d217",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 264237,
            "upload_time": "2024-09-26T17:22:35",
            "upload_time_iso_8601": "2024-09-26T17:22:35.508919Z",
            "url": "https://files.pythonhosted.org/packages/af/de/cd8a93b684a0242d03ce1db5ae80be48fe9082b8dcce12fbbe37185f03d7/casers-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aacbd80f4f44fc6eedcac2ed07090f7a58f14465a61ca6b7d77a8779dcf69d9a",
                "md5": "ca57c82948f06aa9977edbf432410f84",
                "sha256": "d949919ad531d01400009b69f2f1fd1c070d47476d1e5279804beabc45748c75"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca57c82948f06aa9977edbf432410f84",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 224650,
            "upload_time": "2024-09-26T17:23:02",
            "upload_time_iso_8601": "2024-09-26T17:23:02.666031Z",
            "url": "https://files.pythonhosted.org/packages/aa/cb/d80f4f44fc6eedcac2ed07090f7a58f14465a61ca6b7d77a8779dcf69d9a/casers-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c2042f5578218695e323ac699588a2b26ea43a3a2016cc98f57c83f04ad4379",
                "md5": "b1c25a1d55f4511132710149be8ebd72",
                "sha256": "b79c9a871a91968f291ffc10aff0f0f80b4ea68cea38d0585a2aa4be7145bc2f"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b1c25a1d55f4511132710149be8ebd72",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 236871,
            "upload_time": "2024-09-26T17:22:49",
            "upload_time_iso_8601": "2024-09-26T17:22:49.793275Z",
            "url": "https://files.pythonhosted.org/packages/0c/20/42f5578218695e323ac699588a2b26ea43a3a2016cc98f57c83f04ad4379/casers-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "997362ee6a6fe689b580156dbbdca6223a31c7172a895edc2573e79116594ac2",
                "md5": "0ab9624e561fedc224669ea1d2a641f7",
                "sha256": "84032e18779967027c5889f923b06209a7b06c2fd19663f1536bb681f98732a2"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0ab9624e561fedc224669ea1d2a641f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 408355,
            "upload_time": "2024-09-26T17:23:25",
            "upload_time_iso_8601": "2024-09-26T17:23:25.409715Z",
            "url": "https://files.pythonhosted.org/packages/99/73/62ee6a6fe689b580156dbbdca6223a31c7172a895edc2573e79116594ac2/casers-0.10.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c71ddd62320f046aeeee4845e96b7357a155f6894491a56ee4cc05ed17f652bd",
                "md5": "4350603d33fc8e8a61f5bd2d06306d54",
                "sha256": "886d8e7613edb6dda5fd5ed6edef133a08754a277882719c382003b68ec5193f"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4350603d33fc8e8a61f5bd2d06306d54",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 490460,
            "upload_time": "2024-09-26T17:23:39",
            "upload_time_iso_8601": "2024-09-26T17:23:39.197565Z",
            "url": "https://files.pythonhosted.org/packages/c7/1d/dd62320f046aeeee4845e96b7357a155f6894491a56ee4cc05ed17f652bd/casers-0.10.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e5d8cd3a0fdc771c3efd504a7897efc166627361165a89f225f09f2694abf59",
                "md5": "7c7d143ef8be1949b69c2f8a07e8942d",
                "sha256": "1ff6999f7b817d34a696d2ece952d142532b995502eb5c4e3224f748f873e998"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7c7d143ef8be1949b69c2f8a07e8942d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 411851,
            "upload_time": "2024-09-26T17:23:55",
            "upload_time_iso_8601": "2024-09-26T17:23:55.739789Z",
            "url": "https://files.pythonhosted.org/packages/8e/5d/8cd3a0fdc771c3efd504a7897efc166627361165a89f225f09f2694abf59/casers-0.10.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07e92102b6523f01f7e9683b4538a5b3848c8cba59c9e24230fbec1fafd0796e",
                "md5": "e8790d0a1d42bcc5471cc5085587e190",
                "sha256": "41a09ffd1ec349d64e5347eebf045cdcba88461f683c839206481287fb798776"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e8790d0a1d42bcc5471cc5085587e190",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 392712,
            "upload_time": "2024-09-26T17:24:11",
            "upload_time_iso_8601": "2024-09-26T17:24:11.454075Z",
            "url": "https://files.pythonhosted.org/packages/07/e9/2102b6523f01f7e9683b4538a5b3848c8cba59c9e24230fbec1fafd0796e/casers-0.10.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89842aa9bb23e3ecd6be38394805ab6a96f834089059ca9e01dc2e0726e8a610",
                "md5": "9d41264744e78e8dcc58ecd784b83262",
                "sha256": "7ca900eb0297f914369f0ea5dd36664d95250c28a83eaf8c67b48ef9d6539bca"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "9d41264744e78e8dcc58ecd784b83262",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 94735,
            "upload_time": "2024-09-26T17:24:37",
            "upload_time_iso_8601": "2024-09-26T17:24:37.448933Z",
            "url": "https://files.pythonhosted.org/packages/89/84/2aa9bb23e3ecd6be38394805ab6a96f834089059ca9e01dc2e0726e8a610/casers-0.10.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d2df0060a455dd69007300901a6d46da9b0212bc7543cdb9e75b05d070086b6",
                "md5": "41c53fffaad5404278d001dba44d7512",
                "sha256": "b426efe985d97c76be4272db31357050ac261eedf1e54f310229293788bbfbe1"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "41c53fffaad5404278d001dba44d7512",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 99544,
            "upload_time": "2024-09-26T17:24:28",
            "upload_time_iso_8601": "2024-09-26T17:24:28.698612Z",
            "url": "https://files.pythonhosted.org/packages/5d/2d/f0060a455dd69007300901a6d46da9b0212bc7543cdb9e75b05d070086b6/casers-0.10.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "875ab0abd6615453ce39a7ccfbe88c2fcc69bf0230e4e729eb4ea9cfb8f089ae",
                "md5": "25898cab702f7302849525829831bf34",
                "sha256": "6fb3df7b89294d45d97a363f1fd7e735228194b8ebecc3b9ccf1c9a99ca99120"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "25898cab702f7302849525829831bf34",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 199694,
            "upload_time": "2024-09-26T17:23:21",
            "upload_time_iso_8601": "2024-09-26T17:23:21.616655Z",
            "url": "https://files.pythonhosted.org/packages/87/5a/b0abd6615453ce39a7ccfbe88c2fcc69bf0230e4e729eb4ea9cfb8f089ae/casers-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e188513aead6a5b0a344f42f30dec282e3124a90dd9bd66116e3dbf9b1947ca4",
                "md5": "aa51e8c8f34a8f5b1164f9f1ede50480",
                "sha256": "01ed0216a7ef85483a56ce3266a2988bb35bb7824a48b6041d87b912f3c135f6"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "aa51e8c8f34a8f5b1164f9f1ede50480",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 194653,
            "upload_time": "2024-09-26T17:23:16",
            "upload_time_iso_8601": "2024-09-26T17:23:16.724028Z",
            "url": "https://files.pythonhosted.org/packages/e1/88/513aead6a5b0a344f42f30dec282e3124a90dd9bd66116e3dbf9b1947ca4/casers-0.10.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "114850183d92722247364f5e287528fb4735368523b50cc46ac09d1351929b73",
                "md5": "d6f6f600465df406f67139df1f1ba848",
                "sha256": "31973066689629ed9468a9fec00b986dbba2363ca180219a1f288636b5a40930"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d6f6f600465df406f67139df1f1ba848",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 232217,
            "upload_time": "2024-09-26T17:21:51",
            "upload_time_iso_8601": "2024-09-26T17:21:51.870291Z",
            "url": "https://files.pythonhosted.org/packages/11/48/50183d92722247364f5e287528fb4735368523b50cc46ac09d1351929b73/casers-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28acf2ac3c4fc169d17de37b35949c1f20b2f5e8321dd7a2fa26dd2e4e7ed2fa",
                "md5": "23d35168bc2eb7eab971b6a3c05e9ba4",
                "sha256": "25e8663e2f8261af8795efdfff23499949eb8c30820ec32318b691f92f003395"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "23d35168bc2eb7eab971b6a3c05e9ba4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 237267,
            "upload_time": "2024-09-26T17:22:07",
            "upload_time_iso_8601": "2024-09-26T17:22:07.515294Z",
            "url": "https://files.pythonhosted.org/packages/28/ac/f2ac3c4fc169d17de37b35949c1f20b2f5e8321dd7a2fa26dd2e4e7ed2fa/casers-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2602f84bed3da02eba09de850e811417ef42b5a8cda647b0191e5dcf6e44b6ba",
                "md5": "47bd63ab8c3664f4429f08d7aeaeed87",
                "sha256": "2433c4b7e3ac02f4daa0e38b9606390f61b9f0cf565604bf1f05c658f74ddbf9"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "47bd63ab8c3664f4429f08d7aeaeed87",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 260928,
            "upload_time": "2024-09-26T17:22:22",
            "upload_time_iso_8601": "2024-09-26T17:22:22.327595Z",
            "url": "https://files.pythonhosted.org/packages/26/02/f84bed3da02eba09de850e811417ef42b5a8cda647b0191e5dcf6e44b6ba/casers-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed5e5fd6656804e8492e1bd664ad8a064d039561459d9699681975a9c0ecc536",
                "md5": "86ccfdfdc22108375d9fb1997c528028",
                "sha256": "c483587e344838ee0e289382748000e14657fdf19a7ef69897160e5560c805a7"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "86ccfdfdc22108375d9fb1997c528028",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 263622,
            "upload_time": "2024-09-26T17:22:37",
            "upload_time_iso_8601": "2024-09-26T17:22:37.530342Z",
            "url": "https://files.pythonhosted.org/packages/ed/5e/5fd6656804e8492e1bd664ad8a064d039561459d9699681975a9c0ecc536/casers-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aad65343ce19a50a89f20bfbeb6ed1d4cdfbcb54725b5799796b8a6a73ce98c3",
                "md5": "dab897b45fc702cbb650fea3c597c0f1",
                "sha256": "0a5776e00f87598e0dba462e4209862fdcf66e3952097740a4712a57a211cec9"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dab897b45fc702cbb650fea3c597c0f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 224435,
            "upload_time": "2024-09-26T17:23:04",
            "upload_time_iso_8601": "2024-09-26T17:23:04.278386Z",
            "url": "https://files.pythonhosted.org/packages/aa/d6/5343ce19a50a89f20bfbeb6ed1d4cdfbcb54725b5799796b8a6a73ce98c3/casers-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1c821c73d550cc54e1d84e24df300ef5c8bad08d85e0a9e1e49598c1b7e6fd5",
                "md5": "a4819910fb9058da071c46be59a53282",
                "sha256": "17a70dcc8bd758770a43ac458ad40cff7059bb8b1f87c6102335f59af319cc43"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a4819910fb9058da071c46be59a53282",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 236674,
            "upload_time": "2024-09-26T17:22:51",
            "upload_time_iso_8601": "2024-09-26T17:22:51.775318Z",
            "url": "https://files.pythonhosted.org/packages/c1/c8/21c73d550cc54e1d84e24df300ef5c8bad08d85e0a9e1e49598c1b7e6fd5/casers-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4887023f18cf4d901bb94bdf0d5ae8f9e0757268dbf74735ee1f1f750cef83e8",
                "md5": "034e955f1fb75f369e42e8155ec68358",
                "sha256": "9db582cddf05bf2beb18bc245093345abc8af477d1c9aed54f9c716bd3eccd37"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "034e955f1fb75f369e42e8155ec68358",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 408279,
            "upload_time": "2024-09-26T17:23:27",
            "upload_time_iso_8601": "2024-09-26T17:23:27.027068Z",
            "url": "https://files.pythonhosted.org/packages/48/87/023f18cf4d901bb94bdf0d5ae8f9e0757268dbf74735ee1f1f750cef83e8/casers-0.10.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc55580af3dc7ef14a13ab45c9ba511cc08306153bbf7678444c4c4dbb3820d3",
                "md5": "b9a1c8e863b0d742ed10892cb7d18939",
                "sha256": "cfa4c10a98be86e4933e95f9f0e2c6e9243e801072fc643c4284bab5dcdafaea"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b9a1c8e863b0d742ed10892cb7d18939",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 490324,
            "upload_time": "2024-09-26T17:23:41",
            "upload_time_iso_8601": "2024-09-26T17:23:41.588413Z",
            "url": "https://files.pythonhosted.org/packages/dc/55/580af3dc7ef14a13ab45c9ba511cc08306153bbf7678444c4c4dbb3820d3/casers-0.10.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8283da11e2358dcba2c9fecb819d56a77114daa8337c9236290c2433b3d697e0",
                "md5": "46414ca53ed63ac06437c29580c0e275",
                "sha256": "9ffe524e8d1f9fdf31a473bd60fbe26c95e31bfc7ff531015cebe719830719cb"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "46414ca53ed63ac06437c29580c0e275",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 411748,
            "upload_time": "2024-09-26T17:23:57",
            "upload_time_iso_8601": "2024-09-26T17:23:57.490132Z",
            "url": "https://files.pythonhosted.org/packages/82/83/da11e2358dcba2c9fecb819d56a77114daa8337c9236290c2433b3d697e0/casers-0.10.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d7d6b026a1fd67bf4283fe6c67dd5efabebafae262c92e101271c128a4c3fbf",
                "md5": "509582daa12bd92c2ca7b5c05a497b8b",
                "sha256": "225a4665c7a6d93204126e80d3fb07134a832832c9cfc3ebe1591dde26d91a36"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "509582daa12bd92c2ca7b5c05a497b8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 392486,
            "upload_time": "2024-09-26T17:24:13",
            "upload_time_iso_8601": "2024-09-26T17:24:13.339376Z",
            "url": "https://files.pythonhosted.org/packages/6d/7d/6b026a1fd67bf4283fe6c67dd5efabebafae262c92e101271c128a4c3fbf/casers-0.10.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c54981b7aa30f513dabb0b81e2e79a6ff71e741ec3ca08a2753234ce6185794",
                "md5": "3ce01e06b9d48cf9e71ab565b1101ec9",
                "sha256": "5619eeae23a7a385544508f62885ea6690a55ecdbc697042a8a0d076fb1e3f64"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "3ce01e06b9d48cf9e71ab565b1101ec9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 94632,
            "upload_time": "2024-09-26T17:24:39",
            "upload_time_iso_8601": "2024-09-26T17:24:39.240077Z",
            "url": "https://files.pythonhosted.org/packages/4c/54/981b7aa30f513dabb0b81e2e79a6ff71e741ec3ca08a2753234ce6185794/casers-0.10.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee84aae2ef2139e1d54a6317d2e0651470b1238e98e1e06b7d8a22a6617f8a9c",
                "md5": "41403f31c61baef08e4f65bd189b7082",
                "sha256": "1033c1365953c07057166eaf5b4486ffcff22fb2a10be9fedefd04f41d33c655"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "41403f31c61baef08e4f65bd189b7082",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 99472,
            "upload_time": "2024-09-26T17:24:30",
            "upload_time_iso_8601": "2024-09-26T17:24:30.902167Z",
            "url": "https://files.pythonhosted.org/packages/ee/84/aae2ef2139e1d54a6317d2e0651470b1238e98e1e06b7d8a22a6617f8a9c/casers-0.10.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b3deb5ec7b130f05623b7ccd98060c7569c58828d16ef69d70f0a9454e690ac",
                "md5": "cd1f30787b04e6b7a24745d421e35ec5",
                "sha256": "1bac19fc499a3f1b79a4d82490cf36c92d6880a9037d390fdfab80d1c15e083e"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd1f30787b04e6b7a24745d421e35ec5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 199280,
            "upload_time": "2024-09-26T17:23:23",
            "upload_time_iso_8601": "2024-09-26T17:23:23.217986Z",
            "url": "https://files.pythonhosted.org/packages/0b/3d/eb5ec7b130f05623b7ccd98060c7569c58828d16ef69d70f0a9454e690ac/casers-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76837e7a99d326b0e8e7f2539a74e3d7a88af304a06b98a2176b541e170bc8dd",
                "md5": "b93d2311bced14eb985f0dacfb502237",
                "sha256": "813d67ba682874965135532ea174c5332110e914bb06842830c819036d5b8158"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b93d2311bced14eb985f0dacfb502237",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 194548,
            "upload_time": "2024-09-26T17:23:18",
            "upload_time_iso_8601": "2024-09-26T17:23:18.688717Z",
            "url": "https://files.pythonhosted.org/packages/76/83/7e7a99d326b0e8e7f2539a74e3d7a88af304a06b98a2176b541e170bc8dd/casers-0.10.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bdbd6aeaa5b2d116978919702152e43127b4a324926425f7226718c3aec39fbc",
                "md5": "53e485ceadb526bc283576f1d844cdaa",
                "sha256": "ae57901448eea7636cc902e43628e4cbd44b6ef0b4e5531d91f5124401772d21"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "53e485ceadb526bc283576f1d844cdaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 231785,
            "upload_time": "2024-09-26T17:21:54",
            "upload_time_iso_8601": "2024-09-26T17:21:54.393145Z",
            "url": "https://files.pythonhosted.org/packages/bd/bd/6aeaa5b2d116978919702152e43127b4a324926425f7226718c3aec39fbc/casers-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "896c45510a921ca87a80f06284cc76178a9e6fbb3250afe984d869369e24affc",
                "md5": "31fae73511c37fdcbdd0d694b8427b7d",
                "sha256": "e7032593faddcc83cf256ebc2db44ced9c425f2894e3426b8143c23ec59cb3a5"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "31fae73511c37fdcbdd0d694b8427b7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 237090,
            "upload_time": "2024-09-26T17:22:09",
            "upload_time_iso_8601": "2024-09-26T17:22:09.484131Z",
            "url": "https://files.pythonhosted.org/packages/89/6c/45510a921ca87a80f06284cc76178a9e6fbb3250afe984d869369e24affc/casers-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60793cf07b64d1d6a845b5d7e8c5c843a3df5347f1e47861a7c912e69a4e703a",
                "md5": "6a8cbf99d9faf44980020a17dca12d44",
                "sha256": "81b4a2acc8d71017a9b5b984ec3e2098e7564798e2452f994a6539f0c5b3b32c"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6a8cbf99d9faf44980020a17dca12d44",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 260724,
            "upload_time": "2024-09-26T17:22:23",
            "upload_time_iso_8601": "2024-09-26T17:22:23.801686Z",
            "url": "https://files.pythonhosted.org/packages/60/79/3cf07b64d1d6a845b5d7e8c5c843a3df5347f1e47861a7c912e69a4e703a/casers-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b15f59d7105e0c4032376499d557c544be387c399775b9af8a106a2db9d43a7e",
                "md5": "7e958311702dd300048100d645ae72da",
                "sha256": "4a1d5a050e8d726348876756658e9cafe390aa3a541410870924faa15368a460"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7e958311702dd300048100d645ae72da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 262761,
            "upload_time": "2024-09-26T17:22:39",
            "upload_time_iso_8601": "2024-09-26T17:22:39.515804Z",
            "url": "https://files.pythonhosted.org/packages/b1/5f/59d7105e0c4032376499d557c544be387c399775b9af8a106a2db9d43a7e/casers-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3739bfd804ea1363bc4850423ae0a9a7dbf3d2ca01abae17b4d485529f528071",
                "md5": "b3cde8e30fbe4fb89ab4b23457e5440e",
                "sha256": "d9aec9e71db38373ef4f2adfcbbcf8c2d476a488ebaf6a3564b41c1629dfa8da"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3cde8e30fbe4fb89ab4b23457e5440e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 224301,
            "upload_time": "2024-09-26T17:23:06",
            "upload_time_iso_8601": "2024-09-26T17:23:06.511370Z",
            "url": "https://files.pythonhosted.org/packages/37/39/bfd804ea1363bc4850423ae0a9a7dbf3d2ca01abae17b4d485529f528071/casers-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c85565e2058adcf8d3c123a0d22bbc7a44383291362d5b03603c957807f3357b",
                "md5": "183bbf2cff122be42f4b73f21a67cd7f",
                "sha256": "0a12738ba4bab054526ad91748ff3378f541fd02b720953642b35b6b45f6904c"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "183bbf2cff122be42f4b73f21a67cd7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 236275,
            "upload_time": "2024-09-26T17:22:53",
            "upload_time_iso_8601": "2024-09-26T17:22:53.425975Z",
            "url": "https://files.pythonhosted.org/packages/c8/55/65e2058adcf8d3c123a0d22bbc7a44383291362d5b03603c957807f3357b/casers-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "472e91ccecc12f8eb541a19d39fe48a79592048228811ce5b47acdd0d8c05594",
                "md5": "a16ec4776c7e4f7a31d30b31496c36fe",
                "sha256": "7b013efbd5d5952af3a8833da14917c996b65dd2cc313bb910bd22f424c2dd41"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a16ec4776c7e4f7a31d30b31496c36fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 408322,
            "upload_time": "2024-09-26T17:23:28",
            "upload_time_iso_8601": "2024-09-26T17:23:28.683246Z",
            "url": "https://files.pythonhosted.org/packages/47/2e/91ccecc12f8eb541a19d39fe48a79592048228811ce5b47acdd0d8c05594/casers-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56afacc0be37085b079f5bc46521a814a117db521c02fb320b46412989bb1f16",
                "md5": "1c1fc5efb85eeb9189e2a06a2eac44e7",
                "sha256": "a406865ecf4336da3204b3952f445fac6ec082f6bee9b424f2b05940ce0d6a48"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1c1fc5efb85eeb9189e2a06a2eac44e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 490142,
            "upload_time": "2024-09-26T17:23:43",
            "upload_time_iso_8601": "2024-09-26T17:23:43.470378Z",
            "url": "https://files.pythonhosted.org/packages/56/af/acc0be37085b079f5bc46521a814a117db521c02fb320b46412989bb1f16/casers-0.10.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bdb7caa1aa53c737af6a2e65f26480620ee5ad0af362e7b7395da794e64bd0c0",
                "md5": "24c98358575d3443197eeb2da2d722b1",
                "sha256": "7cfc33e6300aadd95638f08d8f6d588bdafd28c163fc23d48096c8876b69451d"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "24c98358575d3443197eeb2da2d722b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 411593,
            "upload_time": "2024-09-26T17:23:59",
            "upload_time_iso_8601": "2024-09-26T17:23:59.135079Z",
            "url": "https://files.pythonhosted.org/packages/bd/b7/caa1aa53c737af6a2e65f26480620ee5ad0af362e7b7395da794e64bd0c0/casers-0.10.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8da6f82901984981663dd02eb7b408e355d7156a394cf3d3201684f67cd44dea",
                "md5": "1238298465cdde374f7189950d89ef5a",
                "sha256": "1220ed5d66549833c6b26cbe8bfebd1e897102fb57677bd91d43b0e813723c21"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1238298465cdde374f7189950d89ef5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 392510,
            "upload_time": "2024-09-26T17:24:15",
            "upload_time_iso_8601": "2024-09-26T17:24:15.044959Z",
            "url": "https://files.pythonhosted.org/packages/8d/a6/f82901984981663dd02eb7b408e355d7156a394cf3d3201684f67cd44dea/casers-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55f4ce2ffdf284d422f608c7acb3e0443c0b065a7e2a8d44418ae5139f805385",
                "md5": "2a94edafa559392cbf7b43726279698a",
                "sha256": "bd54d0fb8c89b6ef2d4fd52f631e201674943309475f0e24fc39cd015a5c4d49"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2a94edafa559392cbf7b43726279698a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 94522,
            "upload_time": "2024-09-26T17:24:41",
            "upload_time_iso_8601": "2024-09-26T17:24:41.178917Z",
            "url": "https://files.pythonhosted.org/packages/55/f4/ce2ffdf284d422f608c7acb3e0443c0b065a7e2a8d44418ae5139f805385/casers-0.10.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f74df3b49c70f7f7488edbb2b98ebfd903c6a0f9bce5cbd1c6c1dbd874da90cb",
                "md5": "936c490fb87ebaedead942bd4d749237",
                "sha256": "36c6417fdf40cc4951de223136d22b56dcda68e19a67cc032c0666f58e612071"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "936c490fb87ebaedead942bd4d749237",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 99354,
            "upload_time": "2024-09-26T17:24:32",
            "upload_time_iso_8601": "2024-09-26T17:24:32.380839Z",
            "url": "https://files.pythonhosted.org/packages/f7/4d/f3b49c70f7f7488edbb2b98ebfd903c6a0f9bce5cbd1c6c1dbd874da90cb/casers-0.10.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e70c0867622bc77fb5bc2c573eb7aed813e35e1d5e1177db5697ece159409fca",
                "md5": "e55539f4e0cd0bef85e90d9222d333f1",
                "sha256": "b7280ab14957780f02673e1a389c98715aa54db3b4587baa67a31e1a296466d7"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e55539f4e0cd0bef85e90d9222d333f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 232150,
            "upload_time": "2024-09-26T17:21:56",
            "upload_time_iso_8601": "2024-09-26T17:21:56.196171Z",
            "url": "https://files.pythonhosted.org/packages/e7/0c/0867622bc77fb5bc2c573eb7aed813e35e1d5e1177db5697ece159409fca/casers-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d32291c9bfd41fd55e1922cafcb340216dabd759b9da728cfafeb15c20dd4b08",
                "md5": "8c967fd9f945c4d7cebe44cbaa0a151c",
                "sha256": "ad9457f33f16860126159c81fdf4262ebc9a570157976c67740467c5bac19c4f"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8c967fd9f945c4d7cebe44cbaa0a151c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 237242,
            "upload_time": "2024-09-26T17:22:11",
            "upload_time_iso_8601": "2024-09-26T17:22:11.291134Z",
            "url": "https://files.pythonhosted.org/packages/d3/22/91c9bfd41fd55e1922cafcb340216dabd759b9da728cfafeb15c20dd4b08/casers-0.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9daa488d81a40dfe8fb8f659a01bb807cfa6e38546cce423415723130fa7d54",
                "md5": "0352097f5f3289fdb71be120517056d8",
                "sha256": "05363b6d437861c617086aefd57a77bcd49dd25cd54d37be6c7f2aae3a172ba6"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0352097f5f3289fdb71be120517056d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 260116,
            "upload_time": "2024-09-26T17:22:25",
            "upload_time_iso_8601": "2024-09-26T17:22:25.647643Z",
            "url": "https://files.pythonhosted.org/packages/d9/da/a488d81a40dfe8fb8f659a01bb807cfa6e38546cce423415723130fa7d54/casers-0.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67fe7ab1e3dd3f0a4aee0477a5796a8783064370605611eb716a2dd60f0b6dbc",
                "md5": "2d26e336440d7c5724c57c508885e20d",
                "sha256": "a6196f559d4194c6744da08191e94085da4fe1652fba88ad88293f42459fb517"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2d26e336440d7c5724c57c508885e20d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 263996,
            "upload_time": "2024-09-26T17:22:41",
            "upload_time_iso_8601": "2024-09-26T17:22:41.250386Z",
            "url": "https://files.pythonhosted.org/packages/67/fe/7ab1e3dd3f0a4aee0477a5796a8783064370605611eb716a2dd60f0b6dbc/casers-0.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8e7359e031c764730a77463ec510f35dd0d6941c9fcc315b88ea34f43a0ecf2",
                "md5": "92b7796c5cedf67c1557b1c0bff9be0a",
                "sha256": "84f12efc4dc611622502f18b4495f0f2a7a4a87c5748b0a21244c5ab6ceac02f"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "92b7796c5cedf67c1557b1c0bff9be0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 224578,
            "upload_time": "2024-09-26T17:23:08",
            "upload_time_iso_8601": "2024-09-26T17:23:08.107075Z",
            "url": "https://files.pythonhosted.org/packages/f8/e7/359e031c764730a77463ec510f35dd0d6941c9fcc315b88ea34f43a0ecf2/casers-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65a507fab91da670d6ffbf94c5460de564b17c1ddee168a377f2f7a4206d7788",
                "md5": "ab879cc59226cfe7e85cb6b955aa4dad",
                "sha256": "15be8a80f4a40a52bf6e0860e3e360a55f53b60285265095ac597492f839dde9"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ab879cc59226cfe7e85cb6b955aa4dad",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 236355,
            "upload_time": "2024-09-26T17:22:55",
            "upload_time_iso_8601": "2024-09-26T17:22:55.249333Z",
            "url": "https://files.pythonhosted.org/packages/65/a5/07fab91da670d6ffbf94c5460de564b17c1ddee168a377f2f7a4206d7788/casers-0.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a99452470e9d7e3df70fbe224493ffa0a9cd2048c1c4db2d6f3f911c652cc750",
                "md5": "cc5160f6d3c6226e98c5f33415e5e87c",
                "sha256": "6ea467359ea19a3bbbb312bab20d9b9c99ab8584e0abf864fb072b825410947c"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cc5160f6d3c6226e98c5f33415e5e87c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 408423,
            "upload_time": "2024-09-26T17:23:30",
            "upload_time_iso_8601": "2024-09-26T17:23:30.504948Z",
            "url": "https://files.pythonhosted.org/packages/a9/94/52470e9d7e3df70fbe224493ffa0a9cd2048c1c4db2d6f3f911c652cc750/casers-0.10.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e5fa7c7c9fb31deb74514b8d18e6e77f64a37aadd38b30f30b85b77f9be4374",
                "md5": "3ee5a1a6f8812cb185249abf6510dc99",
                "sha256": "74ffc8d45b1004d0514490d5fb8e7225d715b6389e8cbae0a216ac2b146a0501"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3ee5a1a6f8812cb185249abf6510dc99",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 490100,
            "upload_time": "2024-09-26T17:23:45",
            "upload_time_iso_8601": "2024-09-26T17:23:45.927598Z",
            "url": "https://files.pythonhosted.org/packages/0e/5f/a7c7c9fb31deb74514b8d18e6e77f64a37aadd38b30f30b85b77f9be4374/casers-0.10.0-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d79d1b3f699636f32695fb6491321228c253b9ac9c78e7eea26ce376c2fef6e",
                "md5": "24d6379ccd396cf21d3b0b9af83f719f",
                "sha256": "f271f5debf9708e76f45e7e61479f37191eeef131522a571ce177fe8cda76fc0"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "24d6379ccd396cf21d3b0b9af83f719f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 411554,
            "upload_time": "2024-09-26T17:24:01",
            "upload_time_iso_8601": "2024-09-26T17:24:01.003766Z",
            "url": "https://files.pythonhosted.org/packages/6d/79/d1b3f699636f32695fb6491321228c253b9ac9c78e7eea26ce376c2fef6e/casers-0.10.0-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c76508671d52293869206a98cfd5a2ac20034abcebed55c2cc01f310147e6a30",
                "md5": "5ed30bc77a8a0a81681119c1c079e116",
                "sha256": "1989402813636417b39593a78a6bc447e76b835b220b17568374830f4182e42e"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ed30bc77a8a0a81681119c1c079e116",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 392635,
            "upload_time": "2024-09-26T17:24:16",
            "upload_time_iso_8601": "2024-09-26T17:24:16.962925Z",
            "url": "https://files.pythonhosted.org/packages/c7/65/08671d52293869206a98cfd5a2ac20034abcebed55c2cc01f310147e6a30/casers-0.10.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8e003f93b9d3a5d4318d412a6212f4d573dfff7c30e778cd0eee5472a08d196",
                "md5": "ffc4abc87ba54c7fba587714920c78f0",
                "sha256": "672955c61efb029b780d349da55712b794fbfdb71f9d39279a5e79b298b5823d"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "ffc4abc87ba54c7fba587714920c78f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 94476,
            "upload_time": "2024-09-26T17:24:42",
            "upload_time_iso_8601": "2024-09-26T17:24:42.711114Z",
            "url": "https://files.pythonhosted.org/packages/a8/e0/03f93b9d3a5d4318d412a6212f4d573dfff7c30e778cd0eee5472a08d196/casers-0.10.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cbb0c4545b6ea79125d6b409f9ea99aecd9164938675cb4a64f0d4b35f604845",
                "md5": "07b67ecca572ad0ed4aff9060c93159b",
                "sha256": "da8d1d494f7a4002fb60829500d85a8676b088555590043e0b5b48c67317899c"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "07b67ecca572ad0ed4aff9060c93159b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 99461,
            "upload_time": "2024-09-26T17:24:33",
            "upload_time_iso_8601": "2024-09-26T17:24:33.926764Z",
            "url": "https://files.pythonhosted.org/packages/cb/b0/c4545b6ea79125d6b409f9ea99aecd9164938675cb4a64f0d4b35f604845/casers-0.10.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3157f912afd066905192a9547f0b179b1a9638060fd3df69c72a57f88d0a512e",
                "md5": "b5262e9e7406fe96ea0c334056430465",
                "sha256": "b5426eb68f5271fd27d7413c5088aeb4baecbb0620b255118a48a4b5b7ce657e"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b5262e9e7406fe96ea0c334056430465",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 194959,
            "upload_time": "2024-09-26T17:23:20",
            "upload_time_iso_8601": "2024-09-26T17:23:20.121101Z",
            "url": "https://files.pythonhosted.org/packages/31/57/f912afd066905192a9547f0b179b1a9638060fd3df69c72a57f88d0a512e/casers-0.10.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7187419a7bc716e3d5181654be2b832ac8302372faa95f2c8a5e09a6825b4c8e",
                "md5": "23fefd71d07635aa307bd864aee44114",
                "sha256": "53825d1edbf2065a8b4122476048bde0621b319a0aa370e667f2d559e8c2010d"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "23fefd71d07635aa307bd864aee44114",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 232438,
            "upload_time": "2024-09-26T17:21:57",
            "upload_time_iso_8601": "2024-09-26T17:21:57.641874Z",
            "url": "https://files.pythonhosted.org/packages/71/87/419a7bc716e3d5181654be2b832ac8302372faa95f2c8a5e09a6825b4c8e/casers-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05fad82fa64770905c8cd5a3e8ca22a8abe2aedb99a72492a7bbdbe362e41ad5",
                "md5": "467853256b0cb2c4c7607d72ea49db9b",
                "sha256": "bc1652a02842bbcad93b00d7259121e9e09481ddcacee02ae9ba0ab90eee2a47"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "467853256b0cb2c4c7607d72ea49db9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 237521,
            "upload_time": "2024-09-26T17:22:13",
            "upload_time_iso_8601": "2024-09-26T17:22:13.340172Z",
            "url": "https://files.pythonhosted.org/packages/05/fa/d82fa64770905c8cd5a3e8ca22a8abe2aedb99a72492a7bbdbe362e41ad5/casers-0.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88e031ee92b339a9fda463ac4a0dbcf0aead12663a80f38abf9680d77f130b5f",
                "md5": "f061d15e9c582b00519bae0827d1aa45",
                "sha256": "4a1e34af72f75b384783cc666598903da8b17958889a11895ffdac2131c53c2d"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f061d15e9c582b00519bae0827d1aa45",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 260522,
            "upload_time": "2024-09-26T17:22:27",
            "upload_time_iso_8601": "2024-09-26T17:22:27.724248Z",
            "url": "https://files.pythonhosted.org/packages/88/e0/31ee92b339a9fda463ac4a0dbcf0aead12663a80f38abf9680d77f130b5f/casers-0.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "386be3006dcd62d8edf6bdff7add9dca1afe7621e36f83b58a30af163f875fc6",
                "md5": "14a51e5dbfea0a0bdadb62f51f7b72f9",
                "sha256": "8aed14ee1955a7c9304c7c3a26c6b927104d434b63295be70bf37704b7947e72"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "14a51e5dbfea0a0bdadb62f51f7b72f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 264213,
            "upload_time": "2024-09-26T17:22:42",
            "upload_time_iso_8601": "2024-09-26T17:22:42.797286Z",
            "url": "https://files.pythonhosted.org/packages/38/6b/e3006dcd62d8edf6bdff7add9dca1afe7621e36f83b58a30af163f875fc6/casers-0.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a62862b69efe9d0001fed165a5fe803f416a1b0fa20034416b9091d9ad2937f4",
                "md5": "a7135f9428e318f5a95723e2c0a458c9",
                "sha256": "96d971121b6aeb43d0f4cb45b7367d2bf4cc2029b36c97b1a6137ba690ddf23f"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7135f9428e318f5a95723e2c0a458c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 224857,
            "upload_time": "2024-09-26T17:23:09",
            "upload_time_iso_8601": "2024-09-26T17:23:09.748807Z",
            "url": "https://files.pythonhosted.org/packages/a6/28/62b69efe9d0001fed165a5fe803f416a1b0fa20034416b9091d9ad2937f4/casers-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "786de6909500235c1a87e338cb47c68fa7b997fa1e7d059dbdd7c3c0fd5cc009",
                "md5": "2bd8625423e5a8d47eaf5a1021407071",
                "sha256": "7df629fd857471aea30422299b2dce7ac11510e05bbd12aac6b1ed7dd96d6e2d"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2bd8625423e5a8d47eaf5a1021407071",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 236932,
            "upload_time": "2024-09-26T17:22:57",
            "upload_time_iso_8601": "2024-09-26T17:22:57.235510Z",
            "url": "https://files.pythonhosted.org/packages/78/6d/e6909500235c1a87e338cb47c68fa7b997fa1e7d059dbdd7c3c0fd5cc009/casers-0.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc4f4dd1e3b576356bc57789f586563695202c2facace157f4672e110d812993",
                "md5": "78f60e87cbdf0196905294ad2d3f6782",
                "sha256": "61a683a32278572e9a06fbc5dc2897b41e9a048a89d347f3ebc547972023cc3d"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "78f60e87cbdf0196905294ad2d3f6782",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 408687,
            "upload_time": "2024-09-26T17:23:32",
            "upload_time_iso_8601": "2024-09-26T17:23:32.375005Z",
            "url": "https://files.pythonhosted.org/packages/dc/4f/4dd1e3b576356bc57789f586563695202c2facace157f4672e110d812993/casers-0.10.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e52d5574cd7979473026132907d03738a50d88c246d1cf30eca61e946181c0b",
                "md5": "403071a575ed967939630994cc29ec29",
                "sha256": "5d174b5525877e16208242de60346cb0aff7128d9396fa4e8fe859dbfcf94b68"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "403071a575ed967939630994cc29ec29",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 490400,
            "upload_time": "2024-09-26T17:23:47",
            "upload_time_iso_8601": "2024-09-26T17:23:47.863331Z",
            "url": "https://files.pythonhosted.org/packages/9e/52/d5574cd7979473026132907d03738a50d88c246d1cf30eca61e946181c0b/casers-0.10.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd7c1829411747c09b93ef75ebe2982169cf0e971abdad76977ad640045d332c",
                "md5": "52c5ee2bad844c85885f4b138224acac",
                "sha256": "f7b9dcbc41aa1e1805c1d4d47879372bda9b048f748284e1f4fb0f4a70b1f035"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "52c5ee2bad844c85885f4b138224acac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 411985,
            "upload_time": "2024-09-26T17:24:03",
            "upload_time_iso_8601": "2024-09-26T17:24:03.093008Z",
            "url": "https://files.pythonhosted.org/packages/bd/7c/1829411747c09b93ef75ebe2982169cf0e971abdad76977ad640045d332c/casers-0.10.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1912d27749e94649bf5ce8b28458e46ce83956bd3bb28b35d2c13b20c3a52c75",
                "md5": "c457a7ca34f1671775343bb9c067bdcc",
                "sha256": "ffcfe7f509b7cbd52dc4a00df7b3e747ff357da6fd19e1191e64cc308ba48649"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c457a7ca34f1671775343bb9c067bdcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 392870,
            "upload_time": "2024-09-26T17:24:18",
            "upload_time_iso_8601": "2024-09-26T17:24:18.700363Z",
            "url": "https://files.pythonhosted.org/packages/19/12/d27749e94649bf5ce8b28458e46ce83956bd3bb28b35d2c13b20c3a52c75/casers-0.10.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0592fdb6538c4651980c0289b8f80fb1fc273923751b4d87323ce86d4ff72acb",
                "md5": "16ef56bd77cfde617ef98d8cec5f2119",
                "sha256": "61b265818481f669fce639e5aac87f7433c2c0bd027babc0b479c2c6ab37f066"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "16ef56bd77cfde617ef98d8cec5f2119",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 94575,
            "upload_time": "2024-09-26T17:24:44",
            "upload_time_iso_8601": "2024-09-26T17:24:44.325016Z",
            "url": "https://files.pythonhosted.org/packages/05/92/fdb6538c4651980c0289b8f80fb1fc273923751b4d87323ce86d4ff72acb/casers-0.10.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee93912a38ac115eafb007cb52380d22d0182eadf95f8ae440f863b1937b800d",
                "md5": "8b4af3b01360eaa3c7396a7b11cf199f",
                "sha256": "40a719966105376e6006328b48b5e335e03b54176537fb4d178188aa00797045"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8b4af3b01360eaa3c7396a7b11cf199f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 99650,
            "upload_time": "2024-09-26T17:24:35",
            "upload_time_iso_8601": "2024-09-26T17:24:35.392895Z",
            "url": "https://files.pythonhosted.org/packages/ee/93/912a38ac115eafb007cb52380d22d0182eadf95f8ae440f863b1937b800d/casers-0.10.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad6e4f1221fc13ae06ed3d96927a191ec957c6ededdfacef4753b7c61303d283",
                "md5": "1434c4a43378518be9492d1f2b3a42c8",
                "sha256": "120282df46018f78017310d0ceb499e218a5a7318223d594d1c95845c3bcfbb7"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1434c4a43378518be9492d1f2b3a42c8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 233242,
            "upload_time": "2024-09-26T17:21:59",
            "upload_time_iso_8601": "2024-09-26T17:21:59.401266Z",
            "url": "https://files.pythonhosted.org/packages/ad/6e/4f1221fc13ae06ed3d96927a191ec957c6ededdfacef4753b7c61303d283/casers-0.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f0085ecb9ad1389fc5a084d846d7ac5247d736e88fe1b303361f9df81fdda2a",
                "md5": "a0a9eb779e6306dbccb8db6d918f125e",
                "sha256": "bb6eedba71fd34056a0dfe34095198320fa2de6a80e4cb97b13389fa5eb5a899"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a0a9eb779e6306dbccb8db6d918f125e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 238273,
            "upload_time": "2024-09-26T17:22:14",
            "upload_time_iso_8601": "2024-09-26T17:22:14.839006Z",
            "url": "https://files.pythonhosted.org/packages/9f/00/85ecb9ad1389fc5a084d846d7ac5247d736e88fe1b303361f9df81fdda2a/casers-0.10.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a102e7acd0c310fff0e21147d4aa818b8b1a9ec1afb5257f24cb0a859242e6c0",
                "md5": "8d880ffe12a826af2eb674dc5bba429a",
                "sha256": "8b6032c018c91cd0e9d750ec5ef58d663032446655471478abd7306d0b7eeb8f"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8d880ffe12a826af2eb674dc5bba429a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 261951,
            "upload_time": "2024-09-26T17:22:29",
            "upload_time_iso_8601": "2024-09-26T17:22:29.363076Z",
            "url": "https://files.pythonhosted.org/packages/a1/02/e7acd0c310fff0e21147d4aa818b8b1a9ec1afb5257f24cb0a859242e6c0/casers-0.10.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ded8a333a55c4b3c512118e8929de35cdd9f9592feb2e75930abcd1f94c37f7",
                "md5": "b744096cdd5c97130fa31909b0d9d34d",
                "sha256": "1a470dfa14c40318ff1031b8c7bde66c79e1ba4137e3f85db981e871bc17df05"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b744096cdd5c97130fa31909b0d9d34d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 265332,
            "upload_time": "2024-09-26T17:22:44",
            "upload_time_iso_8601": "2024-09-26T17:22:44.634574Z",
            "url": "https://files.pythonhosted.org/packages/3d/ed/8a333a55c4b3c512118e8929de35cdd9f9592feb2e75930abcd1f94c37f7/casers-0.10.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "636169fb07e7d4abb21c5f2e10df0079bd386ee9768333166e338ff6dbfb8af8",
                "md5": "e6951409fb40f130ccb67094e2c66214",
                "sha256": "7b4dceec6715dc18561cee23828ca85dcef2743b83def8f9b4b889bed74db4a8"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6951409fb40f130ccb67094e2c66214",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 225789,
            "upload_time": "2024-09-26T17:23:11",
            "upload_time_iso_8601": "2024-09-26T17:23:11.230093Z",
            "url": "https://files.pythonhosted.org/packages/63/61/69fb07e7d4abb21c5f2e10df0079bd386ee9768333166e338ff6dbfb8af8/casers-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2726ccb8982d1834b7f4e6fb3b6462f8f90a01df900a9eebc002207f78e601ec",
                "md5": "61d74c9c41246158202f050dd535547d",
                "sha256": "0630f75fd70dda06392a646ea5cbe901aedd6fcf0c1e40931fb37398af5720ae"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "61d74c9c41246158202f050dd535547d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 237876,
            "upload_time": "2024-09-26T17:22:58",
            "upload_time_iso_8601": "2024-09-26T17:22:58.638259Z",
            "url": "https://files.pythonhosted.org/packages/27/26/ccb8982d1834b7f4e6fb3b6462f8f90a01df900a9eebc002207f78e601ec/casers-0.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2baa7ee4fbd9d934b8d5f52844eb6d1f8970fe9aa44d972d5e4f52cdd270cf0d",
                "md5": "05e423d4d5453c2d38bcdd64b01c43ba",
                "sha256": "493518a2401697430c2743a56efac3e0daf9e66cf6d8f1e4887233a34ce91f37"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "05e423d4d5453c2d38bcdd64b01c43ba",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 409562,
            "upload_time": "2024-09-26T17:23:34",
            "upload_time_iso_8601": "2024-09-26T17:23:34.080679Z",
            "url": "https://files.pythonhosted.org/packages/2b/aa/7ee4fbd9d934b8d5f52844eb6d1f8970fe9aa44d972d5e4f52cdd270cf0d/casers-0.10.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6b8a4b240e6c85f509d5a848b2b697e2f6de950770c7270da4d291e294cac63",
                "md5": "73a6745c9ab5494689d96007c0b292f6",
                "sha256": "85f62bb90680e4263ddc70bd7b70726133e4a091c3c8f729d0b211fa8cf89f9f"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "73a6745c9ab5494689d96007c0b292f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 491195,
            "upload_time": "2024-09-26T17:23:49",
            "upload_time_iso_8601": "2024-09-26T17:23:49.917126Z",
            "url": "https://files.pythonhosted.org/packages/e6/b8/a4b240e6c85f509d5a848b2b697e2f6de950770c7270da4d291e294cac63/casers-0.10.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "956ffcab31fdd065cea821e7b2b8b1c507c1315053eba5bd47fee7b36b04ab20",
                "md5": "6e971c918c16879fe7da88d64ba132f6",
                "sha256": "18b685abab1f97b8f35e5942bd1326b4ef012fbac77cdec6075f6bbab2e1674b"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6e971c918c16879fe7da88d64ba132f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 412735,
            "upload_time": "2024-09-26T17:24:05",
            "upload_time_iso_8601": "2024-09-26T17:24:05.264443Z",
            "url": "https://files.pythonhosted.org/packages/95/6f/fcab31fdd065cea821e7b2b8b1c507c1315053eba5bd47fee7b36b04ab20/casers-0.10.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c620be2c8cb4322ec891b659f43a0c8dd1ae173ee66d6f3a8cc6ad64765d9d06",
                "md5": "6af363568ff92ef0e7391582aa5d791d",
                "sha256": "d31e3ea6bcd024696faa17e6e1ffd87f28fc0d865df565587e24c1f4a5578aa3"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6af363568ff92ef0e7391582aa5d791d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 393813,
            "upload_time": "2024-09-26T17:24:20",
            "upload_time_iso_8601": "2024-09-26T17:24:20.434070Z",
            "url": "https://files.pythonhosted.org/packages/c6/20/be2c8cb4322ec891b659f43a0c8dd1ae173ee66d6f3a8cc6ad64765d9d06/casers-0.10.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f05d9e1b9cff31be49ccff4296f318523092aa70d047b8aa41f9546b6993f20d",
                "md5": "bb5a1fd382417f4a95f58a23c657967d",
                "sha256": "fd4d46c891fface4ec7a93fe07df9a580ca8fd6044a6f8f6a5e4dd99824f8e68"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bb5a1fd382417f4a95f58a23c657967d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 233212,
            "upload_time": "2024-09-26T17:22:01",
            "upload_time_iso_8601": "2024-09-26T17:22:01.299230Z",
            "url": "https://files.pythonhosted.org/packages/f0/5d/9e1b9cff31be49ccff4296f318523092aa70d047b8aa41f9546b6993f20d/casers-0.10.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4dee5bb69fcdc77abb27ba293fcab36345741d3bb4e8b96036513c9660679faf",
                "md5": "86a2e4ec7898b5259929e1fc2222811a",
                "sha256": "30bfa353093395ceafd2b78393437940ebbae2c012bc29de73bc838c65e71601"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "86a2e4ec7898b5259929e1fc2222811a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 238180,
            "upload_time": "2024-09-26T17:22:16",
            "upload_time_iso_8601": "2024-09-26T17:22:16.827355Z",
            "url": "https://files.pythonhosted.org/packages/4d/ee/5bb69fcdc77abb27ba293fcab36345741d3bb4e8b96036513c9660679faf/casers-0.10.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5659ccf5bce1c559fb518adcf168179c1340dbc3681a27bd87c1d1f633516c8",
                "md5": "ff906e4855191442a0ea800b3b99c1d2",
                "sha256": "521ca768949f87aa1f3a25aea914f8fbf9535922d3d56b002047f07e096c26b9"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ff906e4855191442a0ea800b3b99c1d2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 261861,
            "upload_time": "2024-09-26T17:22:31",
            "upload_time_iso_8601": "2024-09-26T17:22:31.491451Z",
            "url": "https://files.pythonhosted.org/packages/a5/65/9ccf5bce1c559fb518adcf168179c1340dbc3681a27bd87c1d1f633516c8/casers-0.10.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "593c061fa3d83de54049daa46020061c59abe8e2392fb034e2990a0e583a6b9b",
                "md5": "4369ca9a99b8e13f728a0eec80533b1f",
                "sha256": "f78aa0238e1ed61c075b53c758ce0dc99d0271d20cd140a28a7f52fd260f056d"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4369ca9a99b8e13f728a0eec80533b1f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 265476,
            "upload_time": "2024-09-26T17:22:46",
            "upload_time_iso_8601": "2024-09-26T17:22:46.451733Z",
            "url": "https://files.pythonhosted.org/packages/59/3c/061fa3d83de54049daa46020061c59abe8e2392fb034e2990a0e583a6b9b/casers-0.10.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e8e7344154371591f4744688ec088797b9b8c10e7df7c44a6afd4d9d6a19aa7",
                "md5": "6d3d44d8b040821553a74dcdd0cfc4c2",
                "sha256": "49f18dd50a34c521f70e159ffc01c0daf82de47b745b6422700837af70d83643"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d3d44d8b040821553a74dcdd0cfc4c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 409547,
            "upload_time": "2024-09-26T17:23:35",
            "upload_time_iso_8601": "2024-09-26T17:23:35.893953Z",
            "url": "https://files.pythonhosted.org/packages/3e/8e/7344154371591f4744688ec088797b9b8c10e7df7c44a6afd4d9d6a19aa7/casers-0.10.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "accd2d4749b2c84b0ab5a534200362581a11447b3b780e34f8511ddafee2e556",
                "md5": "d21abb8d4eee09f87ceb3ad985b0860e",
                "sha256": "1a4e4b9e6079a765884a3ff144dc1c118b1b630b975a7fc21a8da1d0301a6421"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d21abb8d4eee09f87ceb3ad985b0860e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 491272,
            "upload_time": "2024-09-26T17:23:52",
            "upload_time_iso_8601": "2024-09-26T17:23:52.230112Z",
            "url": "https://files.pythonhosted.org/packages/ac/cd/2d4749b2c84b0ab5a534200362581a11447b3b780e34f8511ddafee2e556/casers-0.10.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37d12e3f22dbde9d780c6f77b9db45ff5aae55d89ac2dd48a640ce08480e4d0a",
                "md5": "59a6766bd22542c97dcd57cf5864c418",
                "sha256": "2228ad891226f537ad0ac8a8f0fff4ed0b306553f21aa775db328286b718f261"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "59a6766bd22542c97dcd57cf5864c418",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 412626,
            "upload_time": "2024-09-26T17:24:07",
            "upload_time_iso_8601": "2024-09-26T17:24:07.614567Z",
            "url": "https://files.pythonhosted.org/packages/37/d1/2e3f22dbde9d780c6f77b9db45ff5aae55d89ac2dd48a640ce08480e4d0a/casers-0.10.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "abf92efc8975165205e2307c64a1a9737152d3d66693cc5c3bf70fcd640ff360",
                "md5": "4243f9a27292f879be241efe7fd9bd3f",
                "sha256": "5e4d59b6e5b4479490512897808759efad31f77807424e5964db901fb25a732c"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4243f9a27292f879be241efe7fd9bd3f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 393750,
            "upload_time": "2024-09-26T17:24:22",
            "upload_time_iso_8601": "2024-09-26T17:24:22.789906Z",
            "url": "https://files.pythonhosted.org/packages/ab/f9/2efc8975165205e2307c64a1a9737152d3d66693cc5c3bf70fcd640ff360/casers-0.10.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "613561d405e11e5a22e51b5a8d8fe39fbeb65e4c07550b56b254440f50ff0452",
                "md5": "b44844398d08d744c143356c49a9bac5",
                "sha256": "f50d3994050527daebd9bff4051c096f982e6ec64bf482da7874d132a19dcf79"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b44844398d08d744c143356c49a9bac5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 233140,
            "upload_time": "2024-09-26T17:22:03",
            "upload_time_iso_8601": "2024-09-26T17:22:03.372278Z",
            "url": "https://files.pythonhosted.org/packages/61/35/61d405e11e5a22e51b5a8d8fe39fbeb65e4c07550b56b254440f50ff0452/casers-0.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf4d094dcfb4c2e26404aa57a00ab722f042ed6cfb0535d80350c6fc15925eea",
                "md5": "6780c33b0ec2d2e0874f6f86593759a6",
                "sha256": "accf74612b28114970f920af8081e482583844e0d091348a34be4c3093c1a23d"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6780c33b0ec2d2e0874f6f86593759a6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 238209,
            "upload_time": "2024-09-26T17:22:18",
            "upload_time_iso_8601": "2024-09-26T17:22:18.921941Z",
            "url": "https://files.pythonhosted.org/packages/cf/4d/094dcfb4c2e26404aa57a00ab722f042ed6cfb0535d80350c6fc15925eea/casers-0.10.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4110c112eca10f1ea29d2ede6d86f044104d5664b18e62c4b630ee115ebec07",
                "md5": "e26b94c6bed7975b5da10490f60ca530",
                "sha256": "4e22fd39c1909e26fa68ae3f249c4371adfed1c14caaa21e6a750f386c1b7174"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e26b94c6bed7975b5da10490f60ca530",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 261938,
            "upload_time": "2024-09-26T17:22:33",
            "upload_time_iso_8601": "2024-09-26T17:22:33.483599Z",
            "url": "https://files.pythonhosted.org/packages/a4/11/0c112eca10f1ea29d2ede6d86f044104d5664b18e62c4b630ee115ebec07/casers-0.10.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae518deb92c0c80b18bff6790f55896b14186654871cb7232a6ddec87626f4ab",
                "md5": "cdc5e0318aa16119770d13b12d71b407",
                "sha256": "7e4e4a01770ddaf98c78eaef903624ce7c7ba619fc508a02a53f9ade1fa57d6e"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "cdc5e0318aa16119770d13b12d71b407",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 265573,
            "upload_time": "2024-09-26T17:22:48",
            "upload_time_iso_8601": "2024-09-26T17:22:48.274960Z",
            "url": "https://files.pythonhosted.org/packages/ae/51/8deb92c0c80b18bff6790f55896b14186654871cb7232a6ddec87626f4ab/casers-0.10.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af71da62efd536a7a732279177e4bb101016b76f4e3511dd24d0fc00f3fe80e5",
                "md5": "7dc1d5253f3f3f023fe844b3cd0e3c98",
                "sha256": "155fb1a0a60d95692e472214181c64727352bf42aa2d60f99b49803630eb593e"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7dc1d5253f3f3f023fe844b3cd0e3c98",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 225607,
            "upload_time": "2024-09-26T17:23:12",
            "upload_time_iso_8601": "2024-09-26T17:23:12.918807Z",
            "url": "https://files.pythonhosted.org/packages/af/71/da62efd536a7a732279177e4bb101016b76f4e3511dd24d0fc00f3fe80e5/casers-0.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "887de4f338a2480c5da1bd18e5d67bb439b937a5b6e4ff16fedd1d418bcb1fe7",
                "md5": "803164ab239589957259d78e0e17693a",
                "sha256": "30a235da365648373c0b68f1a8ac342e3cb282ea56c2fa688f73b7bb04d3050e"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "803164ab239589957259d78e0e17693a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 237409,
            "upload_time": "2024-09-26T17:23:00",
            "upload_time_iso_8601": "2024-09-26T17:23:00.296141Z",
            "url": "https://files.pythonhosted.org/packages/88/7d/e4f338a2480c5da1bd18e5d67bb439b937a5b6e4ff16fedd1d418bcb1fe7/casers-0.10.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca215befe9288f64d635889fc2741b4885860fc656683f2ab8dfb81a0415f141",
                "md5": "fda0c77ed55216f536d7d4ad043e1690",
                "sha256": "d21fd0c89cbfd12783f9b8ef84d3c675f8c40d3f37d73da4864ba40634c657e8"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fda0c77ed55216f536d7d4ad043e1690",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 409644,
            "upload_time": "2024-09-26T17:23:37",
            "upload_time_iso_8601": "2024-09-26T17:23:37.532640Z",
            "url": "https://files.pythonhosted.org/packages/ca/21/5befe9288f64d635889fc2741b4885860fc656683f2ab8dfb81a0415f141/casers-0.10.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3baa94f06d0a37b916180d14f740d788a70fb2834413114460c4583d999ac5d8",
                "md5": "6115bb10b8f01a63c7e787182dc8dcc1",
                "sha256": "0e7688cbbb44231f2d5b53f27ca0d021cb229c3e54fbdd424bbde4258fc627b3"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6115bb10b8f01a63c7e787182dc8dcc1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 491264,
            "upload_time": "2024-09-26T17:23:54",
            "upload_time_iso_8601": "2024-09-26T17:23:54.117760Z",
            "url": "https://files.pythonhosted.org/packages/3b/aa/94f06d0a37b916180d14f740d788a70fb2834413114460c4583d999ac5d8/casers-0.10.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f7b140103c3a9a619a65e4e5e4512d1cd4066b7acf5fa9af6df76e079ceef378",
                "md5": "09ae83342117e7b5c4c59e9f0011907b",
                "sha256": "088fcb89be092c5f2974f9bb3f14fc134b83597d1416ec40be0b4ffe694e89f7"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "09ae83342117e7b5c4c59e9f0011907b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 412718,
            "upload_time": "2024-09-26T17:24:09",
            "upload_time_iso_8601": "2024-09-26T17:24:09.349449Z",
            "url": "https://files.pythonhosted.org/packages/f7/b1/40103c3a9a619a65e4e5e4512d1cd4066b7acf5fa9af6df76e079ceef378/casers-0.10.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d96dbdc1653f8d4d80a1a9f88e423953a2dcf6b91c271284155006bf7ddd1937",
                "md5": "15094ccf3eef4bf10bd28f59f9ffc226",
                "sha256": "dea4a7d4a665dba59775c38c0a528f2d2aaf2e057fec2e4d15c909c782d8bbc5"
            },
            "downloads": -1,
            "filename": "casers-0.10.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15094ccf3eef4bf10bd28f59f9ffc226",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 393783,
            "upload_time": "2024-09-26T17:24:25",
            "upload_time_iso_8601": "2024-09-26T17:24:25.199288Z",
            "url": "https://files.pythonhosted.org/packages/d9/6d/bdc1653f8d4d80a1a9f88e423953a2dcf6b91c271284155006bf7ddd1937/casers-0.10.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e911c9196202899b1afce82b92d177cdb95b08f7691c624314d4ca2ef8a582ae",
                "md5": "e5a24c6e0bb2692c728e1fbb65bdcd73",
                "sha256": "b05df242f7675943656dbfcbcd8c65b41f7bee820223e7528e035ef155458687"
            },
            "downloads": -1,
            "filename": "casers-0.10.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e5a24c6e0bb2692c728e1fbb65bdcd73",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 41300,
            "upload_time": "2024-09-26T17:24:27",
            "upload_time_iso_8601": "2024-09-26T17:24:27.384419Z",
            "url": "https://files.pythonhosted.org/packages/e9/11/c9196202899b1afce82b92d177cdb95b08f7691c624314d4ca2ef8a582ae/casers-0.10.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-26 17:24:27",
    "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.31064s