Skip to main content

Python binding for Rust's library for reading excel and odf file - calamine

Project description

python-calamine

PyPI - Version Conda Version Python Version from PEP 621 TOML

Python binding for beautiful Rust's library for reading excel and odf file - calamine.

Is used

Installation

Pypi:

pip install python-calamine

Conda:

conda install -c conda-forge python-calamine

Example

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.

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.

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_calamine-0.2.3.tar.gz (130.8 kB view details)

Uploaded Source

Built Distributions

python_calamine-0.2.3-pp310-pypy310_pp73-win_amd64.whl (640.4 kB view details)

Uploaded PyPy Windows x86-64

python_calamine-0.2.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (991.3 kB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.2.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (821.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_calamine-0.2.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (865.0 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (750.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_calamine-0.2.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (754.9 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_calamine-0.2.3-pp39-pypy39_pp73-win_amd64.whl (641.3 kB view details)

Uploaded PyPy Windows x86-64

python_calamine-0.2.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (993.2 kB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.2.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (822.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_calamine-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (841.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

python_calamine-0.2.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (866.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl (751.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_calamine-0.2.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (756.1 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_calamine-0.2.3-pp38-pypy38_pp73-win_amd64.whl (641.5 kB view details)

Uploaded PyPy Windows x86-64

python_calamine-0.2.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (993.2 kB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.2.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (822.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_calamine-0.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (841.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

python_calamine-0.2.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (866.8 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.2.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl (751.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_calamine-0.2.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (756.1 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_calamine-0.2.3-cp313-none-win_arm64.whl (614.5 kB view details)

Uploaded CPython 3.13 Windows ARM64

python_calamine-0.2.3-cp313-none-win_amd64.whl (638.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

python_calamine-0.2.3-cp313-none-win32.whl (614.7 kB view details)

Uploaded CPython 3.13 Windows x86

python_calamine-0.2.3-cp313-cp313-musllinux_1_1_x86_64.whl (990.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

python_calamine-0.2.3-cp313-cp313-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

python_calamine-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (819.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

python_calamine-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (921.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

python_calamine-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (880.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

python_calamine-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (829.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (836.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

python_calamine-0.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (865.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

python_calamine-0.2.3-cp313-cp313-macosx_11_0_arm64.whl (747.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

python_calamine-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl (753.0 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

python_calamine-0.2.3-cp312-none-win_arm64.whl (614.4 kB view details)

Uploaded CPython 3.12 Windows ARM64

python_calamine-0.2.3-cp312-none-win_amd64.whl (638.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

python_calamine-0.2.3-cp312-none-win32.whl (615.4 kB view details)

Uploaded CPython 3.12 Windows x86

python_calamine-0.2.3-cp312-cp312-musllinux_1_1_x86_64.whl (990.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

python_calamine-0.2.3-cp312-cp312-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

python_calamine-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (819.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

python_calamine-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (921.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

python_calamine-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (880.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

python_calamine-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (829.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (837.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

python_calamine-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (865.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

python_calamine-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (747.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

python_calamine-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl (753.8 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

python_calamine-0.2.3-cp311-none-win_arm64.whl (614.9 kB view details)

Uploaded CPython 3.11 Windows ARM64

python_calamine-0.2.3-cp311-none-win_amd64.whl (639.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_calamine-0.2.3-cp311-none-win32.whl (617.5 kB view details)

Uploaded CPython 3.11 Windows x86

python_calamine-0.2.3-cp311-cp311-musllinux_1_1_x86_64.whl (990.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

python_calamine-0.2.3-cp311-cp311-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

python_calamine-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (819.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

python_calamine-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (923.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

python_calamine-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (881.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

python_calamine-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (828.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (837.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

python_calamine-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (865.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

python_calamine-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (747.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_calamine-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl (754.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

python_calamine-0.2.3-cp310-none-win_amd64.whl (639.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_calamine-0.2.3-cp310-none-win32.whl (617.3 kB view details)

Uploaded CPython 3.10 Windows x86

python_calamine-0.2.3-cp310-cp310-musllinux_1_1_x86_64.whl (990.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

python_calamine-0.2.3-cp310-cp310-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

python_calamine-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (819.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

python_calamine-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (924.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

python_calamine-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (881.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

python_calamine-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (828.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (836.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

python_calamine-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (865.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

python_calamine-0.2.3-cp310-cp310-macosx_11_0_arm64.whl (744.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_calamine-0.2.3-cp310-cp310-macosx_10_12_x86_64.whl (753.9 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

python_calamine-0.2.3-cp39-none-win_amd64.whl (639.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

python_calamine-0.2.3-cp39-none-win32.whl (617.3 kB view details)

Uploaded CPython 3.9 Windows x86

python_calamine-0.2.3-cp39-cp39-musllinux_1_1_x86_64.whl (990.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

python_calamine-0.2.3-cp39-cp39-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

python_calamine-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (819.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

python_calamine-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (924.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

python_calamine-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (881.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

python_calamine-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (830.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (839.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

python_calamine-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (865.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

python_calamine-0.2.3-cp39-cp39-macosx_11_0_arm64.whl (747.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

python_calamine-0.2.3-cp39-cp39-macosx_10_12_x86_64.whl (755.4 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

python_calamine-0.2.3-cp38-none-win_amd64.whl (639.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

python_calamine-0.2.3-cp38-none-win32.whl (616.7 kB view details)

Uploaded CPython 3.8 Windows x86

python_calamine-0.2.3-cp38-cp38-musllinux_1_1_x86_64.whl (991.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

python_calamine-0.2.3-cp38-cp38-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

python_calamine-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (820.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

python_calamine-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (924.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

python_calamine-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (882.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

python_calamine-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (830.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (838.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

python_calamine-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (865.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

python_calamine-0.2.3-cp38-cp38-macosx_11_0_arm64.whl (747.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

python_calamine-0.2.3-cp38-cp38-macosx_10_12_x86_64.whl (755.2 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

Details for the file python_calamine-0.2.3.tar.gz.

File metadata

  • Download URL: python_calamine-0.2.3.tar.gz
  • Upload date:
  • Size: 130.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for python_calamine-0.2.3.tar.gz
Algorithm Hash digest
SHA256 d6b3858c3756629d9b4a166de0facfa6c8033fa0b73dcddd3d82144f3170c0dc
MD5 87a152780d934ca00d234ac8383b1681
BLAKE2b-256 31428a62a3fb3a3c20237f22a19d13c9e2f6ed810fe10825d335568d2dffd141

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0bcd07be6953efb08340ccb19b9ae0732b104a9e672edf1ffd2d6b3cc226d815
MD5 34cd30a17cbdf8dfe7b951fad7f6d481
BLAKE2b-256 d77a4db257a9ef2970e19af9e45ce810499734341895c2bffea8fef57c80d8fd

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9b7d0ef322f073099ea69e4a3db8c31ff4c4f7cdf4cd333f0577ab0c9320eaf5
MD5 f289118c074452343ea7a6d31237ef1d
BLAKE2b-256 cf435c0612c89283e28052d34d789b78d137b0368bfcd590c3dcab60edb6e26f

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5283e049cc36a0e2442f72d0c2c156dc1e7dc7ca48cba02d52c5cb223525b5c3
MD5 4d3f46244963ba898aabb2270e707f3a
BLAKE2b-256 95d74b3d6ac6e81590982ff02a3a4d320ddd5422458c38c793fadfb5c23333ff

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d5a9182590f5ad12e08a0ba9b72dfe0e6b1780ff95153926e2f4564a6018a14
MD5 a6b424aa5b6f6225f318a8ee5ca73d98
BLAKE2b-256 16511e56e8a986440df61013d594383ab5d6ed53c5df4128c8cbb6f6159afd67

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7aebcbd105e49516dd1831f05a0ffca7c9b85f855bf3a9c68f9bc509a212e381
MD5 5ad58e30d4b456b64d249f3d9fdf4745
BLAKE2b-256 cf54bf92a0868a325fbaa7449ff16639cd8d6c282982c41d7e31e6fe99551eb4

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2af3805806088acc7b4d766b58b03d08947a7100e1ef26e55509161adbb36201
MD5 5f555e95154bd450066a82106446125e
BLAKE2b-256 2fbfaaaec8b799e3f131dcc96d64004422ed2b205f72a2a7dec12e0197c066c2

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d00cef2e12e4b6660b5fab13f936194263e7e11f707f7951b1867995278051df
MD5 414ce65f56134251dc9c974992c6b5af
BLAKE2b-256 cb31f8794d640a23bb93fe9476aadd2cd8230eca0ae7f08b276aba5ac36348e7

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10f28b56fb84bd622e23f32881fd17b07ab039e7f2cacdfb6101dce702e77970
MD5 d49e25f30e7504a69667eb814900204d
BLAKE2b-256 d3c1229ca3767fedf7b67afdc1be8b810203c03dc24144591d1675cdda5f2413

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d2d845cbcd767c7b85c616849f0c6cd619662adb98d86af2a3fd8630d6acc48d
MD5 143355f35d01780ae94ebe55e05e7dbc
BLAKE2b-256 7636dd573c6208290c3f79b7508bdab06d2220536a5515dcb1b88f7708a79493

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5efc667fd002db9482a7b9f2c70b41fa69c86e18206132be1a0adcad3c998c17
MD5 7bcc5ef77c05b2c1d754f3f5a84e17bb
BLAKE2b-256 fcb896bc6b1de7ccf1dd1cbc911d3ebb6fceeca914d3c2f4b9ec1bba2c1ef692

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 68275fed9dcbe90a9185c9919980933e4feea925db178461f0cdb336a2587021
MD5 684430ec9a1753cbb7250a87c44b2f69
BLAKE2b-256 7f9580ab9549b12e4932fe8ed7485e3454413e391cc1777e5c5dca80c2f96993

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 602ebad70b176a41f22547d6bb99a6d32a531a11dbf74720f3984e6bf98c94ab
MD5 cac85085f93726682c46838f57cb6ef5
BLAKE2b-256 120f1d249548029940edfd7262a26434e2824c5bac4eb33523d42cc2236cd3b6

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c869fe1b568a2a970b13dd59a58a13a81a667aff2f365a95a577555585ff14bc
MD5 ae40f1cb28d69d08b3baf5695ac15f3a
BLAKE2b-256 3e1b03a2d88dfb44cf230a33001f1ade9d3679b32bd05333a7a225e7809824ae

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6a7c4eb79803ee7cdfd00a0b8267c60c33f25da8bb9275f6168a4dd1a54db76
MD5 2402cfe99e10a5097d3dd4cdab06118f
BLAKE2b-256 e4143a5e83e3aaaf575b96db63fdb7946aef3065b670cade40a1e9bf1dc891ac

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00c915fc67b0b4e1ddd000d374bd808d947f2ecb0f6051a4669a77abada4b7b8
MD5 6926d7442512b4ce1bcf576414542fa2
BLAKE2b-256 31eb7c2d76e351c79ae3dbb398b53aaf7da7640f90bfb52336fa892ac72be341

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab7d60482520508ebf00476cde1b97011084a2e73ac49b2ca32003547e7444c9
MD5 3b4832fb39f60e97cad4d724e99aca54
BLAKE2b-256 5f5981ff25bf35352d707ed30a70decc06983a637fd6981a46a3943c01dd2825

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 00fdfd24d13d8b04619dd933be4888bc6a70427e217fb179f3a1f71f2e377219
MD5 f33eb67e634da3b930812ae3bf83c243
BLAKE2b-256 ac70bb54053887482a366f9ce6374f1483495999bd24c9c42b64a8877ec59109

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e976c948ab18e9fee589994b68878381e1e393d870362babf9634258deb4f13b
MD5 a7d821a9e29b2b5412d9965fbec73208
BLAKE2b-256 6607082a63794be84109722f25a06d0025ed45483c7614233b79efb7d02c78bf

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6de5646a9ec3d24b5089ed174f4dcee13620e65e20dc463097c00e803c81f86f
MD5 bdfac9fcbb500bf45c3b6f2aa0d220ba
BLAKE2b-256 3d95e758c72cbab8d69931b71f71910887cf9116b358708ea641497a53da1941

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a21187b6ebcdabdfe2113df11c2a522b9adc02bcf54bd3ba424ca8c6762cd9b
MD5 4687efe16104443b305879635ccf08b4
BLAKE2b-256 3efa078dd3b17fd8325226e13a81e624f9cf7c3468892c291ab11d8febccd1cf

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 303e2f2a1bdfaf428db7aca50d954667078c0cdf1b585ff090dfca2fac9107d7
MD5 2baf5324499f15a32a7b595ebdae659f
BLAKE2b-256 733740ad58216914617d971cfb8aebac4c57d4e00f6a1c035072a7fe2e7c82c8

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2773094cc62602f6bcc2acd8e905b3e2292daf6a6c24ddbc85f41065604fd9d4
MD5 0b295b6e570a98b57ba96e5cab23b289
BLAKE2b-256 139d1b31329000dd78d7d46e1a2bb8e3ce5aa32bb849b28ba47a0775ee0c5c73

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cad27b0e491060dc72653ccd9288301120b23261e3e374f2401cc133547615d4
MD5 98b5f957c96f51c92a586fbeeccc2890
BLAKE2b-256 b15c516a6fb37b432aaf2410d2c45efcfe07393bde36b95c039cce77a455345c

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a8b12de6e2329643dd6b0a56570b853b94149ca7b1b323db3f69a06f61ec1e2
MD5 704e49be4f0801b3e544ae0dd370a14e
BLAKE2b-256 c6540b52e5b3fec7360a38dcd66b8feb8fbd124a9119bd2fe9f69f9a36a989d1

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-none-win_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-none-win_arm64.whl
Algorithm Hash digest
SHA256 9f7b93851c941efba8387bb3c004437541230e8253230868204a079f1dacc21a
MD5 c77d27d5bf4f8ce6161683032f9f6dac
BLAKE2b-256 ee96c361eda8919c978bfa2ce5e72d914a45448b7df6c59ff12760ec51930ac9

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 bd6606c893493eb555db5e63aef85b87fd806e6a0aa59bad0dbb591b88db2a0d
MD5 0bf39377d826be9785fa3ecc81f82610
BLAKE2b-256 86a2acffe0d0959204c87894ee88d9e4a0bfc99168b20b7d2e02905de7ec6f8b

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-none-win32.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-none-win32.whl
Algorithm Hash digest
SHA256 79aab3dc2c54525896b24002756e12fe09ec573efc2787285c244520bc17c39f
MD5 647b7c67834023e0a93e0b849adb2da5
BLAKE2b-256 959c209b83998ab14de6eb5c23d6da2415ac5f0a5b7bba56da727b1b3dd6ae0b

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4cac4095c25c64ef091fd994f62c5169f3ab0eec39c5bdbd0f319cac633b8183
MD5 78826384007f2db1e16fedbde8b13833
BLAKE2b-256 00736f8850c82449bdb996d9e9f5aa75f128d1f52e23fae6c3b9df840518fef1

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 767db722eeb9c4d3847a87e4c3c4c9cc3e48938efaed4c507a5dd538a6bc5910
MD5 d9915d3e499ff20aa6adfa0d75692a52
BLAKE2b-256 623f008030859748c5b44b1736ff8ac4542335cb9169d5c39ec42e8cb8ee0873

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0cd8e3069c57a26eea5e6d3addb3dab812cc39b70f0cd11246d6f6592b7f293
MD5 607a161457e45b1b5c66e5266df75f44
BLAKE2b-256 fb69cd4b55e486421b6f9107c4198d2226ddffa9c739020c84fbe7ced2964d96

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19421a1b8a808333c39b03e007b74c85220700ceed1229449a21d51803d0671b
MD5 85a789f993ca09ebb220fdfdb9f8f349
BLAKE2b-256 e42af5ebaeb8b2a806d5a3c835e1fbe3c51996b0bd0245d2bc151f540829892e

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c15ccb20f49eb6f824664ca8ec741edf09679977c2d41d13a02f0532f71a318b
MD5 37de1a9c45b81488fd5a743047e93f3a
BLAKE2b-256 69b2cf29c39ec66635348b5f81759ad39f85eaf18af258478ea464ba577d026d

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 484330c0a917879afc615dc15e5ad925953a726f1a839ce3c35504a5befdae0c
MD5 0da6c4a63f60d4ab846c78508bf8f29a
BLAKE2b-256 d810a1dfa8f3a24b29f94de97cc50acd21cef6413741c551ed18746ebae074de

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c25b18eca7976aac0748fc122fa5109be66801d94b77a7676125fb825a8b67b9
MD5 0f4814520f41bc3871bef7f82555f63a
BLAKE2b-256 89895b5d37eb4c67acacf8dd8783d8cec69d3ab5ceac4c7a42270c1fb2602b07

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d13822a6669a00da497394719a1fa63033ab79858fd653d330a6a7a681a5f6ce
MD5 992a36545ad2ae958484c150fdba1662
BLAKE2b-256 eab5da31a95aa5fdd379d9079d4b16d09c0f97def25bbfd7ea36154e721eaefc

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc270e8827191e7125600c97b61b3c78ec17d394820c2607c801f93c3475a0aa
MD5 9d585e8ad498b1f3b04d49a3e9fbddd9
BLAKE2b-256 181e78c29e7c353bdf3e7d91d7fe6c27b0fd820a9cdaef0245ea0fe2b2bdccc1

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ae98e1db1d3e74df08291f66d872bf7a4c47d96d39f8f589bff5dab873fbd13
MD5 114d2cc224d917de38ce3ed512513c1c
BLAKE2b-256 5fb5dfd0a286c701901b52a4b5200185f0f5e0b40e7022ec593c973cf7010f1d

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-none-win_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 87af11076364ade6f3da9e33993b6f55ec8dfd5f017129de688fd6d94d7bc24a
MD5 b8ed7ecddd547c24cd62d046c32e8cc1
BLAKE2b-256 6d0dd3457d3718cf9f48166f4601d20498b83cdefda04445ba3b92a8224eaa4f

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a8d1662b4767f863c17ea4c1afc3c3fe3174d7b007ae77349d481e6792d142fe
MD5 b5a7cd4ae11b0636f20ff36dad2a58fc
BLAKE2b-256 3071de54095d6be4c61def1448497b24638ab4d7c0698c1ac812b6eb8dbf711b

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-none-win32.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 fc73da2863c3251862583d64c0d07fe907f489a86a205e2b6ac94a39a1df1b42
MD5 9cc9730c0f7186f4081135d9a019ec8b
BLAKE2b-256 7a8ff5b3f7c0cca4e20038c939e43a576fe79e16d49d17cc948955f6a9a2b740

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 599752629ab0c5231159c5bea4f94795dd9b11a36c02dd5bd0613cf257ecd710
MD5 eb145dfe01349ef1a0fd8850471f079a
BLAKE2b-256 eee290bf436db343d3b3ab98c462f907d7b7ad7defe731101d5190198d7ae0be

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a7da299c1676dc34cd5f0adf93e92139afbfb832722d5d50a696ac180885aabb
MD5 5f6826c6dd929365fbf800e84eeafff4
BLAKE2b-256 514954087a2a99e45ba501a1fdfd94421f527cf947a6de2f2482f7a3e803b6be

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68fc61b34a1d82d3eee2109d323268dd455107dfb639b027aa5c388e2781273c
MD5 b4967a237e191d47060179b611940a1f
BLAKE2b-256 4b1627148ad5f2d33654af63257026f2d5f6b8e6a27693bf88c6cec49471fe1f

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 583656c6a6e8efac8951cd72459e2d84eea5f2617214ebc7e1c96217b44a0fa1
MD5 8d0c687e473219bcf505e0b2390afeef
BLAKE2b-256 253573bf5a472acf61365a53d75b106a8705578aca162d4fe81a203068323a93

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4639255202380251833a9ab75c077e687ebbef2120f54030b2dc46eb6ce43105
MD5 6f6537d531e5d197c7902283fe4fb7c9
BLAKE2b-256 cfe7fc02544922b54d04edeebfc2ab1882231a5c623685ae1350c59f44ccbf58

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d2c8577b00e13f5f43b1c03a2eca01848c3b24467ebaf597729d1e483613c110
MD5 af3ca82f6a112f20ca157d4913bba6da
BLAKE2b-256 6da4612d68e76dadbe44d6bcfb85b3c2533ba32e275f01dd50e8d3ecdbdd5c75

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baa75b28686f9dc727d26a97b41c6a2a6ca1d2c679139b6199edbae2782e7c77
MD5 fa92d4e612b76df695b2d0b7dbddf257
BLAKE2b-256 782efd7b6b2bd7fd2dbd9b5aca2648ee5f6c142ba436940b36ef96eaf21f2532

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 64bb1f212275ed0288f578ee817e5cad4a063cfe5c38bf4c4dc6968957cb95b0
MD5 f3447ae8d19846b3924fa36a809e2581
BLAKE2b-256 af2b711d9af02a71352bd025a73b969e9824661e5cdc50b0b67570ddc6715059

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3557bdd36060db4929f42bf4c2c728a76af60ccc95d5c98f2110331d993a7299
MD5 728c55a85829bc0818d7283868c43f7d
BLAKE2b-256 dea1e9cf4bc7c9d219c1fded07541ee2d4c7c5c0bfed791085030b47cefb514a

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 40e5f75c4a7bb2105e3bd65e7b4656e085c6d86e46af1c56468a2f87c2ed639a
MD5 8c1d2d4555d2f8f4c968990f709436c4
BLAKE2b-256 05b89aa65fd7c8bfab23c29c047ca680a83a5e6bd11470bb038ea0ad19bd53ca

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-none-win_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 f8c4c9e7ade09b4122c59e3e0da7e5fba872a0e47d3076702185a4ffdf99dec4
MD5 64649b7f7162016d5517e4963ade46bc
BLAKE2b-256 96c2fa78623a6652c96f2154eea64ddc136879198f2608b96b976c29a5a0090e

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a32c64e74673fb0203ad877c6ba4832de7976fd31c79c637552b567d295ff6b5
MD5 f4a32347c49903daf76c28ebb92ba8ac
BLAKE2b-256 eace7f8ca12318f299a7887049e294ec6b17f479fccebeb3c0cc7d111dc95fdf

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-none-win32.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a0ae5a740c9d97b2842d948a91f926a0fab278d247d816fe786219b94507c5a2
MD5 ac335777a6773ae76a72372f2d606656
BLAKE2b-256 5a49ff32110ca9f6144a17feda6d8c53ca908bddda230dbd3e36daa13bd018b9

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b95afd1a1cd3871d472aa117537b8731c1609756347874b251300cff152176a5
MD5 87f8ec15b3f4ed19a47fdad6d3f10498
BLAKE2b-256 ab1448641ddeeb28101870861031600bf0b6114d3f1ab3648f3f222d857d949a

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7a604306cd5ceca720f0426deb49192f2ede5eedd1597b7ff4fa9659a36dc462
MD5 d831b59e7668b5f44b3321433fe25668
BLAKE2b-256 591d820add87a71f9e82e0f0e522a1dae4df3c07160f7faa9b82d2922d7895d9

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f675e7f45d9e3f1430f3114701133432c279aba06442e743220f6b648023b5ee
MD5 a05397e656bb96249dc997f2405d1c01
BLAKE2b-256 778a61aa241b6f536cf0f32f03735b8c365b35c91c25313fdc87d2d8f578d78d

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1991261d40be3d577ce48c0884c6403aefd1cbef5dcc451e039746aa1d185931
MD5 25b1d186ebaf33b86bb51c9bdf365371
BLAKE2b-256 9f7cfdc4b68312836cea500355dddca4e72328cdafc67181d951472575ccd335

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f1f6dab7b44deed8cf7b45a6d6d2743b622ba5e21a8b73f52ef1064cc5e3638
MD5 bf501283da9d148c95b4d759414ddf8c
BLAKE2b-256 428fb090dfe6c7992ac777fe62fa555fbb4d998489f5c64a5213f8f9fdf8e0d3

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3bf4cf41518541016b9442082360a83f3579955a872cfca5cec50acc3101cce5
MD5 6e4ddd8793e5214122dddd2c9249ee5d
BLAKE2b-256 4c078e0305a3dbbb84b98531f7bc66e4ab0e4876f88d0f2b02f65743555000be

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73766349215f69854afb092ef891cb1ff253f4b6611342566c469b46516c6ada
MD5 c686d08bf54ebd7379fa050ec86a82ee
BLAKE2b-256 fe5614a97826bb45742c3eb578caf613724fbcb183871a67f39d998be33073c9

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8bb7444454cff2c1ad44e7f1a1be776845cbad8f1210d868c7058d2183b3da74
MD5 4d25431a3d655dd077d829db31e6520f
BLAKE2b-256 93918dd2298fadc546e634d1c247db40b19c201d02198b237b793cf06fbee941

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b5b0803c70269d93b67c42f03e5711a7ba02166fd473a6cb89ef71632167154
MD5 710543a373bb9250a28fd115e5af3688
BLAKE2b-256 704bc946e1d5ec8d8d854c9b97e2c12e820285bdffeb9ccea4fc4f3b7f734d12

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e5a36cca8b447295e9edddbe055857bdfdec56cb78554455a03bacd78e3c45a0
MD5 1a661b5426ac090541aa246535be3bab
BLAKE2b-256 3d840b569bd5faa828b02c8704e136f1335f3f47c9cb4e548cb986b4e7efbcb9

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 6d73ef3131b3a7c3894a533857b02fc50198fb65528cbf869742555d1497ee52
MD5 b4bb73c3d19d952778e69cd0dbe00c03
BLAKE2b-256 cdd7a2a66fd90f8ca0b465fb2b44489cd2043824838cffb6574437a7a89dadd0

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp310-none-win32.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 37367f85282d87c0d9453cb3caec5a74f2720252bfbc1365d627e9fe12251e56
MD5 90d70d34a5a7e6a3e4c37f3d449d2dc9
BLAKE2b-256 6a891a62cddafc68c54702b816b8928797d8a9d999683525c6b163e497caeaba

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f19c8eb9f2182cca54c274145b6c8409776b7c08ee5be8a61d44f0448dc55192
MD5 cee6f7abf9301a1f1659a1d7ef481aa0
BLAKE2b-256 694aa0b424e90ecb28ddebf234810f1b7441375886222c9fc7763ae67e3514c3

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 11e2a74da47adc502c776e399972864802a20d358001a1cfaefb13c36a5116c0
MD5 ac1c8a6846904364ee53d38a2b768828
BLAKE2b-256 5d20f3400b6d9abfac490a92b0437b0c7dbbde77d77e0ecdc069d666acdf082c

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa1baf404027779cb298d15939a5268eb3d477c86a7a8f4cad0734ea513876c2
MD5 b44cb0b6e1d297a876f642d3c0772f09
BLAKE2b-256 4f20b50b69954506ef7f57b581413c39df40cbb84e6e7185173829a50348e2fc

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ac718eb8e9753b986f329aec5dea964005a79115c622a2671fccd0c563d345a
MD5 9dc388b1a94c2be9f3fe1a8afe506ebd
BLAKE2b-256 6e930ba03ab646aa88adbb07d3035dcc2d7a518d70639524e53b3083cb87f915

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2ee8250638ad174aa22a3776ebd41500cf88af62346f1c857505158d2685852
MD5 b455942cadf4b8fb7db899a322cf6c71
BLAKE2b-256 83f5b0d17d966b84a8ac235d2c4fd4853b7d3046feca93aa69a33db3ada4817c

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e0dcdc796eb4b4907618392c4b71146812774ca30bf6162a711b63e54214912
MD5 bd09bcf7984a0f82fd50d5e11cdc672c
BLAKE2b-256 b8904f351bbc8946c0b938fa2d0deb39830db16e5a51583623eff0923734dd8a

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 847373d0152bafd92b739c911de8c2d23e32ea93d9358bf32b58ed4ace382ae7
MD5 29506352bfa86691dbc23b72b49920f1
BLAKE2b-256 2fd635babdc54fffc9fe6c22e6452dac42719a033bc38e62580e80b772ca6172

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc36a85f1a182e49fc318b3e91f06f390d3889ce8c843721cb03a68ca4c7e4ce
MD5 fcc71adc8189915fcfca4f92438fa937
BLAKE2b-256 806e7da881f5dff250f209dc7fa39c8754752fa509fb731e57c2d055530f6722

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cfbd23d1147f53fd70fddfb38af2a98896ecad069c9a4120e77358a6fc43b39
MD5 d4ab5b7d1bff48b5b4196b4c29d7edbb
BLAKE2b-256 58ef1c253e6aa84912f19d94c92ad8af03a1cc74384c0fbc447d60ca8d307604

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f292a03591b1cab1537424851b74baa33b0a55affc315248a7592ba3de1c3e83
MD5 46c72d3e42e211f77e0b02a9b5b9d1a1
BLAKE2b-256 79aa2a544c40f8cfb2c321ee9ce5c0ba091bfb8bc29025ead37adb2fd057f126

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 af65a13551d6575468d7cfcc61028df5d4218796dc4886419049e136148694e6
MD5 68aebdf33a47675cde5c232c29c00df4
BLAKE2b-256 51fba7746946e05b0b772444379758ac127d98b9be6c1b2c6a22aa8d54ee6e84

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp39-none-win32.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e5a2c540d631343ba9f16be2afbb7b9fa187b3ced1b292ecc4cfcd51b8859bef
MD5 a4d439819e80b22c2a60957109d0412a
BLAKE2b-256 c0da21ad9d6e34889b1146749fb22a8bc1305e909d25bea286d1fa5c8b652170

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 206524d140eb7d2999791afd4dfd62ceed531af3cfa487ff2b8b8fdc4b7c2b50
MD5 2dd02c0169f8f3f43ae17389075778c1
BLAKE2b-256 d2f2616b54c23f9c523112abb8fb30c78b491d7a065254cd1f86f06d036bb655

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4972a653bd54a4513e9419c26576429b391cdb4b417e7afa46469089ee7c10ee
MD5 9dd42ebea308da540a981559e70e2cc7
BLAKE2b-256 fef7e67b0bec93ce7aea6fb3b3518d6cb08e2c4699ab42a88b8cf5bc3b1b4ece

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 042385ce2ba386ef72bd678ed44ee6d4a5de20c9561c3cd1ecd2a57bfdc874cc
MD5 61ed8f53903b48f4a62eee12b44cc751
BLAKE2b-256 ffb5eb3cfdb6553ab279977fae1c156023d67c17f78d857831d1093c056e105c

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce29ebf7b8bd978ef7aaf7755489f67f056327a53ef112a9b24c7a90970f9467
MD5 aec36251666036ed7f4d9bade73ea87f
BLAKE2b-256 367d10244fc2a5ca6cc56fb6e634fb7b70e3c39641b61f635e09cd0aad6e6e6f

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6b43b8d0b556cb6e9fa9280cc6a61945fcef0005622590c45fa1471705476b5
MD5 d3a799a1f91e0da50d5a94da25c00731
BLAKE2b-256 1d01d94af84da8555a0afc4b9b1ca341d8a5be39cf3e8b9529d4648f92f29b1c

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4086c857d2cd1bf388bab6f18ca6ae453fb6618b8f3547e76447dc759b9a3a2a
MD5 39ce893bc8458ba06a5c9b6c9f8b7a9c
BLAKE2b-256 4a4e3bde2e760851b3c7b0106ef19823cb66c86850df8f277240d0a509b28922

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 411812b0ffcf042be71408ae82b6fcc8dd70e2ee9ba8e8024a70242f7bce305e
MD5 500cce2850ae94cca264f93622f0f304
BLAKE2b-256 65cb6c027869d2f7f949b0d5318b70150adf3252fab485ed05151ef58aa3cc2a

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e55fd471afd1c50ad88b442ef20c57d7efd38c7c300992708aa2cff943a29b9
MD5 8c59c189e152f1bfccd0bb8a23e3b5ce
BLAKE2b-256 65e181bea87e45f06976cac5fc4739e7d6077096396e8e7d0a5201a3c1882500

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38b6d1c315feaacfa95336f7d8d82bdc9fc75854ceae3dd003f075a4cf943582
MD5 3c76f63f34aad1a36b411b9b3c58918f
BLAKE2b-256 526eb02ec25497074c9f98d1f2eefd1ac91af667c2d745e746af3beace5b115f

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b439270ac6283a2e00abaae167ed35dececaa73f394bf5be8bf8631f3c9757fc
MD5 82260dd425cd1dcfd70b35df7f47c404
BLAKE2b-256 077e689ed47d1a1363cde317bc1c01726b3f398efd5df9eb4f0552cf75761f2c

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 cd9b57326453be8ab52807cde90f3a61a008ed22a69489b41e9edbf66fb86a68
MD5 c189f20d2154a568ac49227240e0d0a8
BLAKE2b-256 dbfdfe416e63d60c6c32d59cb6c75a8e899c2f9131cea48dc3713a676618304c

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp38-none-win32.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 08b4b35d5943574ab44e87e4ccc2250f14ce7e8b34ad437ff95c1ae845823d0e
MD5 5fde7a66aef1edee5192ebe3ed44521b
BLAKE2b-256 f09ea720742bef402e7bcb48f9dd721f57d8e06e2376f78c21e17e379a3ad732

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a6f64365bfc2cf6acefc3a618c7f25f64c317be3187d50dba3a2ccdbf405f911
MD5 817cbd3e8e2a4f46ac0761d9b034a39d
BLAKE2b-256 acc8a3f7e3f8bc9a68d322286c59f3faf6c6437c4d9e172d889e16775b84b46b

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 06ab4232827eed11f6a40ddca5dd9015fe73a10c1cf71a4ab2aa26e63f3d1ffb
MD5 6c2b1beaaa29e5ff91873af8bfecc764
BLAKE2b-256 08e86b4078418cf5ed063c0c83b1bdb9b403b598d27f6193d73ba97b78f8da45

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 660347ae698f63f4a495b60411e913cfa448b149e7f51434934782559df6158f
MD5 335349c0890dbe107e04a78f5288c630
BLAKE2b-256 8a2f18cbe3a5546de08da1a4bc2d0c363f203e8b31e4aa4f87d17374b17020ab

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98592f79f46cd2d74cd7f4e69ef2031a51138159a5852efe56fa5bc289c106b4
MD5 abaab0413ba077a85c3e781e01979885
BLAKE2b-256 e176ebbf6ade91e0d42661277a5d7411c39c163c6eed8e8f29eb3a22b45423d8

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ae983b57379225f44102e0ff2f3724428174d0156ac42b1b69ed7f63ce105b1
MD5 a5f133f73dfc9a62d4c2f1abaea60049
BLAKE2b-256 9377c5cff1f07a7b90da5a352a57e303cfad5e5be0608bd6570128853b0356fd

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7fc182ebd15dd629d5c355207b125fd2301f109bc6cd2d91b1e67626fdbec1f
MD5 d705e94cc2c3d65b48f1f59d4348a692
BLAKE2b-256 66509b11dc433f4a7eff3adc6c76641c0fd403790b9fa46e3258e6ae29f42bf7

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be628b380f190b4140801731786f14d59d5a25c54398a724543181e6f46e71d3
MD5 3c0d2bdc530396faead2d4c6c26090da
BLAKE2b-256 6734ddbda0e0ac4b8b396fca7de2aa463fc2a5d4d16fd90818a366af3b269b2d

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fef87aa0b533c15e22ddb1bd6c257b3de9616c7a4ed3ca00c3c19e4cd8825d08
MD5 fbaf22a955260f8b2610811a292095e6
BLAKE2b-256 e384410fa5e2d255a6abbce54ffbdd4ed0a836b4e37969d413d43da4564c526f

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7397213b734e71434be06c3391ba9c23660215dc5e1c5601b8141f9f623fef84
MD5 c1ee5084eb9005d58ac7a0c957858631
BLAKE2b-256 a7a5cec3531ef555cb247bc9f2fac190bb70178acdcde30aa468044c89dcbfc9

See more details on using hashes here.

File details

Details for the file python_calamine-0.2.3-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.2.3-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5fa0395816ecff641b5df7ee3a2a953fb0f449a88f780e1c8b762b94578fdb9c
MD5 82e6694f4be85951d2073ae3840a5f37
BLAKE2b-256 a8a1ac5c75337f4c564472125851434a7e36ef75878f49939608c70b1b24b442

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page