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.0.tar.gz (129.6 kB view details)

Uploaded Source

Built Distributions

python_calamine-0.2.0-pp310-pypy310_pp73-win_amd64.whl (634.1 kB view details)

Uploaded PyPy Windows x86-64

python_calamine-0.2.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.2.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.7 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (750.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_calamine-0.2.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (767.8 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_calamine-0.2.0-pp39-pypy39_pp73-win_amd64.whl (634.1 kB view details)

Uploaded PyPy Windows x86-64

python_calamine-0.2.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.2.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.7 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_calamine-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (750.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_calamine-0.2.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (767.8 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_calamine-0.2.0-pp38-pypy38_pp73-win_amd64.whl (633.1 kB view details)

Uploaded PyPy Windows x86-64

python_calamine-0.2.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.2.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.7 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_calamine-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (751.4 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_calamine-0.2.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (768.2 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_calamine-0.2.0-cp312-none-win_arm64.whl (608.7 kB view details)

Uploaded CPython 3.12 Windows ARM64

python_calamine-0.2.0-cp312-none-win_amd64.whl (636.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

python_calamine-0.2.0-cp312-none-win32.whl (612.0 kB view details)

Uploaded CPython 3.12 Windows x86

python_calamine-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

python_calamine-0.2.0-cp312-cp312-musllinux_1_1_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

python_calamine-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

python_calamine-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

python_calamine-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

python_calamine-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

python_calamine-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

python_calamine-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (751.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

python_calamine-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (767.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

python_calamine-0.2.0-cp311-none-win_arm64.whl (607.8 kB view details)

Uploaded CPython 3.11 Windows ARM64

python_calamine-0.2.0-cp311-none-win_amd64.whl (634.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_calamine-0.2.0-cp311-none-win32.whl (608.9 kB view details)

Uploaded CPython 3.11 Windows x86

python_calamine-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

python_calamine-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

python_calamine-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

python_calamine-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

python_calamine-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

python_calamine-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

python_calamine-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

python_calamine-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (750.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_calamine-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (767.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

python_calamine-0.2.0-cp310-none-win_amd64.whl (634.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_calamine-0.2.0-cp310-none-win32.whl (608.9 kB view details)

Uploaded CPython 3.10 Windows x86

python_calamine-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

python_calamine-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

python_calamine-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

python_calamine-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

python_calamine-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

python_calamine-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

python_calamine-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

python_calamine-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (750.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_calamine-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (767.3 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

python_calamine-0.2.0-cp39-none-win_amd64.whl (635.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

python_calamine-0.2.0-cp39-none-win32.whl (609.2 kB view details)

Uploaded CPython 3.9 Windows x86

python_calamine-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

python_calamine-0.2.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

python_calamine-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

python_calamine-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

python_calamine-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

python_calamine-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

python_calamine-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

python_calamine-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (752.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

python_calamine-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl (768.3 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

python_calamine-0.2.0-cp38-none-win_amd64.whl (634.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

python_calamine-0.2.0-cp38-none-win32.whl (609.1 kB view details)

Uploaded CPython 3.8 Windows x86

python_calamine-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

python_calamine-0.2.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

python_calamine-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

python_calamine-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

python_calamine-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

python_calamine-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

python_calamine-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

python_calamine-0.2.0-cp38-cp38-macosx_11_0_arm64.whl (751.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

python_calamine-0.2.0-cp38-cp38-macosx_10_12_x86_64.whl (768.4 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: python_calamine-0.2.0.tar.gz
  • Upload date:
  • Size: 129.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.13

File hashes

Hashes for python_calamine-0.2.0.tar.gz
Algorithm Hash digest
SHA256 3cc81fefbd697050bed7d9968be3562ab41390bf8fd0a79e97eed6056be3d332
MD5 d6d5fb49da28c89cb57ed93be9c5bf6c
BLAKE2b-256 d456dba5decbc44c7e534b458719934e52d889cb9bede4f713005fdde961ae89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cb6f2a65444e01032564f7c5fdcfea43b6506b82f2d5308edd7d1d030bb01a13
MD5 7d7b4b3b2ca1ff293ddcd9f1eae67340
BLAKE2b-256 6252cb2efdd41f18c8530f79df36d62c2746ccea6a07637288e18df3c6c2e11a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e6636349742c73944a3cb05baeb99a2d72371712b35abf7f0b22d9de6b85b8fd
MD5 2d61a65dc89c75720b6ad550ee5545dc
BLAKE2b-256 0348cff3b7fefc6124525eaccd4dbf0feb8319425c1b6f4284e05467f89c5fc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fdb4a5b9e719668054cd9d4b210b38ae0eeb056340125704eb3665555e2f6e04
MD5 ec7df8e16be263d31ae78535f0e444b6
BLAKE2b-256 b0fa3acff70ae36ac353292ccacedfa2f79e45e1af16c9bcb0e4365f55c24be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 caa39238ff71d47cb4ed556e7080829e8c9dae3fc0d2a01c6bb0114a1f313cdb
MD5 470860c88df12c1d0ef598750216a504
BLAKE2b-256 12a054657944482c3c83e482908f3f09d31779e21491dcb62c71706bfa9b8cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36beae8347b414a321276a7d065f672883f075ff40fa1c789e841bf6962b96fa
MD5 7a83296ba814bf67cb4d26e193619ecf
BLAKE2b-256 88b7d90d88d491afdac1ab5171b226046bdd78784c855068b1fbd17216507384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e42b156ef7485a846195fc01013eab2816841bc8b87f0393dc8f1c19f2e4f12
MD5 f0893c64744ca0f2e8d07c9a65e3bd0e
BLAKE2b-256 c8b1c4deefa36449bd62a18da04bcf9fe6230d3a25369628739821b7fba5fc24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74dce7c8dc863dba44d52effb1290505610564be574924fc92770728bdd38393
MD5 6d36eaaa18be54dd708fe3ca59097c5b
BLAKE2b-256 e089723eb6219e889f564610c875583fe063d3c68543c7d632fb865322a4c122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d767fb8db8527d6ed8d3602fb9e8778a32ae0db66b1081541fbb1f804796bd87
MD5 3a85bdacb4ccfa1ba926c64d9b080c34
BLAKE2b-256 12ff04d2f35c3ad3ed081d12cbfe99f9b24635d39c4fa59b7cacd68ccf9cbb90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 91b67d4284de11046c5ab20afebba17ea72415e7773089e12c0a3dac390e5e73
MD5 6b0f74cf0bc45f0a213dc9e13f1ce52d
BLAKE2b-256 8170254b6d8a263d0388944d8562f79ac93d603aea6e29fee726971c74f4c588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 06bfd869d4e1d0c48273c4c262359aa912eaa5d40ee1b5b653dac3e321a61e4c
MD5 3408423c122d088609150a7b4479786d
BLAKE2b-256 5df1f798f066c008313d312e383d8516159ea29aad8aa5c80094162926019487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2d3b010c9824cddc426cac51654521fda9a33c902c965fb4b2c8fe8d75839e22
MD5 ed4a5233c875844acc1bc877c3339d05
BLAKE2b-256 f510f8e3f69ff5b0fd029bf32293f9167dd913f1aca0406c3c235ec6480be8c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91089a7f4dba9c9312b873ea2f47cd0dc868db2a4ae829b720e86a761d6daded
MD5 384b1850457ca556eeb283a12ff00806
BLAKE2b-256 772824fecaa8941df92242bdad68b2ecead3932b9df6f5c2080c3752abce4542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 183a78c284597c0b25df15a7fb74baa90df71fcc71721190c9c93229958f5809
MD5 47c85a3ac03da7802ec6decac590e264
BLAKE2b-256 9c5bb1be31c3c597fdf22a14afb5b471400a2d30679a38ee13bad173164c33a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 25b4ee9cc67248ab69e46920a9f10a89efc27bcfe1586ca299136ba0bee16c0d
MD5 48092ca2ee2ac8b74c49cb67255e9b4d
BLAKE2b-256 8db1c2149f7ad696c2f0b92f9f68b27844ed9c4eea3e2bc6908c163e940667a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c08312a1f8a99cf525714c53854f8c5a9bf12d7c04adaf71a00c88ed8228704
MD5 ca2e84d0cb28a3555a0350e0331d0407
BLAKE2b-256 eadb32f4d8719415e7711e06dc411a5422da90e1a3afeaa536f02b26e710ce2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f0fc394191aea88efc0ff0e3cb1fdd4d15c33bce13f075187c3caccc995e964
MD5 9fb72cdb4420852f95ce8f3cace90c15
BLAKE2b-256 d30abe9b2a83734fe00795d92a87ab5e1b356e5ff952b990ff80c310cf62db69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b85f3156c87f870e3f48765ce46347c67c13fd0fc7e3de993285fd428f99b282
MD5 47fa66c825cec780fbded3979ba09f4b
BLAKE2b-256 0b877d52d3783376c7d89fee9a3f16d296616ffc893512d8ffb4911da8af7687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c296857b22568a381cb1cf908928ad8bb18ea19590c1ff3f67a51010a29cebb3
MD5 fd7107e97515d783de9b3156c42ebec2
BLAKE2b-256 0d6ba0a3b9135c8fa444ef49b2b287a505da59cfe262a71e1e84feff75ae5b4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 97b38e1f9c3d6dd921662d327ebbc1ef912faa970f28066784777745a4b9094a
MD5 671cc4fde51efcb75f38b904546b9b4a
BLAKE2b-256 92c892bf025f00aebf18e77855f4c02853f083e4194740ff4fa1533e77148f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed12d1780d0235c4ff5a5a2f9fab846498ee90e739def6aa27052895a860e2a5
MD5 712c3f5c2d8ce0944675b219c958b299
BLAKE2b-256 6b78b15bce5c8609033c676dcd0bffe463b2fe46dc0124121677c41f2314bf0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7450398d1212bb668e88e42a5a3c1239b55371d1514c2d9164ecdb89c8b02426
MD5 3d5250334c805e283df13a6f9e9ebe3f
BLAKE2b-256 6bf22a06fe7575c0a7cd9af5349d90280dee590c6898774d8bb1100a57a13682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 978431179238f2a61046696bbe93aff9f4c9f7c2d054b84b8963c246a837702f
MD5 62bf3cd081bca36828a8978b0c4f3a2b
BLAKE2b-256 39dba45c93b9740f7f5670b57550893a8582913ed19c7447a56794f6719507cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2bda72687d6fce125ccf373ad760f5f50561219e91664baf51ab36ec0dbcaf2
MD5 fe99c37cd0c51af296dee1b8f377e48e
BLAKE2b-256 358d381fc291bb381141ae71807264ca02b874037a28f05cf844e4dd0d03f237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e92f84ea190d881bec8852c6b89fa3ca93ce514094a827be2d66c31cec063838
MD5 4c3a8a2f4739bb8fd03bfb66dccd4627
BLAKE2b-256 792efb8255d2072ecde434498c101c0c20ed1fd52ab83974bf698ce1fa339445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 7d7f829ee9db104e3b1c751414c62ed124aa7186c2887112722e6eb90a376db4
MD5 001dc97163964cbb644885493cf563f5
BLAKE2b-256 ec608114acd666acd181f2d4ddbf4ad004d6aa627ce0159711aa23a456546b5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 3d167ea8b2d929c1edcc69f0bad0ff57529673ba72cd9448f20b8e1107993268
MD5 44401a4c654c400c9cf27fc0ce05f8f5
BLAKE2b-256 df27062441d6aba37a0d1a6c455eeccb2ff58ab75751df4e667dbdb15b4f7056

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 91fb49823df1ef80b615a8f1b6b4bbd40bb523f949333c7e41d75efa6cbe88f9
MD5 9282a71334af592adf275cfafde56e19
BLAKE2b-256 2a8763c727dd279ffa87eb11184e7cd52f7bf4641b23b7c8fec71899450fff10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ac94d26a7cdf3ead932a1352f4112efaa84ec913d1cb6934176428393c6e8b58
MD5 2dc9008a1086b874bc98b91a530f8a29
BLAKE2b-256 350e8d45b9ffc4119c8ee32c6ebbc7b993102db9cf88770691e1a8e7b8ca2e1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 93e97f3496fed357072acb00ff7145b930cb060a6aa2ac2589187a647db8211f
MD5 6730b168fbabf724b0146312ca7324cd
BLAKE2b-256 8dc191139e58aeaf720bd8613935f2e7a0c05cf5e0cb61da656163b3a0ca5b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7875433fa6050d042c31adf3588dbc1718d7d10ee9c7b0e51ed2e5ee0f6e68e
MD5 ae8b0c207c3425236690ebea90203953
BLAKE2b-256 04a3b87aee5daa25d2dedd3f81ffb14cbee7f4cfae1169dbb6224c345873a355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6dd7efdfa07ffbc048b3374b79c13aa9fc0aee8eccd0e9a8c6b5f17d8316c08
MD5 8cf1aa31fab00afe234f12515c0c86b3
BLAKE2b-256 28985d69f6cf76de3a558e5e59e58429017408d1f2f63d03b55e516a21091786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d1fd1f1d51fb720aca1cc1b2be7224ddaeb0b4e15276504669118419b6f4b90
MD5 a15940774d21e01da9f49ca0940eedc3
BLAKE2b-256 b4f634e8143b6f3d88ddad3258218acf8dc625cc3401435d09241fd4f0932004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 654f8beda2036fa3dcf707f3772f838bd5d6f0d5df99980b04492cc37d9dfae1
MD5 e3f54596731ef523fa85fea1d17bca43
BLAKE2b-256 748b7479b8bf042127675fae939af4683861fa12c44ec82e51eb4f6638090bba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c8e245cc6189b2931dc49b1750f9416420b73fdcf789a5bf8b7df6128285b2c
MD5 39b0b344d436ba8e24fbb831a33de1ef
BLAKE2b-256 92ce1c90a99efbe5acc4a120fe7289290668c8f077022b666e6690e81037cae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 86c3ebc805df4e864fbbb669b868ad72c78f2f2e27d39eb1709267228a36bdcb
MD5 2cc3762b42ec7ccf8f7ef8199956ff66
BLAKE2b-256 dd89cc238863ebe259765571bcab8280295b4f36d4c74079e760241e146ca3f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b30c5b9b5405f98ddb1f276a231d3f63456ded4e3a3d88eebab61c23584a5b87
MD5 d6e05ab5c9fbabe1b5bcedee91739d03
BLAKE2b-256 140b49272110b88683bc54305e9f14934fea188c8270aa81db3b95f97fcdb57c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9266a850a317b18ff7c3a8364ee18eb63f0db089cb605f67da2e4578f07cfa7
MD5 a47e5398314ed5d004aaaf7aa4df8e45
BLAKE2b-256 ae9189e8e6ba1f1ed2f57eae2ec9bd07394b2cd4a67748481fb95d0d8debcffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 747326551bf826a305a0b0c57adf36d08b440f00af63de9c36a170212770eea8
MD5 a99a1da7331298ec1c234c522c1f9d7a
BLAKE2b-256 3adc6431ca0eb89793d4bcf73b97695af82a267a003299b8ad112512222b32d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 8ad572df76c2a3593cfbef6ae715b4b9bbc2dd0d54d384c2e9ae93d6e5e00489
MD5 56b7c96cc2c9382877e9ee7385d64a08
BLAKE2b-256 b05401cb8a50891e7f985a6b93fd3f8139b0e03dd7a955fbb92f0ad819915eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a620a8ef94db07b292c1e12b46b8b74f3cdfab9cf6221de94fcd8e35a534b613
MD5 61ae184dc8d85bee66239a1af61bd629
BLAKE2b-256 602bb4d02b511f9868f279b78dd6ce577f91d4c312001a05054ce7a7866e2c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0b7b4e47ff5624418290c269a62474047751bcb0263b25e9ad1104c8ceed580d
MD5 b7bed7c63ba7fe46f8b5d6f03493813f
BLAKE2b-256 66470cc6b727bbb409bdf5e579a5d411681900a6a76a8ac5569fcaa2cc6127a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7416a8ea27fe4954ce2c38d9e9d8c8678844eace612c58c28d1db3b896c9e52e
MD5 30dd944e37200bf37b88bec112d0a49f
BLAKE2b-256 7454d2c3333fe753c973e4ab7a07a3221c6c3e84bd80315e141fabc9e3077b4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27a494518b55acebab195727d0aa5e35c48aacd2cd85c81e31575cfa690dfd2a
MD5 2147174243bf2e51dea623cfa460ac64
BLAKE2b-256 fc892d1cb7c766b2cd5b10db91ec8609f425a60cc3e7e6e93f24ccc41ab1139b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1cd33e553a03bd0f7c746df601a95e9d700bda9d691f1d5d9b516535976738cb
MD5 218633f892ce5879e12ea6d2263402b1
BLAKE2b-256 4189412a3b0cf29ed929a60f8efe03450ea909ba272cd28ec06015641746b1aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef2b0fdd00c1b0e7c8861912ef78a9ea772186ace7f018c0d6ccddf7c59adf70
MD5 edf0614fd88a400f9b6d31a9df23adc3
BLAKE2b-256 a648a216e39e1a86ec33b374dd72f4070384c6bb119b04570a9357fdc2664387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 38348374b7f76e5334d107f547dad16fd4c6a32d0241166c0fd68084eace2558
MD5 0efef7eeb6b00a3317496dabebdffe51
BLAKE2b-256 3b47da999bbd59c904098d0ac5cf98ff75224a81409b1d5cc4586c1bc729f90d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb52052aedb35387d2d0bfbdd1e8d491b721143abaeb33a9defae89963cd6d37
MD5 c7064ef680bcc81a6691ee7077f7974d
BLAKE2b-256 2fdaff3d1c273348330020471bac18f8a4df2b5b4bb2e936f90f62fa22c34696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f99599821e685042abc5fc550e8dbe3bfc1b7acb327542c86fe4c08505af311
MD5 7f112c72462921fffc797d63ee55731a
BLAKE2b-256 43ad6da6c7050bf60b8dfc9c834b0f2cada6a838746017fefff4a0da492567ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afefc3764eda1dd334008956b25ff3086b4949ad22f693293d8551b61ab74c2d
MD5 678d2c40d023baddced2c79a0ae9bbd9
BLAKE2b-256 1747081e0c276e21b1a44c122ff589258f770a683b2c946f038591f9cb7ef940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 765123dc19b4ea7dfcb8bc50dc836dc516cabc09d4bc7ddb34276c159b76dc55
MD5 571f1700cd91b150c4c1b8fc31701931
BLAKE2b-256 1d9bc9de5017f460d607bafb2fbf39447a78a795e215ea3e7bf62a1f0b557332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 fcc1cc57df8b3527fc083aa707ba5ee6613bb6096014243d2cce4bac17dde142
MD5 bb45c486a5c517d5559d13feb80199ce
BLAKE2b-256 abe84bcac15b777aea38fe04f07bc6531b1e18e3b4a944d9b2076d29e1668f5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 f53fdaa2fa53512e8e0c9a2e9079e2c77f4e5653ac1af86ce73f90577c186f19
MD5 e55e510e4d32bda368b9b179249b907f
BLAKE2b-256 fb2d4a2035df33946f608a2aee613b16e3c4c3aefce65eb341c1237ad2989aa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 212637c9b32d0ea00135f280b70b5d950cef270f38fa1b73037d15ed16dafdaa
MD5 dd145d373b51152dede0eadfa4b9781c
BLAKE2b-256 b2eba0527a88b8fc9ac91e0aeeec4f2e78cc38f271167b901370b2b19598929c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f4a055c0f47d20c2017e5eb75a388900e2a58beca96e54ecd95647b2c8c97855
MD5 bfa90d86e2642753ddd6fdbfa239d574
BLAKE2b-256 6b35dc576cbf80170368dac4085a385a07a3c101940a78a4d1596bc1c152ece8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35e1e0535d22117b2c720b5c0fb6c1ca4bbcecfb4b06a259e52567a21a365575
MD5 a8aa16995662e51a96238e8feb224899
BLAKE2b-256 19118df62ca63082226b2b83bd357d45d73aed1ce258ec9a5725f7b705dfdfe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f21143b105dcad70f4ee45bda1ab1d76a97ae520f60fe65f27fbbb8a6f70a27
MD5 45dd0abc307e393f70b3d583595d5134
BLAKE2b-256 9a6c17e2473f143573cb9293d3ebc4dcf7d2e4cb0d241aad2dabffd1de4bc5f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd8d63b506a4759d6bb92029938ea725a58553f5e7d0cfeb8c94fd25dd30f71b
MD5 3d5883aef022a451d66fc61632d172a4
BLAKE2b-256 2d05058f3da713b1902bf6af9e8b5f3bc3b32a6092b5a6c3f8780cc8e0feac09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 216e30810f1b1c9a4b8413fdcfa062e3f8a1eafc544966c89e0bfbace258300f
MD5 ee1bd06098321ed1bff393738f194a75
BLAKE2b-256 e743d35a46be795ded0e925dc3f33f1935a1a2643afb94cb68a2908cc511d72b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 984e34a17f91970aa72dc0809339d401943c11a4650c16c79eb9bf5fb25b21f2
MD5 88151ae884e401da0778f4ebe2ee1606
BLAKE2b-256 b71d075061e5cf42e2ddc9218247e77ec751b728c335ff5df589075686ef1075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 70fc2b4d4188f459639a8ab6ea618fb6941a66b1c7aabe8be71eb3a2c5b8537a
MD5 cddaecea2bf4045b044b56908f9e044a
BLAKE2b-256 d32e8f59271b06be116dde3ba8223e367983f3c9063fa2894e67a36e54cbbab8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7adbe5cbcdc04bd850beba71f51208fff69e03071ee2db556c227f992fc5b7ce
MD5 1aed72c06a133d868a0d92d6828af57b
BLAKE2b-256 7b0414f28bcae6d8aab869e21742b80d4cc72966437c53067a160e05b51b07cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da0c64292f011853046e4ce833e3319d11ab4b0ac1dec5ace1887e1f1630a3e0
MD5 2ef83f070a210f293263e5af5671d187
BLAKE2b-256 01c62395fd739dcd7891a35fa8cc8213f6df3efa04baa4df579c4741ae72b23a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 a0e76379128ae6d8fba65eaee01a7c02dad258b11bffccdf2c1a74ee84c90d49
MD5 80e8f3d53a86532128fd9146c4522fc4
BLAKE2b-256 1b4aa355a3e3839c68faaddffba882653704c3eb06470fcecf3d3939fe5919a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 4e5bfcef754de1553b3ac4f91af2c471aa720ee467d4bad49144be25af724fad
MD5 7070c01d3d3babae53e3c1e8b2cc4163
BLAKE2b-256 80882686d652f20d9ac380184ba250a854429e4068925e73d46f9f1d170b8f10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 19e143a8c6f16dcc9a994567b06766a84b5cd6869656efe1d39902d41a99b00a
MD5 9179456ae1c8bd512cd33da89c750b17
BLAKE2b-256 2cbe754582134993859d8f5767649440cc28a41555cfd910aad0d29d7b05950d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f6924afb342ff9e1264e97835f26a56b542be06a4b5d461fb228c6358a52b24e
MD5 8073f7db2fe65c2478001f0d243a8a0a
BLAKE2b-256 deef74cd636f20921410aa5e90205aa2aa77b25fb7109170266d38dc39e426f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c67b1468b527fc43038d1e095a62a9cc0db009d7780cd6092cf9ef427bd8a9c
MD5 007056bb168d9c7b75e825d325956fba
BLAKE2b-256 4608f23798ee12fd92a87974e10f439ab343b161287cab3633d68d71e4cf6c9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e76c87a40d1a5b22ba85ea88c86d2d89311eaa45b4df1afbc121b552c2efede7
MD5 e6ad0628ebc065f6fc511716f1abd51f
BLAKE2b-256 8c059258bda1081c08742b84cf1974acae23a9d608b1f90d79dab836462667fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c5830829753b1e62353b1c1971992dc9764f5d88d2a78b6386b5077efa98dab8
MD5 19ee2e9078c02b5a1fc029690c051653
BLAKE2b-256 860b3549341d7bac12eb6fab351e4dcee6b85b34e067a55092a0e4bda5885eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c221573ab5a8b642345371f3e6b854c3d293fbad1d7d9be2c7bff2ec8de076b9
MD5 2d7b387d751b0647a9f4f8e3226c86e5
BLAKE2b-256 a15c9b33bdf53d0067c03352e2bac10b2e5487e37cc1f77deb4e2ded7218eea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3622fa8ae26a01e9a934fdadee00222c1231d56b9343f6f947e0aa8ba4ccda35
MD5 b4f2e13b33ed0335946d78b6a018a495
BLAKE2b-256 c4535e3c591ac26bf2fcfa297716c287ab83a5bdaa9f086b607715f069f4ce39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b9fc8fd1cbf994bdd54a2a48c32ea8cce050a27f0859f0508cf44ffba2def465
MD5 9f0c2749b35d75a594c4931fa3e01a62
BLAKE2b-256 8c7d2d62812734522da4f688c700119ae16e7fb6bcf39915b43d678739b6dd8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fb854c110643dab3514e5f54e65090789c56df53fa24f477498b95a3e834a1a
MD5 fa6bde4cc6997d5dcdd7fdad2c7f2f5e
BLAKE2b-256 10ef8efb9a8861b2e45c4c0f95e1edcaf14e3917bcdb8f8a2594e818b166eeed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e114069a5189702a3bf2358caa4e349178ec29f2dab711762a48b622e47aa9b9
MD5 a72791e8fdeaf39e675da09b6352b8f3
BLAKE2b-256 20b18cb04f1e6b441af2dc13b073a17190da0f6531eb44db7afa264cdd4fa1b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 f00ae29d9062c9a490949478bf8880e4dc3551b18b335d4c44dac861ab7a6003
MD5 f73b4cdf8856f89a573531d0f7cbb599
BLAKE2b-256 32d356b5edc34373e2ade3ad8a8711a4445dddd83bd40f145501dbfab818b105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c5323089868399ad49175126cdfdc1d5c3f8be122faaf7d497b10f23f6cd41ca
MD5 0beadfc7cc647b679966a9e6bdd70726
BLAKE2b-256 26fff90f9b532c2d3a49218b446d72d07b66a62c61a543ea3df19097010dc51d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e8f77ee228ce1ea983c273ea1c17130a334d1049abbf28607de36168b65d676d
MD5 5a62207b30aba28f6a21d8ccddc682d0
BLAKE2b-256 94b96cb0dcace2a493dd988cf5fc35ee6f065ee34d2e827f42f810f6f1cdea12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5381ee79f12625dca1dccc1d305e6b4948d61e68e208747594c39742a4a7145a
MD5 dcbf12a51cb825cd40a619f7a664ced9
BLAKE2b-256 5fa509a27a23dd90e500072d50d798321d1efcb71fc055f445b602104e8ba81f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06369b17b5f3a8e1e3b1988fdbe978301ff94d9c40f3ad2cb4ba814503344abb
MD5 6ceb0cf20fbd5603733e898759d60c75
BLAKE2b-256 7e021345302f319f60ccd702ee2c16cd22bd153e5706c795d0ea7f3f4980e977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b294ad2a85be8fe161a33e7baa178b381763242c9fcbd16e4d36ee88485706c
MD5 90409db544ce010ec75b241e4af7ebb1
BLAKE2b-256 2a935c30763eea5ff2d63399670d4e8acf08a4b152d1275272021e514f302c6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6722258b934c12ae153f4789e440825d155a428148f2f9d71821e9a515592cb6
MD5 0335c6d191d925f23acac519c831460a
BLAKE2b-256 0208be450a007d9c3822543edea878125be38849849f9f06f4f9bd41a86aed87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b11fc2283c747899eeb66a0354b91423a9d6a35df9372c6330bde6eeed7c852a
MD5 585d2d8e6bc2e7649b1faade54ea4983
BLAKE2b-256 8f246ab2c421e180a3c634dd7814a42b05fe4b49852df65573dfbe418d6fb1ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 842272e3f9813b956761214460c757576d4b7a81623743e70ab1aecd667a4752
MD5 67b125a7ffd44ca1c0274d3ffae8ef47
BLAKE2b-256 4f0d88a65a3ddbcc9c476c5ec33acf5205721958a0e46d07394542f77b82d3ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c9d543bbc7b340dcaaee8d4e8e9a934fe75f71f1bfda224e35f7f7f39ad733bf
MD5 b2f16476cb4b98ea4800af5b393599fc
BLAKE2b-256 142d0f6c145dfda531b59521892fdacc119cbfef1d793180e377842a60c1d2bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4aaf84cf22b0b8906106cc4aa260dafbbcb8d1b4f91cddcace5aa153fbe5f421
MD5 0a5d3a0aa6c0ec68d3e8bee9ec2a82a1
BLAKE2b-256 8d348e1652693c7311445db83069750db42cb16a46a8f2cd5f42999672b70bbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.2.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6430c39fe87f4816ede3311706580fd5fbf7c300ba49086acc5bd1cad400eb38
MD5 75793358bcb3e6319ed6b00e721bd09f
BLAKE2b-256 c91d78719b040b74989e6f7232535b74c70bf91371683fc744240d12a597cc9e

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