python-calamine


Namepython-calamine JSON
Version 0.3.1 PyPI version JSON
download
home_pagehttps://github.com/dimastbk/python-calamine
SummaryPython binding for Rust's library for reading excel and odf file - calamine
upload_time2024-11-06 06:24:39
maintainerNone
docs_urlNone
authorDmitriy <dimastbk@proton.me>
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # python-calamine
[![PyPI - Version](https://img.shields.io/pypi/v/python-calamine)](https://pypi.org/project/python-calamine/)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/python-calamine.svg)](https://anaconda.org/conda-forge/python-calamine)
![Python Version from PEP 621 TOML](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2Fdimastbk%2Fpython-calamine%2Fmaster%2Fpyproject.toml)


Python binding for beautiful Rust's library for reading excel and odf file - [calamine](https://github.com/tafia/calamine).

### Is used
* [calamine](https://github.com/tafia/calamine)
* [pyo3](https://github.com/PyO3/pyo3)
* [maturin](https://github.com/PyO3/maturin)

### Installation
Pypi:
```
pip install python-calamine
```
Conda:
```
conda install -c conda-forge python-calamine
```

### Example
```python
from python_calamine import CalamineWorkbook

workbook = CalamineWorkbook.from_path("file.xlsx")
workbook.sheet_names
# ["Sheet1", "Sheet2"]

workbook.get_sheet_by_name("Sheet1").to_python()
# [
# ["1",  "2",  "3",  "4",  "5",  "6",  "7"],
# ["1",  "2",  "3",  "4",  "5",  "6",  "7"],
# ["1",  "2",  "3",  "4",  "5",  "6",  "7"],
# ]
```

By default, calamine skips empty rows/cols before data. For suppress this behaviour, set `skip_empty_area` to `False`.
```python
from python_calamine import CalamineWorkbook

workbook = CalamineWorkbook.from_path("file.xlsx").get_sheet_by_name("Sheet1").to_python(skip_empty_area=False)
# [
# [",  ",  ",  ",  ",  ",  "],
# ["1",  "2",  "3",  "4",  "5",  "6",  "7"],
# ["1",  "2",  "3",  "4",  "5",  "6",  "7"],
# ["1",  "2",  "3",  "4",  "5",  "6",  "7"],
# ]
```

Also, you can use monkeypatch for pandas for use this library as engine in `read_excel()` (only pandas 2.0 and 2.1 are supported).
Pandas 2.2 and above have built-in support of python-calamine.
```python
from pandas import read_excel
from python_calamine.pandas import pandas_monkeypatch


pandas_monkeypatch()

read_excel("file.xlsx", engine="calamine")
#            1   2   3   4   5   6   7
# 0          1   2   3   4   5   6   7
# 1          1   2   3   4   5   6   7
```

Also, you can find additional examples in [tests](https://github.com/dimastbk/python-calamine/blob/master/tests/test_base.py).


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/dimastbk/python-calamine",
    "name": "python-calamine",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Dmitriy <dimastbk@proton.me>",
    "author_email": "Dmitriy <dimastbk@proton.me>",
    "download_url": "https://files.pythonhosted.org/packages/29/78/805948f9ae23ce609522be89a402d5bb379c08a8fa8768f136c4e8c70439/python_calamine-0.3.1.tar.gz",
    "platform": null,
    "description": "# python-calamine\n[![PyPI - Version](https://img.shields.io/pypi/v/python-calamine)](https://pypi.org/project/python-calamine/)\n[![Conda Version](https://img.shields.io/conda/vn/conda-forge/python-calamine.svg)](https://anaconda.org/conda-forge/python-calamine)\n![Python Version from PEP 621 TOML](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2Fdimastbk%2Fpython-calamine%2Fmaster%2Fpyproject.toml)\n\n\nPython binding for beautiful Rust's library for reading excel and odf file - [calamine](https://github.com/tafia/calamine).\n\n### Is used\n* [calamine](https://github.com/tafia/calamine)\n* [pyo3](https://github.com/PyO3/pyo3)\n* [maturin](https://github.com/PyO3/maturin)\n\n### Installation\nPypi:\n```\npip install python-calamine\n```\nConda:\n```\nconda install -c conda-forge python-calamine\n```\n\n### Example\n```python\nfrom python_calamine import CalamineWorkbook\n\nworkbook = CalamineWorkbook.from_path(\"file.xlsx\")\nworkbook.sheet_names\n# [\"Sheet1\", \"Sheet2\"]\n\nworkbook.get_sheet_by_name(\"Sheet1\").to_python()\n# [\n# [\"1\",  \"2\",  \"3\",  \"4\",  \"5\",  \"6\",  \"7\"],\n# [\"1\",  \"2\",  \"3\",  \"4\",  \"5\",  \"6\",  \"7\"],\n# [\"1\",  \"2\",  \"3\",  \"4\",  \"5\",  \"6\",  \"7\"],\n# ]\n```\n\nBy default, calamine skips empty rows/cols before data. For suppress this behaviour, set `skip_empty_area` to `False`.\n```python\nfrom python_calamine import CalamineWorkbook\n\nworkbook = CalamineWorkbook.from_path(\"file.xlsx\").get_sheet_by_name(\"Sheet1\").to_python(skip_empty_area=False)\n# [\n# [\",  \",  \",  \",  \",  \",  \"],\n# [\"1\",  \"2\",  \"3\",  \"4\",  \"5\",  \"6\",  \"7\"],\n# [\"1\",  \"2\",  \"3\",  \"4\",  \"5\",  \"6\",  \"7\"],\n# [\"1\",  \"2\",  \"3\",  \"4\",  \"5\",  \"6\",  \"7\"],\n# ]\n```\n\nAlso, you can use monkeypatch for pandas for use this library as engine in `read_excel()` (only pandas 2.0 and 2.1 are supported).\nPandas 2.2 and above have built-in support of python-calamine.\n```python\nfrom pandas import read_excel\nfrom python_calamine.pandas import pandas_monkeypatch\n\n\npandas_monkeypatch()\n\nread_excel(\"file.xlsx\", engine=\"calamine\")\n#            1   2   3   4   5   6   7\n# 0          1   2   3   4   5   6   7\n# 1          1   2   3   4   5   6   7\n```\n\nAlso, you can find additional examples in [tests](https://github.com/dimastbk/python-calamine/blob/master/tests/test_base.py).\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python binding for Rust's library for reading excel and odf file - calamine",
    "version": "0.3.1",
    "project_urls": {
        "Homepage": "https://github.com/dimastbk/python-calamine",
        "Source Code": "https://github.com/dimastbk/python-calamine"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfe2426307ce173dac9ec7c048e9c52ea4962940d0a74fd22689e49d7d346303",
                "md5": "992b81a8eaf613a09ee19bb839d58766",
                "sha256": "2822c39ad52f289732981cee59b4985388624b54e124e41436bb37565ed32f15"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "992b81a8eaf613a09ee19bb839d58766",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 790690,
            "upload_time": "2024-11-06T06:21:42",
            "upload_time_iso_8601": "2024-11-06T06:21:42.963193Z",
            "url": "https://files.pythonhosted.org/packages/df/e2/426307ce173dac9ec7c048e9c52ea4962940d0a74fd22689e49d7d346303/python_calamine-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd8ddd086992d63879917c6a2d9888ea3975875dfff7995665cd915b68b35609",
                "md5": "16908549b3fd77b5fd9c619956d6135c",
                "sha256": "f2786751cfe4e81f9170b843741b39a325cf9f49db8d51fc3cd16d6139e0ac60"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "16908549b3fd77b5fd9c619956d6135c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 779151,
            "upload_time": "2024-11-06T06:21:44",
            "upload_time_iso_8601": "2024-11-06T06:21:44.999900Z",
            "url": "https://files.pythonhosted.org/packages/cd/8d/dd086992d63879917c6a2d9888ea3975875dfff7995665cd915b68b35609/python_calamine-0.3.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78a27b9f08692d47806633112824515f2f9aa1fbc55c8e643147331f00d16667",
                "md5": "72367186ed9f90ed3aa26992bfbde1aa",
                "sha256": "086fc992232207164277fd0f1e463f59097637c849470890f903037fde4bf02d"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "72367186ed9f90ed3aa26992bfbde1aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 849142,
            "upload_time": "2024-11-06T06:21:46",
            "upload_time_iso_8601": "2024-11-06T06:21:46.806507Z",
            "url": "https://files.pythonhosted.org/packages/78/a2/7b9f08692d47806633112824515f2f9aa1fbc55c8e643147331f00d16667/python_calamine-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f452fdea6ba516bfc17d7ce6c8cbb76f7940950a7b8222abdb5f64e2da1774bd",
                "md5": "0a4237507601a81d14589a2567410207",
                "sha256": "3f42795617d23bb87b16761286c07e8407a9044823c972da5dea922f71a98445"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0a4237507601a81d14589a2567410207",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 852732,
            "upload_time": "2024-11-06T06:21:48",
            "upload_time_iso_8601": "2024-11-06T06:21:48.542841Z",
            "url": "https://files.pythonhosted.org/packages/f4/52/fdea6ba516bfc17d7ce6c8cbb76f7940950a7b8222abdb5f64e2da1774bd/python_calamine-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7c79ecc6b83e6a5dcfaef8912dececa2e11df8fca864c2630226e3cdaab1c6b",
                "md5": "ca54d90bf1173c14ce2c4b913ec964c2",
                "sha256": "c8dc27a41ebca543e5a0181b3edc223b83839c49063589583927de922887898a"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ca54d90bf1173c14ce2c4b913ec964c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 918176,
            "upload_time": "2024-11-06T06:21:50",
            "upload_time_iso_8601": "2024-11-06T06:21:50.392970Z",
            "url": "https://files.pythonhosted.org/packages/d7/c7/9ecc6b83e6a5dcfaef8912dececa2e11df8fca864c2630226e3cdaab1c6b/python_calamine-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "059626c2233fa19aa1e273bb604d2770102fce869384bece2e541732a5d24af6",
                "md5": "56c9076550789dac7330a33ddb55e512",
                "sha256": "400fd6e650bfedf1a9d79821e32f13aceb0362bbdaa2f37611177eb09cf77056"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "56c9076550789dac7330a33ddb55e512",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 952008,
            "upload_time": "2024-11-06T06:21:52",
            "upload_time_iso_8601": "2024-11-06T06:21:52.289918Z",
            "url": "https://files.pythonhosted.org/packages/05/96/26c2233fa19aa1e273bb604d2770102fce869384bece2e541732a5d24af6/python_calamine-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0eddd305d860af1db06f037d5b6127835b053ba74c31d4c78bb289ae8c740914",
                "md5": "ab897763e5d5debf69004fc1c123d04a",
                "sha256": "a6aec96ea676ec41789a6348137895b3827745d135c3c7f37769f75d417fb867"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab897763e5d5debf69004fc1c123d04a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 856933,
            "upload_time": "2024-11-06T06:21:54",
            "upload_time_iso_8601": "2024-11-06T06:21:54.145913Z",
            "url": "https://files.pythonhosted.org/packages/0e/dd/d305d860af1db06f037d5b6127835b053ba74c31d4c78bb289ae8c740914/python_calamine-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8914019bb2fe530a378cb14928c16281c0da0db3893ac45a85b2cf445c194db",
                "md5": "ac83073501e70c701528d73f6313da1b",
                "sha256": "98808c087bbbfe4e858043fc0b953d326c8c70e73d0cd695c29a9bc7b3b0622b"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ac83073501e70c701528d73f6313da1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 901584,
            "upload_time": "2024-11-06T06:21:57",
            "upload_time_iso_8601": "2024-11-06T06:21:57.842482Z",
            "url": "https://files.pythonhosted.org/packages/a8/91/4019bb2fe530a378cb14928c16281c0da0db3893ac45a85b2cf445c194db/python_calamine-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c873bfb733d01038c35f495f2eabdbecafec6ddc30751d25e0f6da3a52a340ab",
                "md5": "f32b57b4db130ba4e19d5e6952978efd",
                "sha256": "78cd352976ba7324a2e7ab59188b3fac978b5f80d25e753b255dfec2d24076d9"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f32b57b4db130ba4e19d5e6952978efd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1039017,
            "upload_time": "2024-11-06T06:21:59",
            "upload_time_iso_8601": "2024-11-06T06:21:59.952416Z",
            "url": "https://files.pythonhosted.org/packages/c8/73/bfb733d01038c35f495f2eabdbecafec6ddc30751d25e0f6da3a52a340ab/python_calamine-0.3.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "536f9100b7fa85c40660b85198803a8d63623e6b6584a2c42ed5caa7ff093717",
                "md5": "bef14bc917947312608dc5ad57bdec73",
                "sha256": "2e1bfb191b5da6136887ca64deff427cae185d4d59333d1f1a8637db10ce8c3e"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bef14bc917947312608dc5ad57bdec73",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1017473,
            "upload_time": "2024-11-06T06:22:01",
            "upload_time_iso_8601": "2024-11-06T06:22:01.893924Z",
            "url": "https://files.pythonhosted.org/packages/53/6f/9100b7fa85c40660b85198803a8d63623e6b6584a2c42ed5caa7ff093717/python_calamine-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b544ff5b4d92a5609b16af607a13debdf6a00265555edac6216f624c26e15d06",
                "md5": "62fd6a0fb6f3db27cdd71b7f5952d03a",
                "sha256": "bd9616b355f47326ff4ae970f0a91a17976f316877a56ce3ef376ce58505e66c"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "62fd6a0fb6f3db27cdd71b7f5952d03a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 641836,
            "upload_time": "2024-11-06T06:22:03",
            "upload_time_iso_8601": "2024-11-06T06:22:03.577255Z",
            "url": "https://files.pythonhosted.org/packages/b5/44/ff5b4d92a5609b16af607a13debdf6a00265555edac6216f624c26e15d06/python_calamine-0.3.1-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e45e6a619b23c914e18101675c87dc50f947638793d8db2d100df919f2ddeabc",
                "md5": "d16e87e43d620b2d944b0a4421cf4556",
                "sha256": "40354b04fb68e63659bb5f423534fe6f0b3e709be322c25c60158ac332b85ed3"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d16e87e43d620b2d944b0a4421cf4556",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 671744,
            "upload_time": "2024-11-06T06:22:05",
            "upload_time_iso_8601": "2024-11-06T06:22:05.644187Z",
            "url": "https://files.pythonhosted.org/packages/e4/5e/6a619b23c914e18101675c87dc50f947638793d8db2d100df919f2ddeabc/python_calamine-0.3.1-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27721b362f92d6beb1a31bc579db6edd43bb251aef3e4b6edcd7d9617f4d4e68",
                "md5": "fea983216257252e008db61d2c12b08b",
                "sha256": "7fee7306d015e2cb89bd69dc7b928bd947b65415e2cd72deb59a72c5603d0adb"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fea983216257252e008db61d2c12b08b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 790765,
            "upload_time": "2024-11-06T06:22:07",
            "upload_time_iso_8601": "2024-11-06T06:22:07.109448Z",
            "url": "https://files.pythonhosted.org/packages/27/72/1b362f92d6beb1a31bc579db6edd43bb251aef3e4b6edcd7d9617f4d4e68/python_calamine-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94af0b0d5c05f52ce93a7920c966b77aba010e3f59378f0b8f99c0c6db9b5a9b",
                "md5": "8d0a65b31da2a8785154476b25df292a",
                "sha256": "c860d5dc649b6be49a94ba07b1673f8dc9be0a89bc33cf13a5ea58998facdb12"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8d0a65b31da2a8785154476b25df292a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 778571,
            "upload_time": "2024-11-06T06:22:09",
            "upload_time_iso_8601": "2024-11-06T06:22:09.215557Z",
            "url": "https://files.pythonhosted.org/packages/94/af/0b0d5c05f52ce93a7920c966b77aba010e3f59378f0b8f99c0c6db9b5a9b/python_calamine-0.3.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "564a91b6a8c875be18ff77d1051dc91de109491f9fc3e19509a114801b80dc7d",
                "md5": "c4219079595cdb4c2dadc8a5a5a87343",
                "sha256": "1df7ae7c29f96b6714cfebfd41666462970583b92ceb179b5ddd0d4556ea21ec"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c4219079595cdb4c2dadc8a5a5a87343",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 847066,
            "upload_time": "2024-11-06T06:22:10",
            "upload_time_iso_8601": "2024-11-06T06:22:10.948107Z",
            "url": "https://files.pythonhosted.org/packages/56/4a/91b6a8c875be18ff77d1051dc91de109491f9fc3e19509a114801b80dc7d/python_calamine-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7306937ae8ae1b00e7153a9abf3428cec2966b272b75448abcb53a88b1e4d83f",
                "md5": "157fdb852ea96fb74465303f45783b1d",
                "sha256": "84bac53ba4872b795f808d1d30b51c74eac4a57dc8e4f96bba8140ccdeb320da"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "157fdb852ea96fb74465303f45783b1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 852593,
            "upload_time": "2024-11-06T06:22:13",
            "upload_time_iso_8601": "2024-11-06T06:22:13.111561Z",
            "url": "https://files.pythonhosted.org/packages/73/06/937ae8ae1b00e7153a9abf3428cec2966b272b75448abcb53a88b1e4d83f/python_calamine-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36349f7a50471e4feae9b7e2690d330311f35255b2d22fb4d75cb18cc529d289",
                "md5": "c1a8c8330b2f262bd2452d9e5ae22ccf",
                "sha256": "e93ebe06fee0f10d43ede04691e80ab63366b00edc5eb873742779fdabe626e3"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c1a8c8330b2f262bd2452d9e5ae22ccf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 918190,
            "upload_time": "2024-11-06T06:22:14",
            "upload_time_iso_8601": "2024-11-06T06:22:14.546099Z",
            "url": "https://files.pythonhosted.org/packages/36/34/9f7a50471e4feae9b7e2690d330311f35255b2d22fb4d75cb18cc529d289/python_calamine-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33898147afd9ede3c04210c7b534437d0f0c500938b2c1e504ffcef7d955865f",
                "md5": "549363c55b44848f6d11cf14364f7f41",
                "sha256": "23d04d73d2028c7171c63179f3b4d5679aa057db46e1e0058341b5af047474c4"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "549363c55b44848f6d11cf14364f7f41",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 952064,
            "upload_time": "2024-11-06T06:22:16",
            "upload_time_iso_8601": "2024-11-06T06:22:16.511699Z",
            "url": "https://files.pythonhosted.org/packages/33/89/8147afd9ede3c04210c7b534437d0f0c500938b2c1e504ffcef7d955865f/python_calamine-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08acc04accb78049b64b99fba9eb3f889371d41c7985f9c7eef855fe05d13f96",
                "md5": "ccced1ab8f4479e6dfec2c4076cb533a",
                "sha256": "7b2005a4bd693dbaa74c96fdaa71a868c149ad376d309c4ad32fe80145216ad2"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ccced1ab8f4479e6dfec2c4076cb533a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 856838,
            "upload_time": "2024-11-06T06:22:18",
            "upload_time_iso_8601": "2024-11-06T06:22:18.389496Z",
            "url": "https://files.pythonhosted.org/packages/08/ac/c04accb78049b64b99fba9eb3f889371d41c7985f9c7eef855fe05d13f96/python_calamine-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60b670daeb7375b2829d4943a9d216bcd24fd9d5a4f98e27aea974f8f9c56a5d",
                "md5": "936a55ac3460b0455715e9f13b0057d2",
                "sha256": "b8c7ab2e26f124483308f1c0f580b01e3ad474ce3eb6a3acf0e0273247ea7b8b"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "936a55ac3460b0455715e9f13b0057d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 901296,
            "upload_time": "2024-11-06T06:22:20",
            "upload_time_iso_8601": "2024-11-06T06:22:20.548193Z",
            "url": "https://files.pythonhosted.org/packages/60/b6/70daeb7375b2829d4943a9d216bcd24fd9d5a4f98e27aea974f8f9c56a5d/python_calamine-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af2e00771529d5fa667155135b1fc9f31d06997b6c8fd3d7d7f2e4d045dcd2f1",
                "md5": "cc1f9dae0f44d69b2da3e27335b136cc",
                "sha256": "86466870c1898b75503e752f7ea7b7a045253f1e106db9555071d225af4a1de8"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cc1f9dae0f44d69b2da3e27335b136cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1039326,
            "upload_time": "2024-11-06T06:22:22",
            "upload_time_iso_8601": "2024-11-06T06:22:22.091289Z",
            "url": "https://files.pythonhosted.org/packages/af/2e/00771529d5fa667155135b1fc9f31d06997b6c8fd3d7d7f2e4d045dcd2f1/python_calamine-0.3.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cdc06215856a18f9a6a912c5bf0a2f9110a469490f18fe1ca3ac92e5bee89cd",
                "md5": "6425b5b074a4585fede315f6bf342f86",
                "sha256": "e6a4ef2435715694eeaea537f9578e33a90f68a5e9e697d98ae14d2aacf302cf"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6425b5b074a4585fede315f6bf342f86",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1017441,
            "upload_time": "2024-11-06T06:22:23",
            "upload_time_iso_8601": "2024-11-06T06:22:23.495273Z",
            "url": "https://files.pythonhosted.org/packages/5c/dc/06215856a18f9a6a912c5bf0a2f9110a469490f18fe1ca3ac92e5bee89cd/python_calamine-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1952ec281371e7cd5ebc436089b693d8b1cf41d36562d3ea4af2e795cd162444",
                "md5": "cab4ac18adcf6dbebef38f928fc6accd",
                "sha256": "545c0cd8bc72a3341f81f9c46f12cad2ec9f3281360d2893a88a4a4a48f364dc"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "cab4ac18adcf6dbebef38f928fc6accd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 643497,
            "upload_time": "2024-11-06T06:22:25",
            "upload_time_iso_8601": "2024-11-06T06:22:25.264082Z",
            "url": "https://files.pythonhosted.org/packages/19/52/ec281371e7cd5ebc436089b693d8b1cf41d36562d3ea4af2e795cd162444/python_calamine-0.3.1-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41dc8e5e6637e1716d2974cf426aa944a6d1f5022319612d2608c6fb1b7667b3",
                "md5": "8e028a365872694fe86679298af75e57",
                "sha256": "90e848bb9a062185cdc697b93798e67475956ce466c122b477e34fc4548e2906"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8e028a365872694fe86679298af75e57",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 671859,
            "upload_time": "2024-11-06T06:22:26",
            "upload_time_iso_8601": "2024-11-06T06:22:26.650263Z",
            "url": "https://files.pythonhosted.org/packages/41/dc/8e5e6637e1716d2974cf426aa944a6d1f5022319612d2608c6fb1b7667b3/python_calamine-0.3.1-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86b742de4f63a579d1e976c1938e8f93e2a083a389b157b398f0f324cf204c9f",
                "md5": "af99bd45a683708603b10fd587cf2f54",
                "sha256": "455e813450eb03bbe3fc09c1324fbb5c367edf4ec0c7a58f81169e5f2008f27d"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp311-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "af99bd45a683708603b10fd587cf2f54",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 645931,
            "upload_time": "2024-11-06T06:22:28",
            "upload_time_iso_8601": "2024-11-06T06:22:28.477752Z",
            "url": "https://files.pythonhosted.org/packages/86/b7/42de4f63a579d1e976c1938e8f93e2a083a389b157b398f0f324cf204c9f/python_calamine-0.3.1-cp311-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09a7e79d853445bdb22647489b62f84ead7f32c301c3169f5f75a96985ac2d7a",
                "md5": "c6e800354553e25a57761e3eb477e93d",
                "sha256": "eacea175ba67dd04c0d718bcca0488261bd9eefff3b46ae68249e14d705e14a0"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6e800354553e25a57761e3eb477e93d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 791708,
            "upload_time": "2024-11-06T06:22:29",
            "upload_time_iso_8601": "2024-11-06T06:22:29.901298Z",
            "url": "https://files.pythonhosted.org/packages/09/a7/e79d853445bdb22647489b62f84ead7f32c301c3169f5f75a96985ac2d7a/python_calamine-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf268ad747d3861112f3bbc654043550906d69758bf5d5d2387f92f19ca9bf8c",
                "md5": "ba4e847a32742af2c45f04dfba7f9d2b",
                "sha256": "c2a9a8021d7256e2a21949886d0fe5c67ae805d4b5f9a4d93b2ef971262e64d4"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ba4e847a32742af2c45f04dfba7f9d2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 779461,
            "upload_time": "2024-11-06T06:22:31",
            "upload_time_iso_8601": "2024-11-06T06:22:31.365050Z",
            "url": "https://files.pythonhosted.org/packages/cf/26/8ad747d3861112f3bbc654043550906d69758bf5d5d2387f92f19ca9bf8c/python_calamine-0.3.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b87fb5ee8c9c9c8e9bd12e08170af2c39e113f991adbb65343a8eca098c9525",
                "md5": "de6f270ba70cbf02944fa34ae1f29eae",
                "sha256": "65d0f0e7a3e554ba5672b9bd5f77b22dd3fc011fd30157c4e377c49b3d95d6d1"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "de6f270ba70cbf02944fa34ae1f29eae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 848500,
            "upload_time": "2024-11-06T06:22:33",
            "upload_time_iso_8601": "2024-11-06T06:22:33.072572Z",
            "url": "https://files.pythonhosted.org/packages/8b/87/fb5ee8c9c9c8e9bd12e08170af2c39e113f991adbb65343a8eca098c9525/python_calamine-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "436a46d8836765e71f9d9116aa3c6db56ca7acaeb0c19c81ed77c7f927b44086",
                "md5": "6b0ead44c796f7dfeec950ce04109c93",
                "sha256": "1c3be559acbcec19d79ba07ae81276bbb8fadd474c790db14119a09fb36427fb"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6b0ead44c796f7dfeec950ce04109c93",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 854282,
            "upload_time": "2024-11-06T06:22:34",
            "upload_time_iso_8601": "2024-11-06T06:22:34.462616Z",
            "url": "https://files.pythonhosted.org/packages/43/6a/46d8836765e71f9d9116aa3c6db56ca7acaeb0c19c81ed77c7f927b44086/python_calamine-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24d19ed72aa9576b13c8cdd5156b652769871c682edf3e37f169e5afc9bd9626",
                "md5": "4790df79bb345c328ca26d5317c6e18e",
                "sha256": "af0226e6826000d83a4ac34d81ae5217cc2baa54aecd76aac07091388bf739a1"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4790df79bb345c328ca26d5317c6e18e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 918879,
            "upload_time": "2024-11-06T06:22:35",
            "upload_time_iso_8601": "2024-11-06T06:22:35.943273Z",
            "url": "https://files.pythonhosted.org/packages/24/d1/9ed72aa9576b13c8cdd5156b652769871c682edf3e37f169e5afc9bd9626/python_calamine-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e00f0464ec560136e4dce374b9f50a9fe1c03c5b67bb201d9a328926835c970",
                "md5": "6aee5908c811cb25466bfafbd132756a",
                "sha256": "02b90d7e2e11c7449331d2cb744075fb47949d4e039983d6e6d9085950ad2642"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6aee5908c811cb25466bfafbd132756a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 949168,
            "upload_time": "2024-11-06T06:22:37",
            "upload_time_iso_8601": "2024-11-06T06:22:37.431450Z",
            "url": "https://files.pythonhosted.org/packages/7e/00/f0464ec560136e4dce374b9f50a9fe1c03c5b67bb201d9a328926835c970/python_calamine-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a16ee8b80c04f50bcbde518298e371d8bc64afc3646b90dd5369b867e68a7166",
                "md5": "91653d90d9fbdd42a8bc7226ea551ac3",
                "sha256": "732bb98dd393db80de1cd8a90e7d47dced929c7dea56194394d0fb7baf873fa7"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "91653d90d9fbdd42a8bc7226ea551ac3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 858798,
            "upload_time": "2024-11-06T06:22:39",
            "upload_time_iso_8601": "2024-11-06T06:22:39.490472Z",
            "url": "https://files.pythonhosted.org/packages/a1/6e/e8b80c04f50bcbde518298e371d8bc64afc3646b90dd5369b867e68a7166/python_calamine-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed1b050290e815417a40cb19475f8aa2e2aa9ec90a0433c2feb1b7321184f993",
                "md5": "d8778c81831af8437788b82231a02449",
                "sha256": "56bb60bf663c04e0a4cc801dfd5da3351820a002b4aea72a427603011633d35c"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "d8778c81831af8437788b82231a02449",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 903680,
            "upload_time": "2024-11-06T06:22:41",
            "upload_time_iso_8601": "2024-11-06T06:22:41.597257Z",
            "url": "https://files.pythonhosted.org/packages/ed/1b/050290e815417a40cb19475f8aa2e2aa9ec90a0433c2feb1b7321184f993/python_calamine-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41577ebd53f325538b3291cc5cfd94d8cf9ee8f1014fa7d74c45d645d344b5ab",
                "md5": "f52b6327c32584ceb14d4a3714a1c9a3",
                "sha256": "b8974ee473e6337c9b52d6cab03a202dbe57e1500eb100d96adb6b0dfbff7390"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f52b6327c32584ceb14d4a3714a1c9a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1038856,
            "upload_time": "2024-11-06T06:22:43",
            "upload_time_iso_8601": "2024-11-06T06:22:43.076319Z",
            "url": "https://files.pythonhosted.org/packages/41/57/7ebd53f325538b3291cc5cfd94d8cf9ee8f1014fa7d74c45d645d344b5ab/python_calamine-0.3.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd3b8967b37e72ecb9c4dafd72f62f426bf3f5541c534973d32e80923fac1b81",
                "md5": "106d91ce9f13d55269ca5c8fe5799a3c",
                "sha256": "90876d9b77429c8168d0e4c3ebe1dcf996130c5b0aecb3c6283f85645d4dd29a"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "106d91ce9f13d55269ca5c8fe5799a3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1016287,
            "upload_time": "2024-11-06T06:22:44",
            "upload_time_iso_8601": "2024-11-06T06:22:44.598062Z",
            "url": "https://files.pythonhosted.org/packages/bd/3b/8967b37e72ecb9c4dafd72f62f426bf3f5541c534973d32e80923fac1b81/python_calamine-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3adf913f6a7b1fd784d79431b6ac9337c702a996d30499b8af246fc582b6c95",
                "md5": "50f316d7e233a5d80302b35e37877b51",
                "sha256": "17ab4ba8955206eba4a87c6bc0a805ffa9051f831c9f3d17a463d8a844beb197"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "50f316d7e233a5d80302b35e37877b51",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 641828,
            "upload_time": "2024-11-06T06:22:46",
            "upload_time_iso_8601": "2024-11-06T06:22:46.518157Z",
            "url": "https://files.pythonhosted.org/packages/f3/ad/f913f6a7b1fd784d79431b6ac9337c702a996d30499b8af246fc582b6c95/python_calamine-0.3.1-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8967872d808d8d5fac55c358f49d9f5fdc36425d16a1f4dfcdfba1c80f41125e",
                "md5": "f419c15e36f2a6c4b5d53fdc935e8974",
                "sha256": "33ff20f6603fb3434630a00190022020102dc26b6def519d19a19a58a487a514"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f419c15e36f2a6c4b5d53fdc935e8974",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 672671,
            "upload_time": "2024-11-06T06:22:48",
            "upload_time_iso_8601": "2024-11-06T06:22:48.110694Z",
            "url": "https://files.pythonhosted.org/packages/89/67/872d808d8d5fac55c358f49d9f5fdc36425d16a1f4dfcdfba1c80f41125e/python_calamine-0.3.1-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdbdc5f0616bae188b47fb91c8e4c4e49a99a6930d527fbf937e828a73e93367",
                "md5": "e5f54ab68edb57a5cd71e1303aa96268",
                "sha256": "808ff13261826b64b8313a53a83873cf46df4522cbca98fb66a85b543de68949"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp312-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "e5f54ab68edb57a5cd71e1303aa96268",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 646318,
            "upload_time": "2024-11-06T06:22:49",
            "upload_time_iso_8601": "2024-11-06T06:22:49.827966Z",
            "url": "https://files.pythonhosted.org/packages/bd/bd/c5f0616bae188b47fb91c8e4c4e49a99a6930d527fbf937e828a73e93367/python_calamine-0.3.1-cp312-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "059bda0d4eade57f432f05647730e31c7ecaeb0303d8a694b83822b6f54a76eb",
                "md5": "2d37406994cb1d1416b3c0e19f7597d5",
                "sha256": "9401be43100552fb3a0d9a7392e207e4b4dfa0bc99c3f97613c0d703db0b191b"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d37406994cb1d1416b3c0e19f7597d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 791338,
            "upload_time": "2024-11-06T06:22:51",
            "upload_time_iso_8601": "2024-11-06T06:22:51.460972Z",
            "url": "https://files.pythonhosted.org/packages/05/9b/da0d4eade57f432f05647730e31c7ecaeb0303d8a694b83822b6f54a76eb/python_calamine-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffca1d48954361c243e1c2b6661a12ce06aaafc927c1808b31733b8949a9e2f0",
                "md5": "fc278b1c7bddcd53dfd4d2112e34c829",
                "sha256": "b76875209d89227ea0666c346b5e007fa2ac9cc65b95b91551c4b715d9e6c7be"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fc278b1c7bddcd53dfd4d2112e34c829",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 779212,
            "upload_time": "2024-11-06T06:22:52",
            "upload_time_iso_8601": "2024-11-06T06:22:52.913973Z",
            "url": "https://files.pythonhosted.org/packages/ff/ca/1d48954361c243e1c2b6661a12ce06aaafc927c1808b31733b8949a9e2f0/python_calamine-0.3.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71188b3a0f4452d9a4f518397d8cf94ec6f2d1ee45403f76a01f2f66b5c15ffb",
                "md5": "3d4d9ac5240e00555fd96ae657f6f81f",
                "sha256": "b2079ae2c434e28f1c9d17a2f4ea50d92e27d1373fc5908f1fd0c159f387e5b9"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3d4d9ac5240e00555fd96ae657f6f81f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 848020,
            "upload_time": "2024-11-06T06:22:54",
            "upload_time_iso_8601": "2024-11-06T06:22:54.319608Z",
            "url": "https://files.pythonhosted.org/packages/71/18/8b3a0f4452d9a4f518397d8cf94ec6f2d1ee45403f76a01f2f66b5c15ffb/python_calamine-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bbad7dd906bdb61f1cc22b8983345cb60f27f3bbda180f53465819b162e7493",
                "md5": "baf6837f8151be40dd3710d849002472",
                "sha256": "65c8986318846728d66ac2ce5dc017e79e6409ef17a48ca284d45f7d68a8ead0"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "baf6837f8151be40dd3710d849002472",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 853937,
            "upload_time": "2024-11-06T06:22:56",
            "upload_time_iso_8601": "2024-11-06T06:22:56.033655Z",
            "url": "https://files.pythonhosted.org/packages/8b/ba/d7dd906bdb61f1cc22b8983345cb60f27f3bbda180f53465819b162e7493/python_calamine-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7db6c352a8b266898bd40a4fd75440ff7ceb760722ec10e4cf3555990fb61947",
                "md5": "8ef68b9c3ffd567fce8fd39c836f5d16",
                "sha256": "9504e43f4852265ab55044eb2835c270fda137a1ea35d5e4b7d3581d4ac830f4"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8ef68b9c3ffd567fce8fd39c836f5d16",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 918441,
            "upload_time": "2024-11-06T06:22:57",
            "upload_time_iso_8601": "2024-11-06T06:22:57.421797Z",
            "url": "https://files.pythonhosted.org/packages/7d/b6/c352a8b266898bd40a4fd75440ff7ceb760722ec10e4cf3555990fb61947/python_calamine-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9aa03411f69dfb1df10e342b974032eb0b0efcea9a242f4784d1a73563e5cf0e",
                "md5": "1a26e23b223c10d81c5eca19c817fae3",
                "sha256": "b8eab37611b39cc8093e5671e5f8f8fc7f427459eabc21497f71659be61d5723"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1a26e23b223c10d81c5eca19c817fae3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 948165,
            "upload_time": "2024-11-06T06:22:59",
            "upload_time_iso_8601": "2024-11-06T06:22:59.559197Z",
            "url": "https://files.pythonhosted.org/packages/9a/a0/3411f69dfb1df10e342b974032eb0b0efcea9a242f4784d1a73563e5cf0e/python_calamine-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f00c5b9f44d4ef66cb775d1bff131eb33ac53919e9f88053e4ea79f4c5fe078",
                "md5": "6c5c4c8b55f89aa8a04d65467cef93a7",
                "sha256": "28e226ff25510e62b57443029e5061dd42b551907a0a983f0e07e6c5e1facb4d"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c5c4c8b55f89aa8a04d65467cef93a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 858051,
            "upload_time": "2024-11-06T06:23:01",
            "upload_time_iso_8601": "2024-11-06T06:23:01.509098Z",
            "url": "https://files.pythonhosted.org/packages/1f/00/c5b9f44d4ef66cb775d1bff131eb33ac53919e9f88053e4ea79f4c5fe078/python_calamine-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38db90376e1554d90ecc90c33e28186ff6f2c57ad0d08478d7352c5fc85ce36c",
                "md5": "7bc51a1a7e1c0eb3c18a3ebf2a22362b",
                "sha256": "721a7bfe0d17c12dcf82886a17c9d1025983cfe61fade8c0d2a1b04bb4bd9980"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7bc51a1a7e1c0eb3c18a3ebf2a22362b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 903218,
            "upload_time": "2024-11-06T06:23:03",
            "upload_time_iso_8601": "2024-11-06T06:23:03.040775Z",
            "url": "https://files.pythonhosted.org/packages/38/db/90376e1554d90ecc90c33e28186ff6f2c57ad0d08478d7352c5fc85ce36c/python_calamine-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10ef31958f010c5e8b01413437681216b9f6e89449d821b1d6c4504a24f2044d",
                "md5": "df2df3070a94feeaff24071340abfa47",
                "sha256": "1258cb82689ded64b73816fbcb3f02d139c8fd29676e9d451c0f81bb689a7076"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-cp313-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "df2df3070a94feeaff24071340abfa47",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1037794,
            "upload_time": "2024-11-06T06:23:04",
            "upload_time_iso_8601": "2024-11-06T06:23:04.890323Z",
            "url": "https://files.pythonhosted.org/packages/10/ef/31958f010c5e8b01413437681216b9f6e89449d821b1d6c4504a24f2044d/python_calamine-0.3.1-cp313-cp313-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6afe04f8c47734c14563a3cf90660ee718f0e9ce04df1017efc51562bf434c13",
                "md5": "13e36d42cbe8f30595fbe02e96510e64",
                "sha256": "919fe66fd3d3031585c4373a1dd0b128d3ceb0d79d21c8d0878e9ddee4d6b78a"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-cp313-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13e36d42cbe8f30595fbe02e96510e64",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1015901,
            "upload_time": "2024-11-06T06:23:06",
            "upload_time_iso_8601": "2024-11-06T06:23:06.653148Z",
            "url": "https://files.pythonhosted.org/packages/6a/fe/04f8c47734c14563a3cf90660ee718f0e9ce04df1017efc51562bf434c13/python_calamine-0.3.1-cp313-cp313-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2795a88b4d588d8a5597f8264eaab2cb203ddbf994bc4ca283f3d8fa5ca36328",
                "md5": "4f0634af737000a53b872523d473317e",
                "sha256": "a9df3902b279cb743baf857f29c1c7ed242caa7143c4fdf3a79f553801a662d9"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-none-win32.whl",
            "has_sig": false,
            "md5_digest": "4f0634af737000a53b872523d473317e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 641557,
            "upload_time": "2024-11-06T06:23:08",
            "upload_time_iso_8601": "2024-11-06T06:23:08.206164Z",
            "url": "https://files.pythonhosted.org/packages/27/95/a88b4d588d8a5597f8264eaab2cb203ddbf994bc4ca283f3d8fa5ca36328/python_calamine-0.3.1-cp313-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f753a92747cb8458af939dd288c6faccb6814e166311a86227d0610dac1158d",
                "md5": "67fbeec45a2d6c6983e8c133a9295e81",
                "sha256": "9f96654bceeb10e9ea9624eda857790e1a601593212fc174cb84d1568f12b5e4"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "67fbeec45a2d6c6983e8c133a9295e81",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 672168,
            "upload_time": "2024-11-06T06:23:09",
            "upload_time_iso_8601": "2024-11-06T06:23:09.726911Z",
            "url": "https://files.pythonhosted.org/packages/1f/75/3a92747cb8458af939dd288c6faccb6814e166311a86227d0610dac1158d/python_calamine-0.3.1-cp313-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5dc2ea62c43fd8704d632164cac18495bf7594136ada37e8ad069a09344cac70",
                "md5": "7a4a1672e8552eafd05fff9f978d7bc3",
                "sha256": "e83bd84617400bbca9907f0a44c6eccaeca7bd011791950c181e402992b8cc26"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp313-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "7a4a1672e8552eafd05fff9f978d7bc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 645713,
            "upload_time": "2024-11-06T06:23:12",
            "upload_time_iso_8601": "2024-11-06T06:23:12.360372Z",
            "url": "https://files.pythonhosted.org/packages/5d/c2/ea62c43fd8704d632164cac18495bf7594136ada37e8ad069a09344cac70/python_calamine-0.3.1-cp313-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad452c20c8e90b263ff068a4f07de8b3453f133f5a3a7a3ef9c69f5820514fdc",
                "md5": "8e255ceb4e589c19052e610810ec28ec",
                "sha256": "b37166dcf7d7706e0ca3cd6e21a138120f69f1697ea5c9e22b29daac36d02f1b"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e255ceb4e589c19052e610810ec28ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 791154,
            "upload_time": "2024-11-06T06:23:13",
            "upload_time_iso_8601": "2024-11-06T06:23:13.833219Z",
            "url": "https://files.pythonhosted.org/packages/ad/45/2c20c8e90b263ff068a4f07de8b3453f133f5a3a7a3ef9c69f5820514fdc/python_calamine-0.3.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35124b8dfb296ed65bca4b4f287788197c120a984743d42c9d395c24ed0a8c61",
                "md5": "c1828b7d1e9436f9a3e7d4ce60ef90e5",
                "sha256": "885c668ad97c637a76b18d63d242cafe16629ed4912044c508a2a34e12c08892"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c1828b7d1e9436f9a3e7d4ce60ef90e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 780575,
            "upload_time": "2024-11-06T06:23:15",
            "upload_time_iso_8601": "2024-11-06T06:23:15.634264Z",
            "url": "https://files.pythonhosted.org/packages/35/12/4b8dfb296ed65bca4b4f287788197c120a984743d42c9d395c24ed0a8c61/python_calamine-0.3.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae693416a967b8cd2d959b4925bf4318d1bd9fe15e7a98b65f982a4cd96bf270",
                "md5": "7abf1d1ea429a6ae386a4898a47916cd",
                "sha256": "50c8462add6488c196925ceee73c11775bf7323c88dbf3be6591f49c5e179d71"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7abf1d1ea429a6ae386a4898a47916cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 849647,
            "upload_time": "2024-11-06T06:23:17",
            "upload_time_iso_8601": "2024-11-06T06:23:17.581106Z",
            "url": "https://files.pythonhosted.org/packages/ae/69/3416a967b8cd2d959b4925bf4318d1bd9fe15e7a98b65f982a4cd96bf270/python_calamine-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab95d49809ecb332ef1e3584cb048e41d961d83dbc9bc035b9e695ddc2c8665b",
                "md5": "a97bab042fe8229beeed52f60f4a8b9f",
                "sha256": "bfe3ae2e73de00310835495166d16a8de27e49b846923e04f3462d100b964d2f"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a97bab042fe8229beeed52f60f4a8b9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 853972,
            "upload_time": "2024-11-06T06:23:19",
            "upload_time_iso_8601": "2024-11-06T06:23:19.047275Z",
            "url": "https://files.pythonhosted.org/packages/ab/95/d49809ecb332ef1e3584cb048e41d961d83dbc9bc035b9e695ddc2c8665b/python_calamine-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75ec6250511131071fc8803c7b53d928d51353ba6db2c2cbde00f8e967c2bcac",
                "md5": "9474f7e26e6fd484013ae0eaa241ec3e",
                "sha256": "a46c344077da8709163c75441ab61b5833e5f83e2586c4d63ad525987032c314"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9474f7e26e6fd484013ae0eaa241ec3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 918114,
            "upload_time": "2024-11-06T06:23:20",
            "upload_time_iso_8601": "2024-11-06T06:23:20.559581Z",
            "url": "https://files.pythonhosted.org/packages/75/ec/6250511131071fc8803c7b53d928d51353ba6db2c2cbde00f8e967c2bcac/python_calamine-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc583e4532f487fb62846961b6d5330151d220597c09c3615d00eb93d6f0d3c3",
                "md5": "7f576a79e9f01d879d86f4f83ba6d45f",
                "sha256": "a8abd68d8d79da7b5316214c9b065c790538a3e0278b7bc278b5395a41330b6a"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7f576a79e9f01d879d86f4f83ba6d45f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 953958,
            "upload_time": "2024-11-06T06:23:22",
            "upload_time_iso_8601": "2024-11-06T06:23:22.139145Z",
            "url": "https://files.pythonhosted.org/packages/cc/58/3e4532f487fb62846961b6d5330151d220597c09c3615d00eb93d6f0d3c3/python_calamine-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30e5d588fdfa5f11713e7da587ce52be62018fdb751cd62723a3edba3b963ba1",
                "md5": "74ed10904953ad11cc88525b2992b8b5",
                "sha256": "11727fd075f0c184ef7655659794fc060a138c9ff4d2c5ac66e0d067aa8526f0"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74ed10904953ad11cc88525b2992b8b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 858255,
            "upload_time": "2024-11-06T06:23:23",
            "upload_time_iso_8601": "2024-11-06T06:23:23.599634Z",
            "url": "https://files.pythonhosted.org/packages/30/e5/d588fdfa5f11713e7da587ce52be62018fdb751cd62723a3edba3b963ba1/python_calamine-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53452a4eef939d6ddf43ec84a4ad4ac814c63cba91ede0c1b6baac69f1e05a66",
                "md5": "641afe4bf58d6c8237203df51c09bac5",
                "sha256": "fd08e245a7c2676887e548d7a86a909bdc167a3c582f10937f2f55e7216a7305"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "641afe4bf58d6c8237203df51c09bac5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 902541,
            "upload_time": "2024-11-06T06:23:25",
            "upload_time_iso_8601": "2024-11-06T06:23:25.033715Z",
            "url": "https://files.pythonhosted.org/packages/53/45/2a4eef939d6ddf43ec84a4ad4ac814c63cba91ede0c1b6baac69f1e05a66/python_calamine-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e174b4263daeb92b7f57c3e636d7c11db494f842fe52f182cea609f211b8ce0",
                "md5": "d72ce039a5fe5c853cc3b8742b8cb1d4",
                "sha256": "6ad2ae302ec13c1610170f0953b6c7accf7b26384b0a3813987e16ec78b59982"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d72ce039a5fe5c853cc3b8742b8cb1d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1040357,
            "upload_time": "2024-11-06T06:23:26",
            "upload_time_iso_8601": "2024-11-06T06:23:26.581019Z",
            "url": "https://files.pythonhosted.org/packages/9e/17/4b4263daeb92b7f57c3e636d7c11db494f842fe52f182cea609f211b8ce0/python_calamine-0.3.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87348a48330e17de8a15cae5d33f643db925a61bdb0d311295a7c173e51d9499",
                "md5": "b6f1ac22178cff381f626aa2191c2389",
                "sha256": "38975ba9b8b8bbe86ab9d384500b0555af6ede8bd328af77cc3d99484bd0e303"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6f1ac22178cff381f626aa2191c2389",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1018678,
            "upload_time": "2024-11-06T06:23:28",
            "upload_time_iso_8601": "2024-11-06T06:23:28.096661Z",
            "url": "https://files.pythonhosted.org/packages/87/34/8a48330e17de8a15cae5d33f643db925a61bdb0d311295a7c173e51d9499/python_calamine-0.3.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eca3090cba3e78e035e208708f86b54b38ab40a35db3d0e100ddcf08c6cb607c",
                "md5": "31adc2ec2ef3bdfc342da396cf5e9a1b",
                "sha256": "68b8cd5f6aceb56e5eb424830493210d478926e36951ccafe2dad15b440da167"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "31adc2ec2ef3bdfc342da396cf5e9a1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 642310,
            "upload_time": "2024-11-06T06:23:30",
            "upload_time_iso_8601": "2024-11-06T06:23:30.694311Z",
            "url": "https://files.pythonhosted.org/packages/ec/a3/090cba3e78e035e208708f86b54b38ab40a35db3d0e100ddcf08c6cb607c/python_calamine-0.3.1-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98e47ddf54f3b41315fa7ba71499804d45920cf3de6e14dc6b41b830ae0db150",
                "md5": "275c1982a29348dfa0af49fd96efeb11",
                "sha256": "f2d270c4eb15971eb5e2e87183470f7eafb1307d6df15253a6cff7c5649ffe04"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "275c1982a29348dfa0af49fd96efeb11",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 671704,
            "upload_time": "2024-11-06T06:23:32",
            "upload_time_iso_8601": "2024-11-06T06:23:32.188419Z",
            "url": "https://files.pythonhosted.org/packages/98/e4/7ddf54f3b41315fa7ba71499804d45920cf3de6e14dc6b41b830ae0db150/python_calamine-0.3.1-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc1537ec1980ced054d96bb9daa5569148401f775837bc1d4e03a7c6fe631fbd",
                "md5": "886fe5951ad7b56aab8e8909677a4747",
                "sha256": "dcf5ffd5a63b806de03629c2f25585e455aa245d6e0fd78e7a85dff79d16b6e7"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "886fe5951ad7b56aab8e8909677a4747",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 790793,
            "upload_time": "2024-11-06T06:23:34",
            "upload_time_iso_8601": "2024-11-06T06:23:34.213054Z",
            "url": "https://files.pythonhosted.org/packages/bc/15/37ec1980ced054d96bb9daa5569148401f775837bc1d4e03a7c6fe631fbd/python_calamine-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85c5da6d4f36411bd8d70bf2ffd07dfba58a66a3392ce6c618bcadbc202aa3a9",
                "md5": "98a8a32163f6ff3e628a620b9f2f7af0",
                "sha256": "38c5ff0b9696fe4deec98e8135f33eeee49e302bcfa2ffcc4abe15cb1f8e8054"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "98a8a32163f6ff3e628a620b9f2f7af0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 780290,
            "upload_time": "2024-11-06T06:23:35",
            "upload_time_iso_8601": "2024-11-06T06:23:35.896515Z",
            "url": "https://files.pythonhosted.org/packages/85/c5/da6d4f36411bd8d70bf2ffd07dfba58a66a3392ce6c618bcadbc202aa3a9/python_calamine-0.3.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa9c4a57ca04ae47da6c9e0534497bb69fbaeb451ada412bc02576bac61f11a5",
                "md5": "b59edcaca03d36c5d30585f69cbdd5bf",
                "sha256": "58a3331cc70e7496592c9c559fa89a7451db56a200d754e416edb51b9e888a41"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b59edcaca03d36c5d30585f69cbdd5bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 849586,
            "upload_time": "2024-11-06T06:23:37",
            "upload_time_iso_8601": "2024-11-06T06:23:37.378275Z",
            "url": "https://files.pythonhosted.org/packages/fa/9c/4a57ca04ae47da6c9e0534497bb69fbaeb451ada412bc02576bac61f11a5/python_calamine-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b928326c2c78d933f7db0740eb5cf22b25afd115bc1f6d93c6ec456be90a65a",
                "md5": "84e58bc5ce855e518c135c1e901b62bc",
                "sha256": "6493fb0fbf766a380d0741c11c6c52b1a06d1917a8e7551f9d560324ca757b82"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "84e58bc5ce855e518c135c1e901b62bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 853584,
            "upload_time": "2024-11-06T06:23:38",
            "upload_time_iso_8601": "2024-11-06T06:23:38.966160Z",
            "url": "https://files.pythonhosted.org/packages/9b/92/8326c2c78d933f7db0740eb5cf22b25afd115bc1f6d93c6ec456be90a65a/python_calamine-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83d41e795b47b3013ca2b483cb57a0778f0fcc07e75b0b433d0be5ad62a9bc5e",
                "md5": "d1a67dfe37610b0bcbff3aaa8f7bdabd",
                "sha256": "94f9cd55efdda69352de6679d737d41dfcb1fdb5b8e5c512e0b83fe6b5f3796c"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d1a67dfe37610b0bcbff3aaa8f7bdabd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 917983,
            "upload_time": "2024-11-06T06:23:41",
            "upload_time_iso_8601": "2024-11-06T06:23:41.016093Z",
            "url": "https://files.pythonhosted.org/packages/83/d4/1e795b47b3013ca2b483cb57a0778f0fcc07e75b0b433d0be5ad62a9bc5e/python_calamine-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da5ef6a67958acc48189df58af78224ca970348539dfe8c7e14b877fd7926f7e",
                "md5": "b86f7341d50d56945e03f376e8d08095",
                "sha256": "79b2a774944b4ed084d9a677cbf88372f725449a260fd134ab2b3422ef2d4a5d"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b86f7341d50d56945e03f376e8d08095",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 953457,
            "upload_time": "2024-11-06T06:23:43",
            "upload_time_iso_8601": "2024-11-06T06:23:43.083296Z",
            "url": "https://files.pythonhosted.org/packages/da/5e/f6a67958acc48189df58af78224ca970348539dfe8c7e14b877fd7926f7e/python_calamine-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31ea7b0611e87a289914d3ba2e4add499ece4ca1768caecec7087e98220cc36e",
                "md5": "e9811177a316bab5cdcc0afff3c2c643",
                "sha256": "c96c5cfd02f4a20a2df51ff6732839d3f4a4a781e9e904a85191aaeb8fce2870"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e9811177a316bab5cdcc0afff3c2c643",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 857618,
            "upload_time": "2024-11-06T06:23:45",
            "upload_time_iso_8601": "2024-11-06T06:23:45.552233Z",
            "url": "https://files.pythonhosted.org/packages/31/ea/7b0611e87a289914d3ba2e4add499ece4ca1768caecec7087e98220cc36e/python_calamine-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce1e0152c33046c8dfc3d596022ff887063a1d6585df4e7f3e1c4707877968cb",
                "md5": "a5d0d47db5f849094b74f2d02559ddc9",
                "sha256": "edf8d83c7369b18d4d42e9e2ccc52143bdbf27a326877bf3fc6fc56c78655372"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a5d0d47db5f849094b74f2d02559ddc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 902220,
            "upload_time": "2024-11-06T06:23:47",
            "upload_time_iso_8601": "2024-11-06T06:23:47.114758Z",
            "url": "https://files.pythonhosted.org/packages/ce/1e/0152c33046c8dfc3d596022ff887063a1d6585df4e7f3e1c4707877968cb/python_calamine-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e976aa47cf33d72dae62ecc883aadc72ea5f4c5d977bf09c7bc0d0872ceba0af",
                "md5": "e0fa732f439ba424119d994dad4d63ef",
                "sha256": "2252b25e8fd992f10e916fb4eddc504a58839a1e67f32238bba803ecf16ce7c4"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e0fa732f439ba424119d994dad4d63ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1039701,
            "upload_time": "2024-11-06T06:23:48",
            "upload_time_iso_8601": "2024-11-06T06:23:48.691440Z",
            "url": "https://files.pythonhosted.org/packages/e9/76/aa47cf33d72dae62ecc883aadc72ea5f4c5d977bf09c7bc0d0872ceba0af/python_calamine-0.3.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95fc9d88b6ea48e21391b9608218a1d23fcaf9f5d9a737eb2aa3a63daf3016bd",
                "md5": "41d062e6a954be239012f089eef0682f",
                "sha256": "26d870656fbe1c3767483f3162359765738adab58915157c55afff4dfc32e9e9"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "41d062e6a954be239012f089eef0682f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1017614,
            "upload_time": "2024-11-06T06:23:50",
            "upload_time_iso_8601": "2024-11-06T06:23:50.589706Z",
            "url": "https://files.pythonhosted.org/packages/95/fc/9d88b6ea48e21391b9608218a1d23fcaf9f5d9a737eb2aa3a63daf3016bd/python_calamine-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c8c1ae6ccfef31654fca8ec6bbb3ebe28f2c212f6c233e1026d3f77a77fb62a",
                "md5": "d145c39e31016fff952f0d0dccc71910",
                "sha256": "28c1394a00bd218ce4223f8f8019fd2c1878f1a01ad47be289964d281fef4dac"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d145c39e31016fff952f0d0dccc71910",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 642195,
            "upload_time": "2024-11-06T06:23:52",
            "upload_time_iso_8601": "2024-11-06T06:23:52.191608Z",
            "url": "https://files.pythonhosted.org/packages/7c/8c/1ae6ccfef31654fca8ec6bbb3ebe28f2c212f6c233e1026d3f77a77fb62a/python_calamine-0.3.1-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8e53d579b5430f54797b636f9bbff9a5cc73d3a56f495901f565c3c82156703",
                "md5": "aed18714dc1a9e007cac488bd7789cc4",
                "sha256": "529c36520924b16f398e25e78fcd4ea14fdcd95f383db360d107e075628d6941"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aed18714dc1a9e007cac488bd7789cc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 672165,
            "upload_time": "2024-11-06T06:23:53",
            "upload_time_iso_8601": "2024-11-06T06:23:53.981826Z",
            "url": "https://files.pythonhosted.org/packages/f8/e5/3d579b5430f54797b636f9bbff9a5cc73d3a56f495901f565c3c82156703/python_calamine-0.3.1-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6c0c5b8daf21a7cd2d08b4e58dd5050e85af676fe316dd239e086bce3ef45a2",
                "md5": "51347cbd3d61de7de3cced89e12effb4",
                "sha256": "4dbe8d5f27889dfcd03d9ad99a9f392b6c0af41dbc287ac4738804c31c99750a"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "51347cbd3d61de7de3cced89e12effb4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 791923,
            "upload_time": "2024-11-06T06:23:55",
            "upload_time_iso_8601": "2024-11-06T06:23:55.863709Z",
            "url": "https://files.pythonhosted.org/packages/d6/c0/c5b8daf21a7cd2d08b4e58dd5050e85af676fe316dd239e086bce3ef45a2/python_calamine-0.3.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e811cd685de5f456e21ec8ca7402dc4c35a9084ba3e9f38a4fcd7fead0dac099",
                "md5": "0d21253598c5a92724dd96ff890756b4",
                "sha256": "9bc553349095b3104708cd1eb345445426400de105df7ede3d5054b0ecfa74e9"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0d21253598c5a92724dd96ff890756b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 780127,
            "upload_time": "2024-11-06T06:23:57",
            "upload_time_iso_8601": "2024-11-06T06:23:57.346942Z",
            "url": "https://files.pythonhosted.org/packages/e8/11/cd685de5f456e21ec8ca7402dc4c35a9084ba3e9f38a4fcd7fead0dac099/python_calamine-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f26b8ac849950ad84ca2043f0a51c60bdefc8d11500b193b901d98d9405ab013",
                "md5": "315f6356f484c4616129a2a502b0f345",
                "sha256": "f12fa42ea6c7750f994a1a9674414dfd25adb3e61ad570382c05a84e4e8e949e"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "315f6356f484c4616129a2a502b0f345",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 849104,
            "upload_time": "2024-11-06T06:23:58",
            "upload_time_iso_8601": "2024-11-06T06:23:58.884009Z",
            "url": "https://files.pythonhosted.org/packages/f2/6b/8ac849950ad84ca2043f0a51c60bdefc8d11500b193b901d98d9405ab013/python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef843b8026b1af762957370a2318ae527920c016b99e6971f1c101d04425e33e",
                "md5": "c852fc3ab908bf3557b1b0a92b4efbe6",
                "sha256": "bbac293a3c4c98e988e564f13820874c6ac02114cef5698a03b8146bd9566ef7"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c852fc3ab908bf3557b1b0a92b4efbe6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 856787,
            "upload_time": "2024-11-06T06:24:00",
            "upload_time_iso_8601": "2024-11-06T06:24:00.483845Z",
            "url": "https://files.pythonhosted.org/packages/ef/84/3b8026b1af762957370a2318ae527920c016b99e6971f1c101d04425e33e/python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "201449282dc57a77b194cccc5de641946d70340093aa4d3a579c2589dc356c84",
                "md5": "39003c6634bbc5ddebb16897eedeceb8",
                "sha256": "a571bab6528504cdb99187f4e6a5a64c7ccb065ee1416b9e10c1f416d331aae5"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "39003c6634bbc5ddebb16897eedeceb8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 905120,
            "upload_time": "2024-11-06T06:24:02",
            "upload_time_iso_8601": "2024-11-06T06:24:02.101385Z",
            "url": "https://files.pythonhosted.org/packages/20/14/49282dc57a77b194cccc5de641946d70340093aa4d3a579c2589dc356c84/python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cb5a28a7923bc73d75cd8ab67b3e94347440e149b38c56460349d0f396415ca",
                "md5": "9ba1ff28fe05290796d03c0bf84aa0d5",
                "sha256": "49d2acf3def8ecbabb132b537501bb639ca9d52548fd7058d5da7fa9fdbd1b45"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9ba1ff28fe05290796d03c0bf84aa0d5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1041903,
            "upload_time": "2024-11-06T06:24:03",
            "upload_time_iso_8601": "2024-11-06T06:24:03.765728Z",
            "url": "https://files.pythonhosted.org/packages/8c/b5/a28a7923bc73d75cd8ab67b3e94347440e149b38c56460349d0f396415ca/python_calamine-0.3.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e09b643f1500d36d274f7605c2387d868cc9c6805f01d22cdf636316aa4b3075",
                "md5": "003cd0a91be3958296d7c59045c0f8ec",
                "sha256": "e71ee834988033d3f8254713423ce5232ffe964f1bb2fdc3383f407b8a52dab9"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "003cd0a91be3958296d7c59045c0f8ec",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1018479,
            "upload_time": "2024-11-06T06:24:06",
            "upload_time_iso_8601": "2024-11-06T06:24:06.067396Z",
            "url": "https://files.pythonhosted.org/packages/e0/9b/643f1500d36d274f7605c2387d868cc9c6805f01d22cdf636316aa4b3075/python_calamine-0.3.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "590bfdd4f1aa564e3a9a4d56872e1bb092d05cbe312060ebba0b1fe1dec9ebfa",
                "md5": "1b7728108464dcdc4a279b4e2f92a265",
                "sha256": "139afbf6a23c33c55ce0144e15e89e03e333a59b4864a2e1e0c764cd33390414"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1b7728108464dcdc4a279b4e2f92a265",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 670708,
            "upload_time": "2024-11-06T06:24:08",
            "upload_time_iso_8601": "2024-11-06T06:24:08.344537Z",
            "url": "https://files.pythonhosted.org/packages/59/0b/fdd4f1aa564e3a9a4d56872e1bb092d05cbe312060ebba0b1fe1dec9ebfa/python_calamine-0.3.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe269019de43dfa3886661f823f2ccfbacac90b4a2bdf2dd3d5965281682ae55",
                "md5": "15d4e9e1eae5bc7db4142fd511d6805a",
                "sha256": "ea28ebd4d347c13c6acc787dba1fb0f626188469f861a2fa9cd057fa689161e2"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15d4e9e1eae5bc7db4142fd511d6805a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 792447,
            "upload_time": "2024-11-06T06:24:10",
            "upload_time_iso_8601": "2024-11-06T06:24:10.182899Z",
            "url": "https://files.pythonhosted.org/packages/fe/26/9019de43dfa3886661f823f2ccfbacac90b4a2bdf2dd3d5965281682ae55/python_calamine-0.3.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ee9771f71a1fe8630780f0af8dfe657e3279cd79fffaa7f0b7614cfd5a563c1",
                "md5": "d8fe307d45328712f4290dda1c11c24a",
                "sha256": "39d51754c4375b34b58b6036780ee022db80b54a29fbfc577c785da8dfc358f8"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d8fe307d45328712f4290dda1c11c24a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 780889,
            "upload_time": "2024-11-06T06:24:11",
            "upload_time_iso_8601": "2024-11-06T06:24:11.873700Z",
            "url": "https://files.pythonhosted.org/packages/8e/e9/771f71a1fe8630780f0af8dfe657e3279cd79fffaa7f0b7614cfd5a563c1/python_calamine-0.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d42d62dfcf59b2400d1db783729088b8abd2a079b7f79a75e3dd3bdf5913f03f",
                "md5": "18282bcecbe3cf2b9059d5f42325ceea",
                "sha256": "df72ff860dbd9e659a2a3e77a76a89356eea4ebaaa44b6fc4b84cab76e8e5313"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "18282bcecbe3cf2b9059d5f42325ceea",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 849393,
            "upload_time": "2024-11-06T06:24:13",
            "upload_time_iso_8601": "2024-11-06T06:24:13.560998Z",
            "url": "https://files.pythonhosted.org/packages/d4/2d/62dfcf59b2400d1db783729088b8abd2a079b7f79a75e3dd3bdf5913f03f/python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0865ca81a130592110a02128dfd9786bff8c12ffed81b34e2d6488ae112ea554",
                "md5": "829aa56b8fe8aa48218c123b52f4466c",
                "sha256": "cef919d074235843c5b27f493a645457c0edd9c4f19de3d3187d5cbfad3cf849"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "829aa56b8fe8aa48218c123b52f4466c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 857894,
            "upload_time": "2024-11-06T06:24:15",
            "upload_time_iso_8601": "2024-11-06T06:24:15.117849Z",
            "url": "https://files.pythonhosted.org/packages/08/65/ca81a130592110a02128dfd9786bff8c12ffed81b34e2d6488ae112ea554/python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebd189a2db47b098b650b2ad6056067bb5b25ed0d4915426bfc1c18bee0c7a73",
                "md5": "442e592c6ab0164484c65f15d7c94d3e",
                "sha256": "7aa81f93809e1a0b7ad289168444878ffd0c72ffe500efca7ea7a2778df812d4"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "442e592c6ab0164484c65f15d7c94d3e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 905530,
            "upload_time": "2024-11-06T06:24:17",
            "upload_time_iso_8601": "2024-11-06T06:24:17.261411Z",
            "url": "https://files.pythonhosted.org/packages/eb/d1/89a2db47b098b650b2ad6056067bb5b25ed0d4915426bfc1c18bee0c7a73/python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "069c6c4e9e83d86d3e3794c8141865793279a79d868ab4af858e760844bda6a9",
                "md5": "616e51502f05eee68fa4cadb17e28922",
                "sha256": "853aab3a19015c49e24892c145646b59719eeb3c71c0582e0af83379d84977a6"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "616e51502f05eee68fa4cadb17e28922",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1043662,
            "upload_time": "2024-11-06T06:24:19",
            "upload_time_iso_8601": "2024-11-06T06:24:19.206528Z",
            "url": "https://files.pythonhosted.org/packages/06/9c/6c4e9e83d86d3e3794c8141865793279a79d868ab4af858e760844bda6a9/python_calamine-0.3.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4090e14abc2db42d544bca689eb87b574596f15733d4db8993da25be6264fd15",
                "md5": "0697782171b1266931ada42d33ae24d3",
                "sha256": "79d8f506b917e5c1ec75e3b595181416ebe1cc809addf952a23e170606984709"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0697782171b1266931ada42d33ae24d3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1019366,
            "upload_time": "2024-11-06T06:24:21",
            "upload_time_iso_8601": "2024-11-06T06:24:21.529664Z",
            "url": "https://files.pythonhosted.org/packages/40/90/e14abc2db42d544bca689eb87b574596f15733d4db8993da25be6264fd15/python_calamine-0.3.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2363e1c4cbe7c0938d900257174455caa9b3d02980c11e3cb60ab4eba7c8138",
                "md5": "67c1badf070cba2c1c74d7cd049722ec",
                "sha256": "a4497c11d412e6df3b85a1fde2110f797ff5b2d739ff79fc50ef62476620a27c"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "67c1badf070cba2c1c74d7cd049722ec",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 670965,
            "upload_time": "2024-11-06T06:24:23",
            "upload_time_iso_8601": "2024-11-06T06:24:23.216428Z",
            "url": "https://files.pythonhosted.org/packages/f2/36/3e1c4cbe7c0938d900257174455caa9b3d02980c11e3cb60ab4eba7c8138/python_calamine-0.3.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c3dff68651390161d6e7e7d4d1c7653febbb1b265dfda2c1ccaebc08ab90c7f",
                "md5": "790609a6eced46210ca2edf8a00a2188",
                "sha256": "dba960d7668ea7c699f5d68f0a8f7c3f9573fbec26a9db4219cb976c8b751384"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "790609a6eced46210ca2edf8a00a2188",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 792104,
            "upload_time": "2024-11-06T06:24:24",
            "upload_time_iso_8601": "2024-11-06T06:24:24.832621Z",
            "url": "https://files.pythonhosted.org/packages/1c/3d/ff68651390161d6e7e7d4d1c7653febbb1b265dfda2c1ccaebc08ab90c7f/python_calamine-0.3.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8266c316319360a489e2a555eb8891ed1291b291a547a3eee9176c9366fd5c38",
                "md5": "c0a967bb7312a7191bfd6f0e457db232",
                "sha256": "41a204b59696cae066f399d7a69637e89d1bd34562d411c96108e3675ab57521"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c0a967bb7312a7191bfd6f0e457db232",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 780539,
            "upload_time": "2024-11-06T06:24:26",
            "upload_time_iso_8601": "2024-11-06T06:24:26.776231Z",
            "url": "https://files.pythonhosted.org/packages/82/66/c316319360a489e2a555eb8891ed1291b291a547a3eee9176c9366fd5c38/python_calamine-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdae05e04a9102ec5a8b8b3d5a40390fb8e100e200e8b02d68926bc7d07e96b7",
                "md5": "4776e6033c2c53eac30d68d5156385df",
                "sha256": "07ef8398036a411896edc6de30eb71a0dcbad61657238525c1c875c089e2a275"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4776e6033c2c53eac30d68d5156385df",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 849062,
            "upload_time": "2024-11-06T06:24:28",
            "upload_time_iso_8601": "2024-11-06T06:24:28.642828Z",
            "url": "https://files.pythonhosted.org/packages/bd/ae/05e04a9102ec5a8b8b3d5a40390fb8e100e200e8b02d68926bc7d07e96b7/python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e0f599c35b6441d3e3909e22c65e80bc3ee2c19372c2ce5a99effd98c853814",
                "md5": "a3d987620dc1aba97e5f3224902ed2b8",
                "sha256": "21775f97acbfe40182bb17c256e2f8ce0c787a30b86f09a6786bc4530b17c94b"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a3d987620dc1aba97e5f3224902ed2b8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 857676,
            "upload_time": "2024-11-06T06:24:30",
            "upload_time_iso_8601": "2024-11-06T06:24:30.344512Z",
            "url": "https://files.pythonhosted.org/packages/8e/0f/599c35b6441d3e3909e22c65e80bc3ee2c19372c2ce5a99effd98c853814/python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4f32f8caba3f64ee7ba4e0f591837f543459f2df48a2e5bc6630617572986b3",
                "md5": "2a5beb12253f40a8efe4588f422537d6",
                "sha256": "d4cdd57ebb563e9bc97501b4eaa7ed3545628d8a0ac482e8903894d80332d506"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2a5beb12253f40a8efe4588f422537d6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 905341,
            "upload_time": "2024-11-06T06:24:32",
            "upload_time_iso_8601": "2024-11-06T06:24:32.022836Z",
            "url": "https://files.pythonhosted.org/packages/f4/f3/2f8caba3f64ee7ba4e0f591837f543459f2df48a2e5bc6630617572986b3/python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a616b4cc2ff022471f4f8428ee95106e89a10b89ee51a842c93c7f61f29de260",
                "md5": "f983bda597807ccec2ed20a310eeb9fe",
                "sha256": "af1e60a711d41e24a24917fe41f98ab36adbcb6f5f85af8a0c895defb5de654f"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f983bda597807ccec2ed20a310eeb9fe",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1043217,
            "upload_time": "2024-11-06T06:24:34",
            "upload_time_iso_8601": "2024-11-06T06:24:34.307386Z",
            "url": "https://files.pythonhosted.org/packages/a6/16/b4cc2ff022471f4f8428ee95106e89a10b89ee51a842c93c7f61f29de260/python_calamine-0.3.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "203217e6761f3c591297b6056c471041977c97e9b44d136862b9dd765dc24c18",
                "md5": "0f86ada279401363a2c0f988530b9bc9",
                "sha256": "1faf371a69da8e364d1391cca3a58e46b3aa181e7202ac6452d09f37d3b99f97"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f86ada279401363a2c0f988530b9bc9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1019133,
            "upload_time": "2024-11-06T06:24:35",
            "upload_time_iso_8601": "2024-11-06T06:24:35.955921Z",
            "url": "https://files.pythonhosted.org/packages/20/32/17e6761f3c591297b6056c471041977c97e9b44d136862b9dd765dc24c18/python_calamine-0.3.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "446d80122ec732bb103a2145db9b71905122397f87fdcac25ef8e9d3d4a07cb8",
                "md5": "2762dd736e20eb04232c804e2539c0be",
                "sha256": "d5ddc96b67f805b3cb27e21d070cee6d269d9fd3a3cb6d6f2a30bc44f848d0f7"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2762dd736e20eb04232c804e2539c0be",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 670732,
            "upload_time": "2024-11-06T06:24:37",
            "upload_time_iso_8601": "2024-11-06T06:24:37.630205Z",
            "url": "https://files.pythonhosted.org/packages/44/6d/80122ec732bb103a2145db9b71905122397f87fdcac25ef8e9d3d4a07cb8/python_calamine-0.3.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2978805948f9ae23ce609522be89a402d5bb379c08a8fa8768f136c4e8c70439",
                "md5": "b59f4431e93f9cf5c4d978cc89b701af",
                "sha256": "4171fadf4a2db1b1ed84536fb2f16ea14bde894d690ff321a85e27df26286b37"
            },
            "downloads": -1,
            "filename": "python_calamine-0.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "b59f4431e93f9cf5c4d978cc89b701af",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 129645,
            "upload_time": "2024-11-06T06:24:39",
            "upload_time_iso_8601": "2024-11-06T06:24:39.779277Z",
            "url": "https://files.pythonhosted.org/packages/29/78/805948f9ae23ce609522be89a402d5bb379c08a8fa8768f136c4e8c70439/python_calamine-0.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-06 06:24:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dimastbk",
    "github_project": "python-calamine",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "python-calamine"
}
        
Elapsed time: 0.54196s