Skip to main content

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

Project description

python-calamine

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

Is used

Installation

pip install 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 is supported).

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

Uploaded Source

Built Distributions

python_calamine-0.1.7-pp310-pypy310_pp73-win_amd64.whl (633.1 kB view details)

Uploaded PyPy Windows x86-64

python_calamine-0.1.7-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.1.7-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.1.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.1.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl (787.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_calamine-0.1.7-pp310-pypy310_pp73-macosx_10_7_x86_64.whl (807.9 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

python_calamine-0.1.7-pp39-pypy39_pp73-win_amd64.whl (633.1 kB view details)

Uploaded PyPy Windows x86-64

python_calamine-0.1.7-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.1.7-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.1.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_calamine-0.1.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.1.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl (787.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_calamine-0.1.7-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (807.9 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

python_calamine-0.1.7-pp38-pypy38_pp73-win_amd64.whl (631.8 kB view details)

Uploaded PyPy Windows x86-64

python_calamine-0.1.7-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.1.7-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.1.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_calamine-0.1.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.1.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl (787.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_calamine-0.1.7-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (808.0 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

python_calamine-0.1.7-cp312-none-win_arm64.whl (605.1 kB view details)

Uploaded CPython 3.12 Windows ARM64

python_calamine-0.1.7-cp312-none-win_amd64.whl (630.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

python_calamine-0.1.7-cp312-none-win32.whl (608.8 kB view details)

Uploaded CPython 3.12 Windows x86

python_calamine-0.1.7-cp312-cp312-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

python_calamine-0.1.7-cp312-cp312-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

python_calamine-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

python_calamine-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

python_calamine-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

python_calamine-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

python_calamine-0.1.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

python_calamine-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (785.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

python_calamine-0.1.7-cp312-cp312-macosx_10_7_x86_64.whl (807.9 kB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

python_calamine-0.1.7-cp311-none-win_arm64.whl (605.1 kB view details)

Uploaded CPython 3.11 Windows ARM64

python_calamine-0.1.7-cp311-none-win_amd64.whl (632.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_calamine-0.1.7-cp311-none-win32.whl (611.5 kB view details)

Uploaded CPython 3.11 Windows x86

python_calamine-0.1.7-cp311-cp311-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

python_calamine-0.1.7-cp311-cp311-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

python_calamine-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

python_calamine-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

python_calamine-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

python_calamine-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

python_calamine-0.1.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

python_calamine-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (788.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_calamine-0.1.7-cp311-cp311-macosx_10_7_x86_64.whl (808.6 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

python_calamine-0.1.7-cp310-none-win_amd64.whl (632.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_calamine-0.1.7-cp310-none-win32.whl (611.5 kB view details)

Uploaded CPython 3.10 Windows x86

python_calamine-0.1.7-cp310-cp310-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

python_calamine-0.1.7-cp310-cp310-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

python_calamine-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

python_calamine-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

python_calamine-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

python_calamine-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

python_calamine-0.1.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

python_calamine-0.1.7-cp310-cp310-macosx_11_0_arm64.whl (788.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_calamine-0.1.7-cp310-cp310-macosx_10_7_x86_64.whl (808.6 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

python_calamine-0.1.7-cp39-none-win_amd64.whl (632.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

python_calamine-0.1.7-cp39-none-win32.whl (611.4 kB view details)

Uploaded CPython 3.9 Windows x86

python_calamine-0.1.7-cp39-cp39-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

python_calamine-0.1.7-cp39-cp39-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

python_calamine-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

python_calamine-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

python_calamine-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

python_calamine-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

python_calamine-0.1.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

python_calamine-0.1.7-cp39-cp39-macosx_11_0_arm64.whl (788.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

python_calamine-0.1.7-cp39-cp39-macosx_10_7_x86_64.whl (808.6 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

python_calamine-0.1.7-cp38-none-win_amd64.whl (632.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

python_calamine-0.1.7-cp38-none-win32.whl (611.7 kB view details)

Uploaded CPython 3.8 Windows x86

python_calamine-0.1.7-cp38-cp38-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

python_calamine-0.1.7-cp38-cp38-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

python_calamine-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

python_calamine-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

python_calamine-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

python_calamine-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

python_calamine-0.1.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

python_calamine-0.1.7-cp38-cp38-macosx_11_0_arm64.whl (787.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

python_calamine-0.1.7-cp38-cp38-macosx_10_7_x86_64.whl (808.8 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for python_calamine-0.1.7.tar.gz
Algorithm Hash digest
SHA256 57199dc84522001bdefd0e87e6c50c5a88bf3425dbc3d8fb52c0dec77c218ba2
MD5 844de01ba43e451c4b4ef3eadf86b969
BLAKE2b-256 3cf88d88f2466baf6356488703b250087c3e886ba5ee8b4c507ab14af1e16565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9f100c0580e2b82ceda90b789252c5d4b1fc591cba67f881c63b3149e16ed00b
MD5 70ab89a56598326f36c309b55838b86a
BLAKE2b-256 693f865b4b4fc7dd284768a5b34a5d64b3159c0f39f9b1126840c6bccebe01b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 acddb3204b69d27b3df6d3b544e58f9728d8d49e5ea593b0f18f3dcd3f23c3c7
MD5 23b9cc4ba4f7b4fd60fb4317e83afb0f
BLAKE2b-256 13e1730ad813912dd9d8329ed6c9fd498ee91464670d9a63f271e14cda0aadd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 373446e38c6f738ab83b0ac79adbad866c7403958381812d41e2d6802da16420
MD5 554a8284792306a6f9483dc93a3128cf
BLAKE2b-256 25549f689a62654e93d100a993be6bc6a882c4adc59f7f95084ce4dffaaa62f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68da3ff62fbd5f1baa3c2610f274c4f2d5cbf8cd5678d66b5fb17505e7f907ff
MD5 baa22ac75e678d81c4d46ed44e3f3827
BLAKE2b-256 d77accc2c01985d8e8fd0136f33b0f1a8763513d653493d9fc4791152639d177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d0aa25e1afea6aebe04ebb5a0bc10222e0b7d3191ae2bb45e2b10e5ae0bfcba
MD5 ae4feabb1032ce88fe80b466b9f936ce
BLAKE2b-256 8bcd326ba44a9865a40e0eaacc4cdc4827d95d9b0520d5c381488a2551e9b398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1025db6f918fc58ba7b04c28915ab6cef67b4b9f0d7f7969e1a78e7ca81bfbbf
MD5 22e03da455edd8476c945146ab190ae0
BLAKE2b-256 2f1d9f9079b2e705a126fbfd346ba0593b1b495afcd5ee44c7c74b313bd4453e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e6d0c6c6faf33a8490a97b636d92f156e889fd8570c108013d3897e738e77ad
MD5 386bc002eab87b2b68599f5d5c732add
BLAKE2b-256 57c75a7d44d69397d3a3976f83eb3853d24123785c7ca08e35ecaeb406f96c97

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.7-pp310-pypy310_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bd8ba74fc72f2bb4a8103546c3f48048a35d52a85c078380ad39b4cebceb1d10
MD5 69d5bd5bd2470232aa0b5549b4871d1c
BLAKE2b-256 609fd172adc8ca21fdfa52517d81754a9a4c9b7d62d82ef6d2821e51c63001c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1682a0c506b05c860f5ff875f70ade58e1a29d5f44fa841a8fe47462387f407d
MD5 5b2793226af1118a3c2c5165216de0a3
BLAKE2b-256 64c9ac035776c9e2b9efcf924f852f69078778797a84f85df6b58cc853ceb2f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6518a7b5bf78468a7a4cf03df2aa4b6dee9e346b050e1a311642950ee8f09c74
MD5 bb4451c33622c1434c36466feb8a4a91
BLAKE2b-256 013c51241fe455322682adb1ae18ff74c99b629db7583d1c189b141753c10e0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 217d9b957b0a120d0152275e8e48e6bd391c54072e3d86e675af64bdf4a106e9
MD5 da3bbc3b6f1353c1ef68f768ef26cfea
BLAKE2b-256 bc2203c0df01cb3baeb0dfeb08cb0fd194db3c5a0b191c31314384d270eaee11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71109556559514418dafd5e825acafeebb6ab54b70f4529bea007b035ee13a67
MD5 2c63ea4046301b4a53b8569e47b39b80
BLAKE2b-256 29f7aa77653b6585c59298991e010ba491ff56817825b8052e474b8f8b619b97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ede670c35c90b137b8d628291c79ef4831f185ff9f16957f623968b4a59c7c2
MD5 30956e7cfafdf57241aee6d98741b2cc
BLAKE2b-256 a7b435423ed1a7cffd520e1227b59e62446feea79df074b2fffe315999852d5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb1701dfd88d33838f63c3c1b69974b9d1275299a1adde4fb9992fb2c9215624
MD5 6a6691b6246bf7de0850440812254148
BLAKE2b-256 001a5a5bd9f08470ad07c86e7f948260d325528ffa9293389f4731e59ce7669d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff62158e5a25dee8ef33b1f3ba09d937de27fd13fdc777aea4344b1a7cb3fa8f
MD5 8161250adba91cfa272eb7e1b1d13949
BLAKE2b-256 4c05376697497b566e6a43d59f1a7709c7c8d8b38d248204910bd230a044ecd8

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.7-pp39-pypy39_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 527f42cef206df5ab6da47a503aace5967f7db9218ae69487a00a2eea6c9d967
MD5 bedaa020ec7aa73455d506e1f5676534
BLAKE2b-256 4b859c927cf531afd9e4900901adb3a37d3e49d31b1f727056054ae294b12150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0ed6e370acf03434d258d06644b2e6711d8062f7363748063105b0506ecd6e1a
MD5 6b9d7b35d180288cf7fcb9b5b1045a3c
BLAKE2b-256 5f7e49ea0d26e23a4991fa2540a225b6428520ba593a69dd36558f231d0addd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 469a1bea996dd7c2979aa8a914f0448901a59b82514613e180c772150f31a69d
MD5 703086cb9e6e23ec432ff7f84ef26725
BLAKE2b-256 4758ea8d10bb956aa63f13711f621443d1092a2d81177000935929c71eb2c772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 44000b107212865f087d643c80565767df86f614b284ca4791c6ec74390f51e7
MD5 7d13e7e20e57ca1b5be7f324cc939db9
BLAKE2b-256 415fff01d29192787cf6bfd324c7f4b61ebe30f964329160f9f35b5ca3fda7d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddc8962cb476402b310bff440072fff369f395b2e3e79f3680c360342a628b76
MD5 d553ae2a53f89020cd86d4f7f2b4cbc5
BLAKE2b-256 5013fee045e409738d50b7a994d4d6f9531de8118301822c12d2085195c6f3dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bef1b5b1347d901236b5e1fac3281b88e02729b7feaf55caa119714f82c21136
MD5 452e0ffa2b303b102e0bad137d24c551
BLAKE2b-256 065f47f1dc207051cc04e499f447e19bc9a24452aae21b08c95ae2395d16957b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3ef67cf29be158b3e74fe624fe8a41d444fd00f0bb69b1bf3f5f4b0427d09d67
MD5 21f35509065aad4cf3880da362c50069
BLAKE2b-256 1830ae0ee02d9d1eb06e725cff1be302bc57d104921af5738b870005c8173554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2793d838f35ea1df6ccef05b3b3c75575d91d65ea7162b35e68bb9978651511e
MD5 a343d54cd15f92e4cbf9005b379e2e1a
BLAKE2b-256 0252ea27abbdcdcaa0421c3021ed1191fad9cdddeb82d0f168339281fc4db31f

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.7-pp38-pypy38_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.7-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5293e9bf40663eaec67340a4a5a0b007d5d5bb9215106a21ad366c5df58abc5e
MD5 18f4ae8e1daf0dce4ab673c2f96fc290
BLAKE2b-256 a71413fe42e97676791e31e8eaef35ed75a1da709314a1585f8117c19e9d0b35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 8dffcda9652e3f96083de233e5603b8ce4525dc256630fc66d73a285183b96eb
MD5 2f084adcfd684c9a5e2df5e8b28bfe56
BLAKE2b-256 ca1de7180dcd0a41eba077de85aaa7904b9647ae0643ad531dda95ce12410028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 49c11f9d2f6e485326f160ee6cae78ef76e5b672eadcfdd1a2fb210fcdde83a5
MD5 f44cddf55113d07a200f025967baf34f
BLAKE2b-256 ed73d6f210b68a205d8a6615d7244a3b24390536cd2a882709b7495273e41c89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-none-win32.whl
Algorithm Hash digest
SHA256 15f08b17499c629b666e6aebd77fc713ae53107913106c4151725c7034efa6dc
MD5 a6c38880ce9a44c0430cf24752a172c6
BLAKE2b-256 50e6d661732d35046c02bcd166f8b479fc2d0c86f057a07d563a98ae65701d63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1ec9319f63893ed0748db74c3e80cf95765bfb102765e8092cba7b16d820437
MD5 e0edeeb442e5fdf2bc8b7a700b51661c
BLAKE2b-256 d29ab84dfd3c8e4a4e7c47d183e77b6e7ec85a1a7d740843ce80c6b33a95fad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c76768c84d223eb55bd4b11dbb0290d57a2c892c73ee285708a8d25e3020b287
MD5 f7161b93f7dddffc1c004a41dd4ecb5f
BLAKE2b-256 2d610e21b72162b46ba5fd3c9c4d5faeee5e1c6321b1c90e61854a3ea8c23d7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48e2f29fbc2cf04b6d6e946e8d7d33c8a4fea128ac97aa2e98216a406d90955d
MD5 37715132662568e9f172f1cc689f40ef
BLAKE2b-256 b349ae5970c9fb80a5f442ab7ea1fbb941b6402845719eb06d12628f3fac9d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31d0b72d31f8d5a44fe45fc6944bd3d2a79ca437781f15ecd41d27e4dae79f58
MD5 d967333f242d09466801301be3d9c9db
BLAKE2b-256 31cdb38168519c3331b7e56886ef0aa61139faeaf5d17fe6eec7d614b54b2249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6637c6121308e0cf83b7097187da662830eeeb148635e3c187c960b469d1096b
MD5 daeec475259edd7f13db9616397c990d
BLAKE2b-256 66e7b603f990d7c93a03b9b097f09592ab83e80b6c3f8a61b53673ebde4e41a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0af5a5f1a7cd4070c1a5859d61f4c530e141173f29b28a330b8fb7215a6ddc9c
MD5 daa2accbcb1c2227d1d0728062593714
BLAKE2b-256 013375020efb59dadf3c03dc8ce0f9180513ca8af47ff120965dec32b6275b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51199f1e0409f0844a9496620fa2d5f526271b9c5823b6a707b7fc0cdf0e50e7
MD5 d5e3d9628530d02214c49e4177df614b
BLAKE2b-256 1062b0d67bfab113d36cdd6df4c89358c84898fec39322d7772f7414356916d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 292c4985a8cb800794d57549eeef0f49496fdf712dd538809afb67761b59d59f
MD5 0351304c1dff3bd8e3a54b4a27f18228
BLAKE2b-256 f3f1c97a6cbbee12c3dcc9e1364641f936ebf828613c15b0810d76ae975618e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be5ecea9b69f4f563cef4af19bd6dd2a936e732bee137b5bd096337451c2d98d
MD5 110f6e2ae0928b057f8d355649e779a8
BLAKE2b-256 fc945b083d9f6491cfa81f155a2717785a1f174d902a92effa42183a2227d0e3

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.7-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 896d6edc2288961e0bda535ec58bda38a91f52bc497d5d837c010aedfab5d074
MD5 3cbd30ab06e6f2b3e933b6b0dc1bf8ef
BLAKE2b-256 329e54af42cb499ba9eacaba32baafec45bb0cc1dd4f40812f0b13f708840261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 aead54b34dee67c75eda4af0b331101f7cf3fd99aaf459a3b2d461b238e4596a
MD5 dc6d8863fcd55ef1895f67d6c4f324b4
BLAKE2b-256 c9d97410f6f07fe998ea6c2550ce9eec6d7a50d276a43880cb127291b806a678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 58c792519ad6d13adbf9c2ed9fea73ad76811aafc6bfc036b6dcd56500fd5dc3
MD5 30143a8fabbc29b8f2be6efefdbde96e
BLAKE2b-256 10747e26d9f2b3507efcad2da01dc6a52195a260cf82c355fa6a3611118056ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-none-win32.whl
Algorithm Hash digest
SHA256 af482f1594a72a923e7506ce29bb8b081e4d8f7abfaa24c2226d95001dd9f162
MD5 a29557ba9dda0038c2a8ae8c1e1c03f2
BLAKE2b-256 4239e9431c14b19757d3a16f6d934f93e1f7fe5d368b6ff9cf0ee6d323f1d352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 289ae6d1314e383d01aea9b26afef99bdf9094362671f464da92a71326736a41
MD5 2b5923aa756ceff79beeb1d4902d15a7
BLAKE2b-256 5af219c95ad0b277ad4bd32669be5bb32f31f596b5bfc9a5e744e3aa0bc72294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 58c255387ad526baa2c6252d40d6b26cd37bcc03262bb3778bf3d6ff0a7d1eb0
MD5 89d5cb654c3428a188ad7ab8a1bc29ff
BLAKE2b-256 91c5673432c7f8e3cfe72855dad9171cba16d540ded85aaccc46013e9b35c019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c9e095fcc27a9aad7f4ad0bbe8893bad413824c1f83f5b53c99d868f5578d19
MD5 570d7ca99222f8d52586aa4f0d37e6b4
BLAKE2b-256 0cce4cea6b3ba0f99bdf19417a5c6692bd0f82eb87aa9af361cf478b5e7eaeb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88bb963bd57395e8a9076c1d628424c017da376d3d78e5396b59b331570b4436
MD5 0a82298d214503a09a178c8be61612f0
BLAKE2b-256 4e49ad43ed490cade04dedbf1c0d61200aa01e9cf1ff25eca6d88e5fa2f5ce17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba7d456fa4a3f224bed80115430f6b8db4188e0fed43317eb8eb8778c21e3861
MD5 b993604ee62d86ca1f225659ea5e9bda
BLAKE2b-256 f49e306392cc3d128e4c7e15890a57ea083c20308b5a4090623a867cfa480709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf9fd934534fb7b5dec60a1b3703d340aa00cb8d5fa27b1615442c8dd07d1a2f
MD5 de4dc5eab8150f5e2631997b81fb542a
BLAKE2b-256 db450aaf97d12c06b671fb6a6bd6e6970e469b26ab003df2cd8254a654cf2765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c5b051259f55112960af91ad3087d6eeae25c92bec847ded31e7cef53daa1c1
MD5 0c85897bbcbfb2488caa13eaddef5928
BLAKE2b-256 3a659911a863b36be2baac1001865b573388b69bc24e5f108ae6f789166e58ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f644d58627f605014627ca7c7d3a864b5842fa3999a84472f7bb41ae4a225d9d
MD5 68923ca0e690efd81a047ddb990ee137
BLAKE2b-256 4db8776aacddf0cd47a88ef3982600ce2f3d8b82b2161fb2d707671853b3c2f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 225da00ae2bc45511de96ebabc298ae48002d252c3c482914524d46ced12f7ce
MD5 c7981176806388302f9d0e42c9d02853
BLAKE2b-256 9991fa6da0c69323c0c92d33c1567c14bfe345177670fc5ac3be3e0b8891fabc

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.7-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cb63c64df0e21c815c84c2315be4d90e193184ecd0719da0369a41088e4bc790
MD5 9161dbeffa73cecd6ce6a9f61f3f2068
BLAKE2b-256 d6b6d3b75d0de5472a067204a5e1e1f531c03e2b8009a82720906aa69626d314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 11f068ec4c853684246af0a7efe697bd3d7c307ba72baa3fc5f11703e7b0e6ad
MD5 af562c595dfa2a70772c580743cdba35
BLAKE2b-256 fe753f8dc22fef97c4276213add43fa16324d3c96d0184f25baf5ae5713f4927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a75bfe7dc93a94df03d5982b413dfd3d2edfcac9ce3914a1339fa7ed2101d11d
MD5 4908bb5eefe98746b0f8a6ed64980e94
BLAKE2b-256 159d7e2d5fd28a6eef8c871d287af74d236f781ae7c352b565cacc817052e3e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0660a5163b6060e74b72f08cc3f97aaa1b81bc0b906940d9fde1e6a09eae42a6
MD5 864fe310d56b3602447041a846a92963
BLAKE2b-256 4defc63146bb5ef55821125faa6376f84b8061a6a27130262d3868357205d064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ab7747a46f91b165822273f2c4b21639c0c6c152fe82956adceaa11c5684243d
MD5 7f6bb8a6f2f74680acee174ed88b02fe
BLAKE2b-256 83aa02d32d01c457a6f4938aa53dcc5df199cdd543ebe291b7fcc5777a3531b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 221fb011512cec1cd183589dcddb6be0d6dcfc297b237ac09f0bb88854fb8370
MD5 8e650befd9543e00c3f72ba08f1280dd
BLAKE2b-256 7296d1a0f4e1677534d328f08e13e88a3b1dfbaec47c5963de5d356d4623bd01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07cde05267a583befc6085c25081160676ade724017b21d53f671f60905cd558
MD5 171b9a6788e9e5202a963dc43bc18bf2
BLAKE2b-256 cd67bfcb276293d662db2dd9077a1478357c0eff714032a738ef62c48264c63a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b26980efb916dc2ffbccc6b6ce733b34b0ee325824a0be4185ed2cf5b0f08f31
MD5 4278a63f4cb9c6f90ce42fc5192249bc
BLAKE2b-256 b17b83095218b23c0d1e2478e1f49852551dafe3652853a7cb95bccc943c3fdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f8a492efae2b3055cc97e2c998f17ce601597fee20d8e5cac7dbce6c554e30e
MD5 64807b7c557349c4b63c564960ebaccb
BLAKE2b-256 88a8224332637b3226b059871705ac44443924aaf36ec302109b9da4c131b0ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c57be0ba579a0775af3311025b7d293a0f5c6ab15e50418129e9b3ebbbd28fee
MD5 80f21bd281149800b528b9e5d43d8de8
BLAKE2b-256 65548fcfc8443ce9d7f3a99ddbb1a13e45219f3098baa11da2627d48e7f9dad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0dc64d5503807ffa9aba881b88e63d20a081bc8894ce710ae7c2f67998d9ed4c
MD5 36446e84f31db71147b7f7046c07b5fa
BLAKE2b-256 d93a6e433ae9bd149340ca0249b8c26b5bdaf21802a7c6bd9dc422e9f0516ea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ee3c91a0b647635153f0c1f1d677c6a52e8b0a3d09d3db86ba32494495ac869
MD5 0308446fb5411c9ec97fa4ec3819f509
BLAKE2b-256 bf6ff693eed63b68aa3de44e888698cd61b223796ca1d1a768755b053d124a04

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.7-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4585cf5bf35c33bc6afb70bdb7dd8f352825b7e5ffbb62ef3d85926bc0d8eb90
MD5 c0663a421f41c45cd21dea188e04ceab
BLAKE2b-256 9194f4c7e35a2ef0b534d6cdd953eead500952619fcee4621a763984f3fd0293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 60041ad1cec42e6f897a2ca8ea9160177a171487291d82f0a159ef8aa6774860
MD5 a5c7fff37c893f6d5dd22627476b7948
BLAKE2b-256 68fce436713964eca7ad5f5706e4306eab39eae156c3692b79139f82532b7f02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp39-none-win32.whl
Algorithm Hash digest
SHA256 db9cf3d57041ad746fb9296e9940f0a3c18b77da451ea3341cc53784a967d9f6
MD5 d7d0688b48e1877d59205e85499f9cb2
BLAKE2b-256 c21509338c34783bec9d325a7c8f0bb9a010714ea9948a2015a22202eedea305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c2b7e1a363a755b848c16c545ffd2661d22984d88c123507afb96050e87d72e
MD5 84b19df82185209c4cee55e10e190137
BLAKE2b-256 73b243ccbb2454f61a7ff1af26b1d46337c4b341168b436a83dd6cca2ddff875

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a040da6e74ceb235246406234d7bc12feef2be4126b633e1dfccbe26aa5522de
MD5 e7bde2e069b3a4f0a999071e6d3cf44c
BLAKE2b-256 7535215fd92ac412a40f5ed78f4ebe22ceae7748fd8c51e34f111ba669a7eeea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad5454eb6aa4b54c1ffde199e368f6795a8a11dfc1656cfe7d9b9cb3a0e578f9
MD5 f19aad0e051b33dd5ccef03ea84eb4bf
BLAKE2b-256 12e33ba029ce9c45ec000fdc7eca1e422d0d96fc2fff079ea24aecf1dec10648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d1d76a1631ef0c82c16f760d0a3cbe6851e5c9daf51a9d875e67379ee07ed23d
MD5 a1fed28fe40d60c70f810b711bfea7be
BLAKE2b-256 76b1109b18eadeacaea499c867bdc5b3c76b25c154dd58137c4263e2944732ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b25284fc463469b8378d6d9fddf9683dd5ecd15ada19e0cf0f8af52fa7de15ba
MD5 32dd35b312ddb8065c503bb9bc06771f
BLAKE2b-256 cc1f1376251ffadfb93b8a1387091361c79fdff23ac68442dc41c53ed70532d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 be4e554a134213ff696ad18b565dba1b8ea0869e3be233b3ccc82868af92c628
MD5 31a28f03f824086f26961099cea67876
BLAKE2b-256 d3d32a4ed1222917a7d4566a684a742cc8329d9983d1c513480e23ae6ed4cd45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55f06d8ce81a4c6cb7ed20352ba1a4e1ae20ac67668377fb00bb6c7e560aa0fc
MD5 d36ea73290ce3ffb614482ed851648dd
BLAKE2b-256 e17fe0bed9401c197dee9758e4515a9863ad43c9b45569a5e2c37465dc4b0520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 85367d3bf059955985cea7fcc5b1348b859fe9e78a3e3ded211e840d5a6e0b45
MD5 86fe9bd811a19b872f1defd2225ff4cb
BLAKE2b-256 45bd5fb7995bff33c06210090e1c5ff0851cb47d960c84f04c6c39aa1929eea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f487b47e2af6e848aca7d2e08af4e404c6abed410404fc3dbc512c707b71576d
MD5 d7854272e82eaba9367ec1d09781e922
BLAKE2b-256 7b7ecdd4c7d461cc8bc20fc34209e12b49b4fbe875c7b47ecdf80d7f4bd4a6af

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.7-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 da8b62b7b4850f820251b25678f6beb2fe38fae952186d0fe06304f95f2e24ce
MD5 530b1d55fa789a65fc52400bc2bc8d21
BLAKE2b-256 fbba455ec195910968d3da521aae74e7c8162656bfc35b575b10521a2722e11f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 b602276a0e779524c35a560d293f8a961ffa2e4dca929f506253cf4fe66e8a00
MD5 d0c3601b0e2677dd4afdb683c7a29a0f
BLAKE2b-256 d9de24c4ecf7eeb5f98a7a748927ac27376c11bae79e2bce36d71aab47f53413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp38-none-win32.whl
Algorithm Hash digest
SHA256 8f31c655c2a314fc35c59427308efc106dfe9ea4527c94f2601d26510be2a560
MD5 ffe55974a9a81666c69b6480a6c36d70
BLAKE2b-256 bd6edb8f524f3523e4c5b37a7c014e49271f40a6e18a2797dd29aa9da7228dee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6ef4a1706c6890dee76bac6e7e9795c74040d1cb29e91b86d0eb1a3699e10f72
MD5 ca06900d27bec69ff57897d009aea661
BLAKE2b-256 8eb2c12baf9f587db90dab1d400bc3491a4f74cc61cc146adc4c5946d5b0f1c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 942246d203bca24a842a4c8c1a1976a2f3afef4d22c05c968777c345dce85df2
MD5 dc8d6b9c4171827de368dea5ee7f6a26
BLAKE2b-256 63e3283e668a4f49c8e67a8904d2461f1254c5165411116134c769af172865f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f4b2658d524c8c9b7b29873a45a49f9103510ae5d8e378e0ae9aa6a8bf8e391
MD5 25e53caa5c9fe1a1e604bc305ca12c6d
BLAKE2b-256 b9781280afd6990f89b40f9647e29866c91fc08c1b555f2f5bd3800b5da544b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63ffb77c4004f70b82d0b518b2d7ebbbccf0d21c3aac34dd5162b7180c3ebd09
MD5 e823a772b30db91b89abe9a7ae38635e
BLAKE2b-256 145d8f51e867eb843e0a183e31e428f0d2a872f7c4bfbdb194f568086ac1d129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8224536c1612a8e23f98b06471714127a410c9dd9ccaa47bfa97fc3601bddcb4
MD5 07c2b2ed41b689ecd4defb15823e65cf
BLAKE2b-256 f8db09ac65c731e9247c31d823565e6ee4fc84cd87f50bb3b7db26501f2b9974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5684a21c266be155e2ec198892966acb50f1b9aff8425c9392577873a1f3d989
MD5 ca5cd9bf9a9d386ab7729b83a5805ec1
BLAKE2b-256 908148fed98d4ee16da2e6a492310e8f73205d54bd615bfd791f97399175eddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e31ffdba8320ef334e28acd3e5b9c9b6bc94f0a2a2f5a6babd044c0740bad208
MD5 a1b82051fe049201bd91211925d40c09
BLAKE2b-256 b55a4a38c183b55950d7b012c14f42d5c662a8e3b17a79c7b250a3bc5d357a3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb406a78e4c501646657041036199ec1243535b52b8957a26a00a88f559ea2d4
MD5 ecad0497a13f96c6cf2b8eefa3028519
BLAKE2b-256 07f4540fe396c6c1dbd0276961bf52cbdd890a7d32341c23b4646fef9a003a1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc436acad49fa6cef3d2920f69fb2f6cd6b1979c63882dd0cda5e5695d5150c1
MD5 3471540d013cf603747a0cda7d95868e
BLAKE2b-256 16d196b99383b126de3cfbe3bb60677f0f731aeb830dba7b9fc2a58b27a7674f

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.7-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.7-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5113f253a3b947bf2a22fa700d1669ec87e68efd9f22b3711cc81a9711d99625
MD5 017dc076376f765027603f2fde7e12fe
BLAKE2b-256 940a76d4eea7bd9086a071e9f500337108ab18c0d49cecd6ef51615a1ad78df2

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