pycases


Namepycases JSON
Version 0.1.3 PyPI version JSON
download
home_pageNone
SummaryA case conversion library with Unicode support
upload_time2023-10-30 16:23:27
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseMIT
keywords convert case snake camel pascal
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pycases

[![PyPI version](https://badgers.space/pypi/version/pycases)](https://pypi.org/project/pycases)
[![License](https://badgers.space/github/license/rossmacarthur/pycases)](https://github.com/rossmacarthur/pycases#license)
[![Build Status](https://badgers.space/github/checks/rossmacarthur/pycases/trunk?label=build)](https://github.com/rossmacarthur/pycases/actions/workflows/build.yaml)

A case conversion library for Python.

## Features

- Automatic case detection, no need to specify the input case
- Extremely fast, written in Rust ✨
- Support for Unicode characters
- Support for providing acronyms in title case

**Supported cases**

| Function                      | Output                 |
| :---------------------------- | :--------------------- |
| `cases.to_camel(s)`           | `camelCase`            |
| `cases.to_pascal(s)`          | `PascalCase`           |
| `cases.to_snake(s)`           | `snake_case`           |
| `cases.to_screaming_snake(s)` | `SCREAMING_SNAKE_CASE` |
| `cases.to_kebab(s)`           | `kebab-case`           |
| `cases.to_screaming_kebab(s)` | `SCREAMING-KEBAB-CASE` |
| `cases.to_train(s)`           | `Train-Case`           |
| `cases.to_lower(s)`           | `lower case`           |
| `cases.to_title(s)`           | `Title Case`           |
| `cases.to_upper(s)`           | `UPPER CASE`           |


## Getting started

Install using

```sh
pip install pycases
```

Now convert a string using the relevant function.

```python
import cases

cases.to_snake("XMLHttpRequest") # returns "xml_http_request"
```

## Details

Each of the provided functions using the same underlying implementation which
does the following:
- Divide the input string into words
- Convert each word as required
- Join the words back together optionally with a separator

Word boundaries are defined as follows:

- A set of consecutive Unicode non-letter and non-number characters.

  For example: 'foo _bar' is two words (foo and bar)

- A transition from a lowercase letter to an uppercase letter.

  For example: fooBar is two words (foo and Bar)

- A transition from multiple uppercase letters to a single uppercase letter
  followed by lowercase letters.

  For example: FOOBar is two words (FOO and Bar)

Functions where the transform is "title" accept an optional `acronyms` argument,
which is a mapping of lowercase words to their output. For example:

```python
>>> cases.to_pascal("xml_http_request", acronyms={"xml": "XML"})
'XMLHttpRequest'
>>> cases.to_pascal("xml_http_request", acronyms={"xml": "XML", "http": "HTTP"})
'XMLHTTPRequest'
```

## Benchmarks

A simple benchmark against various other libraries is provided in
[./benches](./benches). The following table shows the results when run on my
Macbook M2 Max.

| Library         |   Min (µs) |   Max (µs) |  Mean (µs) |
| --------------- | ---------: | ---------: | ---------: |
| cases           |    21.3750 |    49.6670 |    22.1288 |
| pure python     |    62.8750 |   186.9580 |    66.2344 |
| regex           |    80.8330 |   201.2500 |    87.0549 |
| stringcase      |   101.8340 |   204.9590 |   108.6977 |
| inflection      |   230.2920 |   581.4580 |   253.9194 |
| case-conversion | 1,431.7920 | 1,745.7080 | 1,506.2268 |

## License

This project is licensed under the terms of the MIT license. See
[LICENSE](LICENSE) for more details.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pycases",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "convert,case,snake,camel,pascal",
    "author": null,
    "author_email": "Ross MacArthur <ross@macarthur.io>",
    "download_url": "https://files.pythonhosted.org/packages/72/ec/b540a46904e403acc200ddcd607a6e825e846ffa6d86269408daeac4d770/pycases-0.1.3.tar.gz",
    "platform": null,
    "description": "# pycases\n\n[![PyPI version](https://badgers.space/pypi/version/pycases)](https://pypi.org/project/pycases)\n[![License](https://badgers.space/github/license/rossmacarthur/pycases)](https://github.com/rossmacarthur/pycases#license)\n[![Build Status](https://badgers.space/github/checks/rossmacarthur/pycases/trunk?label=build)](https://github.com/rossmacarthur/pycases/actions/workflows/build.yaml)\n\nA case conversion library for Python.\n\n## Features\n\n- Automatic case detection, no need to specify the input case\n- Extremely fast, written in Rust \u2728\n- Support for Unicode characters\n- Support for providing acronyms in title case\n\n**Supported cases**\n\n| Function                      | Output                 |\n| :---------------------------- | :--------------------- |\n| `cases.to_camel(s)`           | `camelCase`            |\n| `cases.to_pascal(s)`          | `PascalCase`           |\n| `cases.to_snake(s)`           | `snake_case`           |\n| `cases.to_screaming_snake(s)` | `SCREAMING_SNAKE_CASE` |\n| `cases.to_kebab(s)`           | `kebab-case`           |\n| `cases.to_screaming_kebab(s)` | `SCREAMING-KEBAB-CASE` |\n| `cases.to_train(s)`           | `Train-Case`           |\n| `cases.to_lower(s)`           | `lower case`           |\n| `cases.to_title(s)`           | `Title Case`           |\n| `cases.to_upper(s)`           | `UPPER CASE`           |\n\n\n## Getting started\n\nInstall using\n\n```sh\npip install pycases\n```\n\nNow convert a string using the relevant function.\n\n```python\nimport cases\n\ncases.to_snake(\"XMLHttpRequest\") # returns \"xml_http_request\"\n```\n\n## Details\n\nEach of the provided functions using the same underlying implementation which\ndoes the following:\n- Divide the input string into words\n- Convert each word as required\n- Join the words back together optionally with a separator\n\nWord boundaries are defined as follows:\n\n- A set of consecutive Unicode non-letter and non-number characters.\n\n  For example: 'foo _bar' is two words (foo and bar)\n\n- A transition from a lowercase letter to an uppercase letter.\n\n  For example: fooBar is two words (foo and Bar)\n\n- A transition from multiple uppercase letters to a single uppercase letter\n  followed by lowercase letters.\n\n  For example: FOOBar is two words (FOO and Bar)\n\nFunctions where the transform is \"title\" accept an optional `acronyms` argument,\nwhich is a mapping of lowercase words to their output. For example:\n\n```python\n>>> cases.to_pascal(\"xml_http_request\", acronyms={\"xml\": \"XML\"})\n'XMLHttpRequest'\n>>> cases.to_pascal(\"xml_http_request\", acronyms={\"xml\": \"XML\", \"http\": \"HTTP\"})\n'XMLHTTPRequest'\n```\n\n## Benchmarks\n\nA simple benchmark against various other libraries is provided in\n[./benches](./benches). The following table shows the results when run on my\nMacbook M2 Max.\n\n| Library         |   Min (\u00b5s) |   Max (\u00b5s) |  Mean (\u00b5s) |\n| --------------- | ---------: | ---------: | ---------: |\n| cases           |    21.3750 |    49.6670 |    22.1288 |\n| pure python     |    62.8750 |   186.9580 |    66.2344 |\n| regex           |    80.8330 |   201.2500 |    87.0549 |\n| stringcase      |   101.8340 |   204.9590 |   108.6977 |\n| inflection      |   230.2920 |   581.4580 |   253.9194 |\n| case-conversion | 1,431.7920 | 1,745.7080 | 1,506.2268 |\n\n## License\n\nThis project is licensed under the terms of the MIT license. See\n[LICENSE](LICENSE) for more details.\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A case conversion library with Unicode support",
    "version": "0.1.3",
    "project_urls": {
        "Homepage": "https://github.com/rossmacarthur/pycases",
        "Repository": "https://github.com/rossmacarthur/pycases"
    },
    "split_keywords": [
        "convert",
        "case",
        "snake",
        "camel",
        "pascal"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d727ef5b78dcd15219fa2de6eec820577e925c3a66a7177760f52f525934898a",
                "md5": "d6869cc89cbdff799788b5f11491aa16",
                "sha256": "4641170d41e58aaf04315de9b6d507531cabdaf325d8b1d10d4abd4b574a9db9"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d6869cc89cbdff799788b5f11491aa16",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 270233,
            "upload_time": "2023-10-30T16:21:08",
            "upload_time_iso_8601": "2023-10-30T16:21:08.226041Z",
            "url": "https://files.pythonhosted.org/packages/d7/27/ef5b78dcd15219fa2de6eec820577e925c3a66a7177760f52f525934898a/pycases-0.1.3-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a532225a1a6e854068c369abf6227f92d5de0976cd932d90ba076f0a7ab0d89f",
                "md5": "c4fb31085954f028d196e5ecb867fe31",
                "sha256": "8d74b4b376b0cd54e8fc590df3c1b0a5da194e8f4e6675948f5b713e4c440707"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c4fb31085954f028d196e5ecb867fe31",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 264906,
            "upload_time": "2023-10-30T16:21:10",
            "upload_time_iso_8601": "2023-10-30T16:21:10.260548Z",
            "url": "https://files.pythonhosted.org/packages/a5/32/225a1a6e854068c369abf6227f92d5de0976cd932d90ba076f0a7ab0d89f/pycases-0.1.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b9b623f558b8633bfb552cbbf831a1b00ac6f94f96a77b8bc6df4dbea4a0294",
                "md5": "c6606dcd55cf5dc00d12a0bb374f8853",
                "sha256": "a1dd55a6d32fbc0fbbf2041d662432f1f6831cd28e5706a90a3d7d2d51a05f3c"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c6606dcd55cf5dc00d12a0bb374f8853",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1152819,
            "upload_time": "2023-10-30T16:21:11",
            "upload_time_iso_8601": "2023-10-30T16:21:11.900481Z",
            "url": "https://files.pythonhosted.org/packages/0b/9b/623f558b8633bfb552cbbf831a1b00ac6f94f96a77b8bc6df4dbea4a0294/pycases-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "300f17929b682bd70205fc931e53017872ddbf9667c247731ddfb8d6247f75d8",
                "md5": "4b8fd5bf36c85058a28c5383b0f6705f",
                "sha256": "014d7a6eb5e781e272d0936eead0c18cf6228598c174269cee1e1d9b9f039f3b"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4b8fd5bf36c85058a28c5383b0f6705f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1151236,
            "upload_time": "2023-10-30T16:21:13",
            "upload_time_iso_8601": "2023-10-30T16:21:13.443466Z",
            "url": "https://files.pythonhosted.org/packages/30/0f/17929b682bd70205fc931e53017872ddbf9667c247731ddfb8d6247f75d8/pycases-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd7d96383aaf9768b54963202af3d67dc7ca92175846ab37b6f599af09e54e24",
                "md5": "9ffdf81c550213823f09b20757d44225",
                "sha256": "20a34d1e43a525ecb4f9a09fc5f0b9327dac19e7f692736e24d9bc478932c6cc"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9ffdf81c550213823f09b20757d44225",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1265138,
            "upload_time": "2023-10-30T16:21:15",
            "upload_time_iso_8601": "2023-10-30T16:21:15.193013Z",
            "url": "https://files.pythonhosted.org/packages/fd/7d/96383aaf9768b54963202af3d67dc7ca92175846ab37b6f599af09e54e24/pycases-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50fb284a10106b5aa41eea9f17e45174c86a8295755672a6d51dd50223a81bf5",
                "md5": "674dc2f5e05d1976652a93c69b5f2b06",
                "sha256": "03c0df7b2c2d4c1b127f4ff8a0d9cc0babf230621fcb8fe96b27a82fd5d87204"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "674dc2f5e05d1976652a93c69b5f2b06",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1330649,
            "upload_time": "2023-10-30T16:21:17",
            "upload_time_iso_8601": "2023-10-30T16:21:17.222622Z",
            "url": "https://files.pythonhosted.org/packages/50/fb/284a10106b5aa41eea9f17e45174c86a8295755672a6d51dd50223a81bf5/pycases-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5511e19ef018442cbc6306a52e7305a32389b94e0e5c3a815df3a411f856e211",
                "md5": "75548c7b46c2ccee7c21dbddfe8df9e0",
                "sha256": "734ad8ddb291629a03bf81318ace5adcafce26ebf554b1eba9494a85e7912cad"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75548c7b46c2ccee7c21dbddfe8df9e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1155835,
            "upload_time": "2023-10-30T16:21:18",
            "upload_time_iso_8601": "2023-10-30T16:21:18.817746Z",
            "url": "https://files.pythonhosted.org/packages/55/11/e19ef018442cbc6306a52e7305a32389b94e0e5c3a815df3a411f856e211/pycases-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e8f9b6cb5d3b34b951d44de9941d8222485522fb24d9e495b560679cecf58cd",
                "md5": "385b0099a4d71d4a96283811dfb1af35",
                "sha256": "7bb25dccf8c9c8f9a2d1427063d1e9528f7c4f5d8f53292eaea92353e0079564"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "385b0099a4d71d4a96283811dfb1af35",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1174280,
            "upload_time": "2023-10-30T16:21:21",
            "upload_time_iso_8601": "2023-10-30T16:21:21.011211Z",
            "url": "https://files.pythonhosted.org/packages/6e/8f/9b6cb5d3b34b951d44de9941d8222485522fb24d9e495b560679cecf58cd/pycases-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5995326165cde8a4a5ed220770882801ab2544956991fd7e473e372aaca14f98",
                "md5": "dc4ebefd6803a4b8f03e6825bed41430",
                "sha256": "58236cf94163b448d6a455050955a09205c2c256b9cc6196ec587e94c4818003"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "dc4ebefd6803a4b8f03e6825bed41430",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 130727,
            "upload_time": "2023-10-30T16:21:22",
            "upload_time_iso_8601": "2023-10-30T16:21:22.774554Z",
            "url": "https://files.pythonhosted.org/packages/59/95/326165cde8a4a5ed220770882801ab2544956991fd7e473e372aaca14f98/pycases-0.1.3-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2aa54c7ae484e42e8a27dd3e84b3d4930f20cc05cf02caaf986e796fbd19b4c8",
                "md5": "3b607645be83cc8ef12fa3729849a426",
                "sha256": "236067bb193c2ff9c9a2974f61dfb5970725160e5ab350d4e91560d0ed6198f7"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3b607645be83cc8ef12fa3729849a426",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 134333,
            "upload_time": "2023-10-30T16:21:24",
            "upload_time_iso_8601": "2023-10-30T16:21:24.369744Z",
            "url": "https://files.pythonhosted.org/packages/2a/a5/4c7ae484e42e8a27dd3e84b3d4930f20cc05cf02caaf986e796fbd19b4c8/pycases-0.1.3-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "586233216a94c504c37e674103e697a432454069a2659d2c9e22334d4f798541",
                "md5": "9c5414c7ab91534b81b7a35694592523",
                "sha256": "d820905a4ceb2308855218b33c6f8fecdb6c8a5cdf3248533ded0c41a89ff7db"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c5414c7ab91534b81b7a35694592523",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 270281,
            "upload_time": "2023-10-30T16:21:25",
            "upload_time_iso_8601": "2023-10-30T16:21:25.843082Z",
            "url": "https://files.pythonhosted.org/packages/58/62/33216a94c504c37e674103e697a432454069a2659d2c9e22334d4f798541/pycases-0.1.3-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c3b6855669c38b9300b29b7ab29e5e48b73c49a7e882293aef44fcc05390e36",
                "md5": "85b302c197865c1d52dda0de80374192",
                "sha256": "8b2736db55efccd03ef07be85af0f90818bce4c5772fe9784abfc32fb390c503"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "85b302c197865c1d52dda0de80374192",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 264908,
            "upload_time": "2023-10-30T16:21:27",
            "upload_time_iso_8601": "2023-10-30T16:21:27.678729Z",
            "url": "https://files.pythonhosted.org/packages/5c/3b/6855669c38b9300b29b7ab29e5e48b73c49a7e882293aef44fcc05390e36/pycases-0.1.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a710d3bb1f462e2a758da631eae9ae433c6134640f4ec7a90f5fc5174ac4fc5",
                "md5": "c4e09cadd7c238b58ff884dfd7349648",
                "sha256": "2cde7c78b21d6cd2f817bf0032d927fbddc431ea475db32cd2935b539d817924"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c4e09cadd7c238b58ff884dfd7349648",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1152847,
            "upload_time": "2023-10-30T16:21:29",
            "upload_time_iso_8601": "2023-10-30T16:21:29.345617Z",
            "url": "https://files.pythonhosted.org/packages/9a/71/0d3bb1f462e2a758da631eae9ae433c6134640f4ec7a90f5fc5174ac4fc5/pycases-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b6f33ce6f06ae147096b48568676a6c63fb1a15e465ce1403242e394935fba0",
                "md5": "fd289b3dc8f1cfb6f8515b7c532a308e",
                "sha256": "79b9fc895b82d3d8a3e777d0626c68960e3555c3ba84b7200b67cdfd9ecb0be6"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fd289b3dc8f1cfb6f8515b7c532a308e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1151339,
            "upload_time": "2023-10-30T16:21:31",
            "upload_time_iso_8601": "2023-10-30T16:21:31.029988Z",
            "url": "https://files.pythonhosted.org/packages/7b/6f/33ce6f06ae147096b48568676a6c63fb1a15e465ce1403242e394935fba0/pycases-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5bdc029b8c09c6fb9bbfab40978f0bdabf71cf2d6e9d90b632acf0bdc64fd28",
                "md5": "ef56b52b3d734fad98b4be7520fc988f",
                "sha256": "a5ca22a90fffaa10409388d513359a3b7a7fcd3840d1a0a6b85581f820736b8a"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ef56b52b3d734fad98b4be7520fc988f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1265213,
            "upload_time": "2023-10-30T16:21:32",
            "upload_time_iso_8601": "2023-10-30T16:21:32.895461Z",
            "url": "https://files.pythonhosted.org/packages/c5/bd/c029b8c09c6fb9bbfab40978f0bdabf71cf2d6e9d90b632acf0bdc64fd28/pycases-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15d7fa333f533e8cf09ac85b4af807df2eb2f8f5ea29a346fa3ba1d0ccabcb9f",
                "md5": "e17bba2801e7ba40814261d946e9dec1",
                "sha256": "b28643863c6f041c2cc86e9dad4d7eb70c1a8e8ec9b2a93bb99249bc589c6e65"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e17bba2801e7ba40814261d946e9dec1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1330742,
            "upload_time": "2023-10-30T16:21:34",
            "upload_time_iso_8601": "2023-10-30T16:21:34.688627Z",
            "url": "https://files.pythonhosted.org/packages/15/d7/fa333f533e8cf09ac85b4af807df2eb2f8f5ea29a346fa3ba1d0ccabcb9f/pycases-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91029046f5dfc54ca7c15175f4521465407a884022ae39a51977e835e661bee0",
                "md5": "fe996c6e932df873dd1195cf747b8177",
                "sha256": "9a8d68e7767e9c839f2bc185b78c88f6b5d49ff12944bb55a2faa076e914faff"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe996c6e932df873dd1195cf747b8177",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1155754,
            "upload_time": "2023-10-30T16:21:36",
            "upload_time_iso_8601": "2023-10-30T16:21:36.789916Z",
            "url": "https://files.pythonhosted.org/packages/91/02/9046f5dfc54ca7c15175f4521465407a884022ae39a51977e835e661bee0/pycases-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1e447705fbfa4a4a0515b78d4e790876e022cec2b0957a943bcd5982c831f6d",
                "md5": "e46406ff7d9ce5b2301a037ec54c3e29",
                "sha256": "f828687e087353484760a29457080c1c832d15cbf6004e0b5ef6dc38058c0ba4"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e46406ff7d9ce5b2301a037ec54c3e29",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1174404,
            "upload_time": "2023-10-30T16:21:38",
            "upload_time_iso_8601": "2023-10-30T16:21:38.491821Z",
            "url": "https://files.pythonhosted.org/packages/c1/e4/47705fbfa4a4a0515b78d4e790876e022cec2b0957a943bcd5982c831f6d/pycases-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d235cd892e58cbae33455b8a7aa9f4c9d43ae247500d54ead15f2c690f9a4af1",
                "md5": "3584ad4f943648ac7bc609ef063a5cdf",
                "sha256": "f1df880a3e8d9c01301901bd9a86359bc277aabcce25ada69b49e1f3b6fe8ee8"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "3584ad4f943648ac7bc609ef063a5cdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 130919,
            "upload_time": "2023-10-30T16:21:39",
            "upload_time_iso_8601": "2023-10-30T16:21:39.991464Z",
            "url": "https://files.pythonhosted.org/packages/d2/35/cd892e58cbae33455b8a7aa9f4c9d43ae247500d54ead15f2c690f9a4af1/pycases-0.1.3-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a90c9c3a2c6426c55998c8f391960cd338e52bb7236c9cfa59928dc9171524e",
                "md5": "3a4efcaf1fae5037fa288ca373cdc83c",
                "sha256": "66a4702b7fe4c535fd38970d4f45bd3acd839849399290ba638f8a25088762ce"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3a4efcaf1fae5037fa288ca373cdc83c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 134324,
            "upload_time": "2023-10-30T16:21:41",
            "upload_time_iso_8601": "2023-10-30T16:21:41.467461Z",
            "url": "https://files.pythonhosted.org/packages/7a/90/c9c3a2c6426c55998c8f391960cd338e52bb7236c9cfa59928dc9171524e/pycases-0.1.3-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ed03d5d71b1de1a67b7add37094a94d335bb707312a8a95d20728048e7ab379",
                "md5": "09bed019d6f21877fdaf34f160465e16",
                "sha256": "ae19e569b9bd66e18317968ecbd160c30f5c29da40b246879447161fd1fac8d9"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp312-cp312-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09bed019d6f21877fdaf34f160465e16",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 269460,
            "upload_time": "2023-10-30T16:21:42",
            "upload_time_iso_8601": "2023-10-30T16:21:42.757330Z",
            "url": "https://files.pythonhosted.org/packages/5e/d0/3d5d71b1de1a67b7add37094a94d335bb707312a8a95d20728048e7ab379/pycases-0.1.3-cp312-cp312-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd21a1095430175aa09e39ac559a9f05ca650a88cdb73f4304c91557b5eb1e6c",
                "md5": "2e177db485c47d9a839021c09e9bc334",
                "sha256": "92142f56c30df5ecd7742ae6082a28d411335c52c1d2e50f157d65f8dac259d2"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2e177db485c47d9a839021c09e9bc334",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1151849,
            "upload_time": "2023-10-30T16:21:44",
            "upload_time_iso_8601": "2023-10-30T16:21:44.172220Z",
            "url": "https://files.pythonhosted.org/packages/cd/21/a1095430175aa09e39ac559a9f05ca650a88cdb73f4304c91557b5eb1e6c/pycases-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a55452882c3d83b7dd653291562dc88ff4ace36077630b9bfd5a145f8dbc02d",
                "md5": "4b22b55816ef11bcccf36837feb8d553",
                "sha256": "2b8a7cb142cc704ab547713c106ae7e5f9025fa15fd08b51b02b2b5fe7de2945"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4b22b55816ef11bcccf36837feb8d553",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1150769,
            "upload_time": "2023-10-30T16:21:45",
            "upload_time_iso_8601": "2023-10-30T16:21:45.593233Z",
            "url": "https://files.pythonhosted.org/packages/3a/55/452882c3d83b7dd653291562dc88ff4ace36077630b9bfd5a145f8dbc02d/pycases-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5603f9109956aba0a34e9b1ed996f85ca924810ba3bfea52ec2b77cb36cde76",
                "md5": "d8ab6fd0140e351718287a42f0e4f808",
                "sha256": "23d611562bb50fad493ca8c42f0a03bcd8014f895f1e78821c127819b276bfee"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d8ab6fd0140e351718287a42f0e4f808",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1263600,
            "upload_time": "2023-10-30T16:21:47",
            "upload_time_iso_8601": "2023-10-30T16:21:47.501683Z",
            "url": "https://files.pythonhosted.org/packages/f5/60/3f9109956aba0a34e9b1ed996f85ca924810ba3bfea52ec2b77cb36cde76/pycases-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96eade5beab8d24befa10bd3808236499502cc40aa67b71f2c59ecfc9ba30c01",
                "md5": "56293acafe0a16448bb43869899206f5",
                "sha256": "ea45471d32b53363e0dfaccd5456318c42b92d5c1631699cd5cc8c940c84a432"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "56293acafe0a16448bb43869899206f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1323568,
            "upload_time": "2023-10-30T16:21:49",
            "upload_time_iso_8601": "2023-10-30T16:21:49.495902Z",
            "url": "https://files.pythonhosted.org/packages/96/ea/de5beab8d24befa10bd3808236499502cc40aa67b71f2c59ecfc9ba30c01/pycases-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53bc8cda585e8a1839aa0bf208ff41393cce5f896a378d6e4f513250d1836ace",
                "md5": "67517c1353e830fd94096d0416a5b9f6",
                "sha256": "1ec427585ed735ce6b6575a80d905721803af9cd5576e80e9e58f77e13626a93"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67517c1353e830fd94096d0416a5b9f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1154665,
            "upload_time": "2023-10-30T16:21:50",
            "upload_time_iso_8601": "2023-10-30T16:21:50.963907Z",
            "url": "https://files.pythonhosted.org/packages/53/bc/8cda585e8a1839aa0bf208ff41393cce5f896a378d6e4f513250d1836ace/pycases-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dfbef2fbedb43f525622cfa7b78fc174d2d4f73290c45449041c66b870c8e629",
                "md5": "cbcbd060857b3700ef7851446a4dedc2",
                "sha256": "64d4b9e93ff9251990e1c6ab09d3231fa8c9f8772551541da2fe3395342458d4"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "cbcbd060857b3700ef7851446a4dedc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1173376,
            "upload_time": "2023-10-30T16:21:52",
            "upload_time_iso_8601": "2023-10-30T16:21:52.878386Z",
            "url": "https://files.pythonhosted.org/packages/df/be/f2fbedb43f525622cfa7b78fc174d2d4f73290c45449041c66b870c8e629/pycases-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b1f8b3e0235789b0baab8b8caf3acb332bd91f38827ea60a9c1408f679570d9b",
                "md5": "59c6df6467c68ccf92bdc3810923d7f1",
                "sha256": "18c3c820ee54ee3c9db814476466d071b3ecf935f4692097a93a344c3ce2f0a5"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "59c6df6467c68ccf92bdc3810923d7f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 129976,
            "upload_time": "2023-10-30T16:21:54",
            "upload_time_iso_8601": "2023-10-30T16:21:54.359459Z",
            "url": "https://files.pythonhosted.org/packages/b1/f8/b3e0235789b0baab8b8caf3acb332bd91f38827ea60a9c1408f679570d9b/pycases-0.1.3-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2f6e715ff88fc3cf5cf2a99b24a0b6f6906040be9daa69710cebc13a9a3d4d0",
                "md5": "96ae5e30cddf92086a99fd56f165f299",
                "sha256": "1c91fd38e3b24da2d19e1c6a8215342006c3b210299f39e2fc8a87a7a5b66ef1"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "96ae5e30cddf92086a99fd56f165f299",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 134032,
            "upload_time": "2023-10-30T16:21:55",
            "upload_time_iso_8601": "2023-10-30T16:21:55.891530Z",
            "url": "https://files.pythonhosted.org/packages/f2/f6/e715ff88fc3cf5cf2a99b24a0b6f6906040be9daa69710cebc13a9a3d4d0/pycases-0.1.3-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "108549cab885a62f4abfd8b56129ef31c6967906e0114e58c97367150094e4fa",
                "md5": "8ebe896eb0cfc778e79bdc5e76282a7e",
                "sha256": "7a10135e9422f3d9dbde8b95919a0568b14ba3735c86ac2a4430d5dd08ff8381"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8ebe896eb0cfc778e79bdc5e76282a7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1151849,
            "upload_time": "2023-10-30T16:21:57",
            "upload_time_iso_8601": "2023-10-30T16:21:57.138089Z",
            "url": "https://files.pythonhosted.org/packages/10/85/49cab885a62f4abfd8b56129ef31c6967906e0114e58c97367150094e4fa/pycases-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6a224b59719ec9dd87138d6685d93556d64b1b714466f06d6fb8b6b24fae140",
                "md5": "c5ffa83b7a1089852b75155d96c56764",
                "sha256": "f69193b15b29b767745153db2799aebd4a6ce59ccaf5e8c29680401afba7ab29"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c5ffa83b7a1089852b75155d96c56764",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1150769,
            "upload_time": "2023-10-30T16:21:58",
            "upload_time_iso_8601": "2023-10-30T16:21:58.587925Z",
            "url": "https://files.pythonhosted.org/packages/a6/a2/24b59719ec9dd87138d6685d93556d64b1b714466f06d6fb8b6b24fae140/pycases-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f44a9a3bb4786e4910fc05af196ef88e8d1337dfa3b09d258555e43ee2d5d62a",
                "md5": "b701897f2e66ba279fb73b1fa95f2e9b",
                "sha256": "6c73ffc6f3a0f18653fbba40a62c8686d2d5eac73969b5fca6c579b2d2a3bdd8"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b701897f2e66ba279fb73b1fa95f2e9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1263600,
            "upload_time": "2023-10-30T16:21:59",
            "upload_time_iso_8601": "2023-10-30T16:21:59.981465Z",
            "url": "https://files.pythonhosted.org/packages/f4/4a/9a3bb4786e4910fc05af196ef88e8d1337dfa3b09d258555e43ee2d5d62a/pycases-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc8054028ed35cb6f457d5816522cd1124b86e5f54c6f415dfdbf8dd6021a2fb",
                "md5": "0ffd2b324ce8b88702c0b0ebc9d8a86e",
                "sha256": "981521ad78e4d40779107c5d7865c22295dbad53286c66297e51435d41f42e2e"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0ffd2b324ce8b88702c0b0ebc9d8a86e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1323566,
            "upload_time": "2023-10-30T16:22:01",
            "upload_time_iso_8601": "2023-10-30T16:22:01.637080Z",
            "url": "https://files.pythonhosted.org/packages/bc/80/54028ed35cb6f457d5816522cd1124b86e5f54c6f415dfdbf8dd6021a2fb/pycases-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f69c94e7cd469b8db2ae857dd0164bbe72a4ed5a727df804b118d5a0b97b09ea",
                "md5": "eef128daa67034d009e061e4927f1621",
                "sha256": "d5fdc7a07131b594cbfed7cc78afd5acf32c148d57ea411a5ce06803210c24a7"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eef128daa67034d009e061e4927f1621",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1152873,
            "upload_time": "2023-10-30T16:22:03",
            "upload_time_iso_8601": "2023-10-30T16:22:03.584765Z",
            "url": "https://files.pythonhosted.org/packages/f6/9c/94e7cd469b8db2ae857dd0164bbe72a4ed5a727df804b118d5a0b97b09ea/pycases-0.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c04e6417d8e2c096161713ddb21b1b583e073d60947469186d52e6f36350c63e",
                "md5": "38ac91a74b9c220b21cb9a61fb9cdf45",
                "sha256": "a72f50fa55d12c1898ce5ed0140e9acbf0c9455085c96841ca9cee00593e03af"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "38ac91a74b9c220b21cb9a61fb9cdf45",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1150922,
            "upload_time": "2023-10-30T16:22:05",
            "upload_time_iso_8601": "2023-10-30T16:22:05.363512Z",
            "url": "https://files.pythonhosted.org/packages/c0/4e/6417d8e2c096161713ddb21b1b583e073d60947469186d52e6f36350c63e/pycases-0.1.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17ee286e2d463ef5322ff5d7a34e74c39658efa0f1ed2beeb2f126059ef46e54",
                "md5": "2f93cce8dfafc8188e316310ed5e1ece",
                "sha256": "d5952f7dad61ef0b0438824c75d5a73449a46e4d5a6fa123e231d5e721cfd44d"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2f93cce8dfafc8188e316310ed5e1ece",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1265354,
            "upload_time": "2023-10-30T16:22:07",
            "upload_time_iso_8601": "2023-10-30T16:22:07.298883Z",
            "url": "https://files.pythonhosted.org/packages/17/ee/286e2d463ef5322ff5d7a34e74c39658efa0f1ed2beeb2f126059ef46e54/pycases-0.1.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "358f2a4b4ab47e38327b9b84a1108f0672eb6666ecb4cb73d6aa6dd4c60f09f8",
                "md5": "09298fa43f6b0acb0db000dbdb4f3d58",
                "sha256": "a786c6d07ebea5caa006655f82540a4c33433d88dc8452057c628f531dc77c24"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "09298fa43f6b0acb0db000dbdb4f3d58",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1331418,
            "upload_time": "2023-10-30T16:22:08",
            "upload_time_iso_8601": "2023-10-30T16:22:08.919989Z",
            "url": "https://files.pythonhosted.org/packages/35/8f/2a4b4ab47e38327b9b84a1108f0672eb6666ecb4cb73d6aa6dd4c60f09f8/pycases-0.1.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b3b2ba3f68b28ecb61305a3e014f26f6c61b3c3796628c941e5f8917dfb9900",
                "md5": "777cca9eb0030a14bfae8217811a7884",
                "sha256": "027fbca09f2faec2d69a321683ae180d462f388d7bb343adce735ac9ca46b983"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "777cca9eb0030a14bfae8217811a7884",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1155767,
            "upload_time": "2023-10-30T16:22:10",
            "upload_time_iso_8601": "2023-10-30T16:22:10.579766Z",
            "url": "https://files.pythonhosted.org/packages/0b/3b/2ba3f68b28ecb61305a3e014f26f6c61b3c3796628c941e5f8917dfb9900/pycases-0.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb05a518aa532ed1519a7cced548956b9cffb594e51971b512cb88f9e8e7b5a1",
                "md5": "6c82694a116539a0aebd343433806c11",
                "sha256": "4677e44bb7bb37637d2c3f5ebfe86f107312dbb721fc88ca26e8316c6ac1319d"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "6c82694a116539a0aebd343433806c11",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1174348,
            "upload_time": "2023-10-30T16:22:12",
            "upload_time_iso_8601": "2023-10-30T16:22:12.485666Z",
            "url": "https://files.pythonhosted.org/packages/cb/05/a518aa532ed1519a7cced548956b9cffb594e51971b512cb88f9e8e7b5a1/pycases-0.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f197325c1cd69afdebc4f05afe77db9a56ca21877ba5953b6ce2b9dbf24d29c",
                "md5": "3c7382db34f76e55561b79e61108d8a2",
                "sha256": "e092dd7754ff0caef03ffbaf3284759672f94dfe5ff11dbca96f7786c19159c5"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "3c7382db34f76e55561b79e61108d8a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 130621,
            "upload_time": "2023-10-30T16:22:13",
            "upload_time_iso_8601": "2023-10-30T16:22:13.979458Z",
            "url": "https://files.pythonhosted.org/packages/1f/19/7325c1cd69afdebc4f05afe77db9a56ca21877ba5953b6ce2b9dbf24d29c/pycases-0.1.3-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7dc4d21961b30b5251e16b59231efcc00ffdc85128f11cb0b386e053ebed37eb",
                "md5": "f9e933926fab2817a29cd62026c4689a",
                "sha256": "c7dab73c7c6f5eea9b110b2921f7723e3e109af93583f341edd6c625fb1416f6"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f9e933926fab2817a29cd62026c4689a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 134435,
            "upload_time": "2023-10-30T16:22:15",
            "upload_time_iso_8601": "2023-10-30T16:22:15.096156Z",
            "url": "https://files.pythonhosted.org/packages/7d/c4/d21961b30b5251e16b59231efcc00ffdc85128f11cb0b386e053ebed37eb/pycases-0.1.3-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4cabab8f5c6f34e9d4a9facf5e29cd8a5986645e822961d4c778298bb265073",
                "md5": "589828d0fb78153ece04576da721d647",
                "sha256": "8d8b655bced4ff23b79874403fb57a2ab7f7e7c783041399ef76e942bcdc10c6"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "589828d0fb78153ece04576da721d647",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1152676,
            "upload_time": "2023-10-30T16:22:16",
            "upload_time_iso_8601": "2023-10-30T16:22:16.278952Z",
            "url": "https://files.pythonhosted.org/packages/f4/ca/bab8f5c6f34e9d4a9facf5e29cd8a5986645e822961d4c778298bb265073/pycases-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97eaa4d91ae21c40e5e7211acae9fa3c2df935c3550cd30d90d5bf52929ad2a4",
                "md5": "b8f8cde62da083906f8720c3fb6743a6",
                "sha256": "7e240683dc492db2b7e43067bae37df93b4b54500ed4636712ade6a22bb30357"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b8f8cde62da083906f8720c3fb6743a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1150945,
            "upload_time": "2023-10-30T16:22:17",
            "upload_time_iso_8601": "2023-10-30T16:22:17.699440Z",
            "url": "https://files.pythonhosted.org/packages/97/ea/a4d91ae21c40e5e7211acae9fa3c2df935c3550cd30d90d5bf52929ad2a4/pycases-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d478e439df8ac338d1134406f92778bdd9e94988dff1e8f37295443399dbbdf3",
                "md5": "e0d7bb64b6b5b06e3a39c6fe752bcd5a",
                "sha256": "a675d8318f026644fa86d06de4f998c63250e1e0752f9049a37296f6b6959e94"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e0d7bb64b6b5b06e3a39c6fe752bcd5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1266119,
            "upload_time": "2023-10-30T16:22:19",
            "upload_time_iso_8601": "2023-10-30T16:22:19.342564Z",
            "url": "https://files.pythonhosted.org/packages/d4/78/e439df8ac338d1134406f92778bdd9e94988dff1e8f37295443399dbbdf3/pycases-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0330372683ac647929e866003b64efa1768ad3d58e6e0e3076db37e63c0f3706",
                "md5": "bb9a519c8a2cdccc289cdcc1f8f42a14",
                "sha256": "308a986789a70faf6a4bfd779c2e93209a142548cc8bce35b7c645b6e48a13c2"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bb9a519c8a2cdccc289cdcc1f8f42a14",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1331574,
            "upload_time": "2023-10-30T16:22:20",
            "upload_time_iso_8601": "2023-10-30T16:22:20.756734Z",
            "url": "https://files.pythonhosted.org/packages/03/30/372683ac647929e866003b64efa1768ad3d58e6e0e3076db37e63c0f3706/pycases-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dbb5d28dd43339c2163402ef1c452c2a00ae2d32b4e8c09d56ead7b77d24edbd",
                "md5": "8831f73dfeed5b2d170e790aaa24b912",
                "sha256": "a54dfbdd17f40526e46014994b932b727f10e1a91082410f33be7e9328ca135f"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8831f73dfeed5b2d170e790aaa24b912",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1155643,
            "upload_time": "2023-10-30T16:22:22",
            "upload_time_iso_8601": "2023-10-30T16:22:22.619503Z",
            "url": "https://files.pythonhosted.org/packages/db/b5/d28dd43339c2163402ef1c452c2a00ae2d32b4e8c09d56ead7b77d24edbd/pycases-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "241b9f4aed8c327700892eb901227ea4b02074d1c085791b16d4211994ea062f",
                "md5": "f6423d1414f2835deed5bb0658aa6edb",
                "sha256": "f51af1f72ecca1b5770cac9c0f6b0ca0c88034f501b6425dcc0f5ec9f998d8bb"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "f6423d1414f2835deed5bb0658aa6edb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1174476,
            "upload_time": "2023-10-30T16:22:24",
            "upload_time_iso_8601": "2023-10-30T16:22:24.479595Z",
            "url": "https://files.pythonhosted.org/packages/24/1b/9f4aed8c327700892eb901227ea4b02074d1c085791b16d4211994ea062f/pycases-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e49e84f51c9ec3fa5b83c4a1264422788cd32eb21eabb021f42e435ec71feb55",
                "md5": "1dc827648e8d96190a149ee11cff03d6",
                "sha256": "0a4db8532c8569a1cdbbfb6e42424bab20657ce4cd60ea8cd43edc3968e3d362"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "1dc827648e8d96190a149ee11cff03d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 130673,
            "upload_time": "2023-10-30T16:22:26",
            "upload_time_iso_8601": "2023-10-30T16:22:26.351036Z",
            "url": "https://files.pythonhosted.org/packages/e4/9e/84f51c9ec3fa5b83c4a1264422788cd32eb21eabb021f42e435ec71feb55/pycases-0.1.3-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c26ae1ef57e4055e5878b772c41fee7da769139515ef2eba22b4c88d03628bd",
                "md5": "a122fbf4e5974751fedc6f7386f0bbae",
                "sha256": "45a0b18667af57874adee90841b1958d46d47c9ce71b442e9ed890e8ed50a4ab"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a122fbf4e5974751fedc6f7386f0bbae",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 134300,
            "upload_time": "2023-10-30T16:22:27",
            "upload_time_iso_8601": "2023-10-30T16:22:27.663892Z",
            "url": "https://files.pythonhosted.org/packages/4c/26/ae1ef57e4055e5878b772c41fee7da769139515ef2eba22b4c88d03628bd/pycases-0.1.3-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78d0d9e6697433dff8aa9c767f3084d9e625645f23abf465fc13fbd1d339cc65",
                "md5": "cf62e0811fc896f3fdd19c21369b071c",
                "sha256": "9b3606eb605d8ecb6a242ccbd1c790c98fde2c0be5fa06c6db8bc56f76f26f6f"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cf62e0811fc896f3fdd19c21369b071c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1152670,
            "upload_time": "2023-10-30T16:22:28",
            "upload_time_iso_8601": "2023-10-30T16:22:28.864169Z",
            "url": "https://files.pythonhosted.org/packages/78/d0/d9e6697433dff8aa9c767f3084d9e625645f23abf465fc13fbd1d339cc65/pycases-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d68d5947f0f02913104be1b3b460c19d96e91efedf6afc7fbedf6b9f10e11e3",
                "md5": "f70b6bfb702d997c87a5beaf177bcf31",
                "sha256": "7c8d552b884122ab6b355a458e398d7db0e7d49d0eec7ba32d621976751481f6"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f70b6bfb702d997c87a5beaf177bcf31",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1151112,
            "upload_time": "2023-10-30T16:22:30",
            "upload_time_iso_8601": "2023-10-30T16:22:30.462740Z",
            "url": "https://files.pythonhosted.org/packages/6d/68/d5947f0f02913104be1b3b460c19d96e91efedf6afc7fbedf6b9f10e11e3/pycases-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29d3756a2e23c83a379fce18352f056bd80ca3933332f4d4fa509bccde9fe15c",
                "md5": "6d2c05e463205320196e1fe1f7bca41e",
                "sha256": "0974b169eb5e1dd87e244ce1b569d764afc232025e55591c190e00721d9942ce"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6d2c05e463205320196e1fe1f7bca41e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1264347,
            "upload_time": "2023-10-30T16:22:31",
            "upload_time_iso_8601": "2023-10-30T16:22:31.921316Z",
            "url": "https://files.pythonhosted.org/packages/29/d3/756a2e23c83a379fce18352f056bd80ca3933332f4d4fa509bccde9fe15c/pycases-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de4a253dd26699fb453f81c514926f3411be1dc5d60136d7282c4f2993347c12",
                "md5": "d29a9b46d47e7a33de73b0a75b51a6d3",
                "sha256": "c7a259c2213a750227db5c8770d0a00fe1df637bf6f7d12725f1e5ad4b2d8bab"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d29a9b46d47e7a33de73b0a75b51a6d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1330173,
            "upload_time": "2023-10-30T16:22:34",
            "upload_time_iso_8601": "2023-10-30T16:22:34.163807Z",
            "url": "https://files.pythonhosted.org/packages/de/4a/253dd26699fb453f81c514926f3411be1dc5d60136d7282c4f2993347c12/pycases-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98ed265710210c977766038e6c75fc0fd95885dbaf007b75bd1c61339fe67fb4",
                "md5": "129b7fd3cceea4a00ac1d6f046d9303c",
                "sha256": "94ee06d9213857ffd26025b2153a60cf6db21276e07569af79006be3c189df5b"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "129b7fd3cceea4a00ac1d6f046d9303c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1155585,
            "upload_time": "2023-10-30T16:22:35",
            "upload_time_iso_8601": "2023-10-30T16:22:35.828132Z",
            "url": "https://files.pythonhosted.org/packages/98/ed/265710210c977766038e6c75fc0fd95885dbaf007b75bd1c61339fe67fb4/pycases-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97e796bfa9739a81d966054fa8fd5249fc54c396b9d2511683ffd53012ff7054",
                "md5": "405de8b3640fe30c03be04f78144935e",
                "sha256": "96e0e02225b43c2775f76118ae5eeac96132ce376e4ce06c77d43fd7b7d71e86"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "405de8b3640fe30c03be04f78144935e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1174385,
            "upload_time": "2023-10-30T16:22:37",
            "upload_time_iso_8601": "2023-10-30T16:22:37.630834Z",
            "url": "https://files.pythonhosted.org/packages/97/e7/96bfa9739a81d966054fa8fd5249fc54c396b9d2511683ffd53012ff7054/pycases-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bf3eec247671dc29b380bcfc24ebbeed00bf654ed01af6ab46c7d5c77451e34",
                "md5": "b72fca048c789bd87df53d2e61ad84c9",
                "sha256": "a0d8e7b513a84d2246d15bd934b86c2e6a7dda38901e05e3a1f0f2fa69bbb590"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b72fca048c789bd87df53d2e61ad84c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 130879,
            "upload_time": "2023-10-30T16:22:39",
            "upload_time_iso_8601": "2023-10-30T16:22:39.084067Z",
            "url": "https://files.pythonhosted.org/packages/4b/f3/eec247671dc29b380bcfc24ebbeed00bf654ed01af6ab46c7d5c77451e34/pycases-0.1.3-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5640a36f30a07389d682aa49e0c8a36cea7475ed608610bcf02600985a8f34db",
                "md5": "e50d45adfef6555f037be29aeee984fa",
                "sha256": "84d8ecf82f8668825b81b6f4a0f66a59b0585c9c321e24b3e55cc2df98e190e1"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e50d45adfef6555f037be29aeee984fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 134337,
            "upload_time": "2023-10-30T16:22:40",
            "upload_time_iso_8601": "2023-10-30T16:22:40.211553Z",
            "url": "https://files.pythonhosted.org/packages/56/40/a36f30a07389d682aa49e0c8a36cea7475ed608610bcf02600985a8f34db/pycases-0.1.3-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4201bc1294b1c479061c4aa9a1d5ce61d7c25d8b27ad955124f6ef834d8a3c44",
                "md5": "4e1867ffa2cecef40c3ae10496777ae3",
                "sha256": "4f56278ca8958a10361133510910e109beaf47021a4e5fa75663a3b23ed02ac1"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4e1867ffa2cecef40c3ae10496777ae3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1152835,
            "upload_time": "2023-10-30T16:22:41",
            "upload_time_iso_8601": "2023-10-30T16:22:41.976021Z",
            "url": "https://files.pythonhosted.org/packages/42/01/bc1294b1c479061c4aa9a1d5ce61d7c25d8b27ad955124f6ef834d8a3c44/pycases-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb5fdd3adb83c255789ac48228394a9f4e1a41bd59e1dae654b5d8e95f5955f2",
                "md5": "86b290fed07497838b44b736417fdd73",
                "sha256": "eadac0cc764b3302f699da32a052f2d687e43ee95ff358495bc6bf279d5eaa10"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "86b290fed07497838b44b736417fdd73",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1151588,
            "upload_time": "2023-10-30T16:22:43",
            "upload_time_iso_8601": "2023-10-30T16:22:43.517499Z",
            "url": "https://files.pythonhosted.org/packages/fb/5f/dd3adb83c255789ac48228394a9f4e1a41bd59e1dae654b5d8e95f5955f2/pycases-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60403fd2913e1f24941bed6504d709c9bfef2a4ba21df28ff55f72a27025e204",
                "md5": "2b0d64729735463d8e40c09072685998",
                "sha256": "2fbeeacf481caa5a89ed39f8f1df3e843d8268f9e57d6b6066ad5a92e7a991fa"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2b0d64729735463d8e40c09072685998",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1268799,
            "upload_time": "2023-10-30T16:22:45",
            "upload_time_iso_8601": "2023-10-30T16:22:45.200311Z",
            "url": "https://files.pythonhosted.org/packages/60/40/3fd2913e1f24941bed6504d709c9bfef2a4ba21df28ff55f72a27025e204/pycases-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd067c5f6d6ee8b728cfbe66cff92d28bcf98935a8256ae466d72a331c013a46",
                "md5": "51425c997c04daf2cc719278b969d726",
                "sha256": "995b7c8eb29b1643344c7f8dbebf104840fd4f928da6deb0a274a299708ec284"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "51425c997c04daf2cc719278b969d726",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1330871,
            "upload_time": "2023-10-30T16:22:46",
            "upload_time_iso_8601": "2023-10-30T16:22:46.869215Z",
            "url": "https://files.pythonhosted.org/packages/bd/06/7c5f6d6ee8b728cfbe66cff92d28bcf98935a8256ae466d72a331c013a46/pycases-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3497734b13122554555c8968acefc156eb019332662c25a72938efbe70f883a6",
                "md5": "76a2f1d47e4ce9d927ca68e68b30dd0d",
                "sha256": "21e1669450a88a3bbc0a0e2f98f0f8d347fffe7f741365e734997d8587ded918"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76a2f1d47e4ce9d927ca68e68b30dd0d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1159109,
            "upload_time": "2023-10-30T16:22:48",
            "upload_time_iso_8601": "2023-10-30T16:22:48.316673Z",
            "url": "https://files.pythonhosted.org/packages/34/97/734b13122554555c8968acefc156eb019332662c25a72938efbe70f883a6/pycases-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc4d6484cd88f2dc81022f302ca1a1e7b8ed2f83af6886cfebd4d19662e52925",
                "md5": "975136a3770ecb093d45201c001e95dc",
                "sha256": "967ef06cf3b1e837973badef55248928192bcdb5789efa746c8d270d4a26cf65"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "975136a3770ecb093d45201c001e95dc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1174314,
            "upload_time": "2023-10-30T16:22:49",
            "upload_time_iso_8601": "2023-10-30T16:22:49.731467Z",
            "url": "https://files.pythonhosted.org/packages/bc/4d/6484cd88f2dc81022f302ca1a1e7b8ed2f83af6886cfebd4d19662e52925/pycases-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82ed022adeb3f67e87c936fb58e1603fb90abf0cb6555ca80312a0e3e303980f",
                "md5": "6cac4de97929b0e08fc97011b4c77964",
                "sha256": "de89382ab175527e1a0be3f004458f7a0cd7bab4109d793fb71be2636a198988"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6cac4de97929b0e08fc97011b4c77964",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1155295,
            "upload_time": "2023-10-30T16:22:51",
            "upload_time_iso_8601": "2023-10-30T16:22:51.314034Z",
            "url": "https://files.pythonhosted.org/packages/82/ed/022adeb3f67e87c936fb58e1603fb90abf0cb6555ca80312a0e3e303980f/pycases-0.1.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7684808d2cd729eef905e86d19a2998a31112296302954858f64073a5287dd70",
                "md5": "493320e74d376d49d60ce73df5ca5738",
                "sha256": "b3afcf6d5f325f63532a2d4683cde34c37d27c26cef88544b1d551a024246fa8"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "493320e74d376d49d60ce73df5ca5738",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1154324,
            "upload_time": "2023-10-30T16:22:53",
            "upload_time_iso_8601": "2023-10-30T16:22:53.653827Z",
            "url": "https://files.pythonhosted.org/packages/76/84/808d2cd729eef905e86d19a2998a31112296302954858f64073a5287dd70/pycases-0.1.3-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d96757c502525e293557e108c7320100b12e71deea6a0b674f461ad6f6096586",
                "md5": "ba8f437e127c3578df29c590328e711b",
                "sha256": "47318a107357b45c8cb7d17dfa071a52e3ccb3b3d2a6e267c0ebf29c1dd86391"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ba8f437e127c3578df29c590328e711b",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1261319,
            "upload_time": "2023-10-30T16:22:55",
            "upload_time_iso_8601": "2023-10-30T16:22:55.563593Z",
            "url": "https://files.pythonhosted.org/packages/d9/67/57c502525e293557e108c7320100b12e71deea6a0b674f461ad6f6096586/pycases-0.1.3-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17113b015aa65de06dca4afd4d7543b5a1e1c14651e2321b96eb54145ca26461",
                "md5": "30f731f4de9f187afd3dca90db2c8279",
                "sha256": "3d5a262dc351501af3411203cb1f2abce18182fc219ca5abd9d2796052af031d"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "30f731f4de9f187afd3dca90db2c8279",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1333417,
            "upload_time": "2023-10-30T16:22:57",
            "upload_time_iso_8601": "2023-10-30T16:22:57.951203Z",
            "url": "https://files.pythonhosted.org/packages/17/11/3b015aa65de06dca4afd4d7543b5a1e1c14651e2321b96eb54145ca26461/pycases-0.1.3-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51d792d002111f1c4c4ba3d6bbfddaacd7dd165112e76c64670a73d9b14cb5ab",
                "md5": "47a453d4d3ba11935f84534f7a149d21",
                "sha256": "1345ea8ad2539ab99678fe6c5aa31483ee34be95b228e78c12289db55345d577"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47a453d4d3ba11935f84534f7a149d21",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1159215,
            "upload_time": "2023-10-30T16:22:59",
            "upload_time_iso_8601": "2023-10-30T16:22:59.932077Z",
            "url": "https://files.pythonhosted.org/packages/51/d7/92d002111f1c4c4ba3d6bbfddaacd7dd165112e76c64670a73d9b14cb5ab/pycases-0.1.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0aa041d3095a7e2fcbbb32176a96bfc1c1c39b27bc0d6c7f155dd3d94dfb6664",
                "md5": "b92679ea442a09e8f6ce249d35eddabf",
                "sha256": "527bf4312e43395f5088b10c57bd2946be1a7c3d9989a87bc564ddbf391ec9ff"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b92679ea442a09e8f6ce249d35eddabf",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1176256,
            "upload_time": "2023-10-30T16:23:01",
            "upload_time_iso_8601": "2023-10-30T16:23:01.984076Z",
            "url": "https://files.pythonhosted.org/packages/0a/a0/41d3095a7e2fcbbb32176a96bfc1c1c39b27bc0d6c7f155dd3d94dfb6664/pycases-0.1.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5aa971ccfc44b5bf6700bd0bbf9f980d2590a8a5b9089cd354d6faaf09b6ce9c",
                "md5": "4f6751ffe608863e50e374603a6b5649",
                "sha256": "76f4bb282bb63d92a17738bf3d9b655433007c74d7ea53b0380d17b23e9f77fe"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4f6751ffe608863e50e374603a6b5649",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1152212,
            "upload_time": "2023-10-30T16:23:03",
            "upload_time_iso_8601": "2023-10-30T16:23:03.946632Z",
            "url": "https://files.pythonhosted.org/packages/5a/a9/71ccfc44b5bf6700bd0bbf9f980d2590a8a5b9089cd354d6faaf09b6ce9c/pycases-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ece167a9a9e74fd3f682413573e2e6c41eaec7335f54346f0dd8e79e948ea000",
                "md5": "d9f5b01f0bedb919e2cc6e1ff8eef0f3",
                "sha256": "13ec1ba978c95039983d6ac252121cd7e148c3106e60d1998f1c36c5e5cf026f"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d9f5b01f0bedb919e2cc6e1ff8eef0f3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1151113,
            "upload_time": "2023-10-30T16:23:05",
            "upload_time_iso_8601": "2023-10-30T16:23:05.990906Z",
            "url": "https://files.pythonhosted.org/packages/ec/e1/67a9a9e74fd3f682413573e2e6c41eaec7335f54346f0dd8e79e948ea000/pycases-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de2eeaea4b12516bba9d0aae4d92d759db114c56a92f0a149d946dee78e73238",
                "md5": "c89761aef931dbef974c35132ecec77e",
                "sha256": "9f2438b2f831cf0b92e9e3baffe3c7485ecf51afdcf4602271f386369f582334"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c89761aef931dbef974c35132ecec77e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1265320,
            "upload_time": "2023-10-30T16:23:08",
            "upload_time_iso_8601": "2023-10-30T16:23:08.365645Z",
            "url": "https://files.pythonhosted.org/packages/de/2e/eaea4b12516bba9d0aae4d92d759db114c56a92f0a149d946dee78e73238/pycases-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e47d8039ed22ec5006dc6e75d30508a2e0f78139fe768962c16847feda32b7ca",
                "md5": "82b3d2e55f50ad281c98e9f2ba524377",
                "sha256": "40f1bbf2b61d5a9c261a6b97091b30a78889976d9eac0a13ce8631e373326da5"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "82b3d2e55f50ad281c98e9f2ba524377",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1330391,
            "upload_time": "2023-10-30T16:23:10",
            "upload_time_iso_8601": "2023-10-30T16:23:10.077913Z",
            "url": "https://files.pythonhosted.org/packages/e4/7d/8039ed22ec5006dc6e75d30508a2e0f78139fe768962c16847feda32b7ca/pycases-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e91be4671f34113064a00ff0919e36a3370b63b02bf195973f490539c03fef35",
                "md5": "b826dd9b228a3db71b65e3a20ba4266c",
                "sha256": "0f1196786b922c72196720d892f493b70bbcacdcfc244658200b8e50118801ae"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b826dd9b228a3db71b65e3a20ba4266c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1155455,
            "upload_time": "2023-10-30T16:23:12",
            "upload_time_iso_8601": "2023-10-30T16:23:12.155655Z",
            "url": "https://files.pythonhosted.org/packages/e9/1b/e4671f34113064a00ff0919e36a3370b63b02bf195973f490539c03fef35/pycases-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6cc250ab4717ce23360886a0426e098ec9bb5e9f7b51554444f75b745a36edb",
                "md5": "b1552984941c5c859d864be07ec18bd8",
                "sha256": "4075a65803a4ce7bed2bf724ed7a8937dccff10b6c2cdd5a38257c07b171a1b8"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b1552984941c5c859d864be07ec18bd8",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1173967,
            "upload_time": "2023-10-30T16:23:15",
            "upload_time_iso_8601": "2023-10-30T16:23:15.610769Z",
            "url": "https://files.pythonhosted.org/packages/b6/cc/250ab4717ce23360886a0426e098ec9bb5e9f7b51554444f75b745a36edb/pycases-0.1.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a529d068b9761ee3b6c7009632c12728af227eb722c1807a7009d4cb51e695d",
                "md5": "88160895631481718d760266338bccdb",
                "sha256": "6f7c007aee7f023f56ec8cbc051dc334601eab38ec3da14d4c45315ebbab523f"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "88160895631481718d760266338bccdb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1152729,
            "upload_time": "2023-10-30T16:23:17",
            "upload_time_iso_8601": "2023-10-30T16:23:17.240436Z",
            "url": "https://files.pythonhosted.org/packages/3a/52/9d068b9761ee3b6c7009632c12728af227eb722c1807a7009d4cb51e695d/pycases-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ecd59e45a2b8ba5b674d86049030c42efc9419c23910b9ce9abb00d17d9e9fe4",
                "md5": "ff357fa0a70aca620eaaa5be6aa331e7",
                "sha256": "f214aaf27a78a10f9bc4db85ca82c7b6fc4055402049f28903f0dd5606e0071c"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ff357fa0a70aca620eaaa5be6aa331e7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1151373,
            "upload_time": "2023-10-30T16:23:19",
            "upload_time_iso_8601": "2023-10-30T16:23:19.224842Z",
            "url": "https://files.pythonhosted.org/packages/ec/d5/9e45a2b8ba5b674d86049030c42efc9419c23910b9ce9abb00d17d9e9fe4/pycases-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70cc831b2abfb45d60dadc9eebeff537cc2781d90551a87e39ef6c37e856747c",
                "md5": "a378f24ef2c52db73c9d3fe3eabd68c0",
                "sha256": "3d3fa26ddada245ce8411403626eb008c2fe7a996f71a034b1328d6bcc32d4d2"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a378f24ef2c52db73c9d3fe3eabd68c0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1268711,
            "upload_time": "2023-10-30T16:23:21",
            "upload_time_iso_8601": "2023-10-30T16:23:21.412434Z",
            "url": "https://files.pythonhosted.org/packages/70/cc/831b2abfb45d60dadc9eebeff537cc2781d90551a87e39ef6c37e856747c/pycases-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "736e53d251cfd87c313b31d7b5c3930e9cf69395d711ec9d2d3ddce11899a674",
                "md5": "4fcebd242cf79430ec049994a949e87d",
                "sha256": "f9983995e8f3c17b39a1a231ad93351c1f8f8c92b9115cbba1b47e6450984c3d"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4fcebd242cf79430ec049994a949e87d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1330756,
            "upload_time": "2023-10-30T16:23:23",
            "upload_time_iso_8601": "2023-10-30T16:23:23.202455Z",
            "url": "https://files.pythonhosted.org/packages/73/6e/53d251cfd87c313b31d7b5c3930e9cf69395d711ec9d2d3ddce11899a674/pycases-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e042c2f7213e07b35ba5dd82a616920873180c406462a51c7712f2dec97ce32a",
                "md5": "293072d5f633b099e4204892469dac1b",
                "sha256": "2f1eecf4d6c2b1d798fe742a9f54c3c80661084298be6283b9491024a2328871"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "293072d5f633b099e4204892469dac1b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1158958,
            "upload_time": "2023-10-30T16:23:25",
            "upload_time_iso_8601": "2023-10-30T16:23:25.171581Z",
            "url": "https://files.pythonhosted.org/packages/e0/42/c2f7213e07b35ba5dd82a616920873180c406462a51c7712f2dec97ce32a/pycases-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2aa7553e22979def5b832894821770aa23787c04fa5adbc728510a0a507ca75b",
                "md5": "3e7469ae2b558f55522cf94b4357b3b8",
                "sha256": "29b636ce324e0951f2e9dfa5915048a60c36ea0f26254df36bbeef89c1f35ff1"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3e7469ae2b558f55522cf94b4357b3b8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1174234,
            "upload_time": "2023-10-30T16:23:26",
            "upload_time_iso_8601": "2023-10-30T16:23:26.586967Z",
            "url": "https://files.pythonhosted.org/packages/2a/a7/553e22979def5b832894821770aa23787c04fa5adbc728510a0a507ca75b/pycases-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72ecb540a46904e403acc200ddcd607a6e825e846ffa6d86269408daeac4d770",
                "md5": "4c0c4c1e0c60e0df3b74786ab5caa083",
                "sha256": "a166936f1087905fc49b2218d4666698d22852088570ccd47a00e3d78fa6771c"
            },
            "downloads": -1,
            "filename": "pycases-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "4c0c4c1e0c60e0df3b74786ab5caa083",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 7602,
            "upload_time": "2023-10-30T16:23:27",
            "upload_time_iso_8601": "2023-10-30T16:23:27.959467Z",
            "url": "https://files.pythonhosted.org/packages/72/ec/b540a46904e403acc200ddcd607a6e825e846ffa6d86269408daeac4d770/pycases-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-30 16:23:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rossmacarthur",
    "github_project": "pycases",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pycases"
}
        
Elapsed time: 0.14479s