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().

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

Uploaded Source

Built Distributions

python_calamine-0.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.1.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.1.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.1.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (732.4 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

python_calamine-0.1.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.1.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.1.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.1.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.1.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (734.4 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

python_calamine-0.1.0-cp311-none-win_amd64.whl (574.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_calamine-0.1.0-cp311-none-win32.whl (547.8 kB view details)

Uploaded CPython 3.11 Windows x86

python_calamine-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

python_calamine-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

python_calamine-0.1.0-cp311-cp311-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ s390x

python_calamine-0.1.0-cp311-cp311-manylinux_2_24_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ ppc64le

python_calamine-0.1.0-cp311-cp311-manylinux_2_24_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ ARMv7l

python_calamine-0.1.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.1.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.1.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.1.0-cp311-cp311-macosx_11_0_arm64.whl (701.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_calamine-0.1.0-cp311-cp311-macosx_10_7_x86_64.whl (732.3 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

python_calamine-0.1.0-cp310-none-win_amd64.whl (574.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_calamine-0.1.0-cp310-none-win32.whl (547.8 kB view details)

Uploaded CPython 3.10 Windows x86

python_calamine-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

python_calamine-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

python_calamine-0.1.0-cp310-cp310-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ s390x

python_calamine-0.1.0-cp310-cp310-manylinux_2_24_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ ppc64le

python_calamine-0.1.0-cp310-cp310-manylinux_2_24_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ ARMv7l

python_calamine-0.1.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.1.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.1.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.1.0-cp310-cp310-macosx_11_0_arm64.whl (701.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_calamine-0.1.0-cp310-cp310-macosx_10_7_x86_64.whl (732.3 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

python_calamine-0.1.0-cp39-none-win_amd64.whl (574.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

python_calamine-0.1.0-cp39-none-win32.whl (548.1 kB view details)

Uploaded CPython 3.9 Windows x86

python_calamine-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

python_calamine-0.1.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

python_calamine-0.1.0-cp39-cp39-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ s390x

python_calamine-0.1.0-cp39-cp39-manylinux_2_24_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ ppc64le

python_calamine-0.1.0-cp39-cp39-manylinux_2_24_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ ARMv7l

python_calamine-0.1.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.1.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.1.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.1.0-cp39-cp39-macosx_11_0_arm64.whl (701.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

python_calamine-0.1.0-cp39-cp39-macosx_10_7_x86_64.whl (732.5 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

python_calamine-0.1.0-cp38-none-win_amd64.whl (575.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

python_calamine-0.1.0-cp38-none-win32.whl (549.3 kB view details)

Uploaded CPython 3.8 Windows x86

python_calamine-0.1.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

python_calamine-0.1.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

python_calamine-0.1.0-cp38-cp38-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ s390x

python_calamine-0.1.0-cp38-cp38-manylinux_2_24_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ ppc64le

python_calamine-0.1.0-cp38-cp38-manylinux_2_24_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ ARMv7l

python_calamine-0.1.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.1.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.1.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.1.0-cp38-cp38-macosx_11_0_arm64.whl (703.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

python_calamine-0.1.0-cp38-cp38-macosx_10_7_x86_64.whl (734.8 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for python_calamine-0.1.0.tar.gz
Algorithm Hash digest
SHA256 77d26eae43f63bc49414bdc078323c746deb4d980cc9a4d98d2a85a46e2d9813
MD5 dd7dc43366fe2e626920136f27e1dc62
BLAKE2b-256 bdd9f0669b726dc31edcd9ed9d1db1ac247552da4c42e3946568a757ffa0ed8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 af58fddb15b8a7e61356d10630a25a85b43624fcfc089418c3fe1b9d6028223a
MD5 7c10369ea634eb747dde680299a4873f
BLAKE2b-256 80f3f6fd404df4d559f19900a5f77d9aeb32b175a198f6b412040b0b0373f5f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 61ff4df0c17d2ecd2342f9d786006b09bcaf6f2d3814a3e7d5deda68fe991f06
MD5 b8e8c38f7e13f7379b3bbaf0bac878a5
BLAKE2b-256 c1ad15c173574ba728be10e50a5cec179fc6db089ebe3d0a0833abcad9276e99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2abba4a663b5089e7b3a833f49a7b4aa3f16192c005b21a8fe76bcf7a5c152ff
MD5 b3c2d8a729702d414e9938e4165ff351
BLAKE2b-256 f70f1fe926b250141e1b012f4724acaf7e910c5d511d6fec6d703f7137f343d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94405f78f5a5a6c7a0374a955012ee8e6db7094150b7ffda938cd11f12486dc3
MD5 e7b89f71fca221192c1866c1874ca34f
BLAKE2b-256 e892b72b78644031ad5025aa20b4381d2a0fe1d30a04e7394f87299249e7f252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 982589cb882ad2e929aeb4228f6a0463f9f9eb46d97b73e14fa02996b3e91e3f
MD5 f3d7552819eee811bb0c0462ef04a048
BLAKE2b-256 ce96caf6c978d867d3c1b5f0084f14ce3e41c0d75fe3336c6d0c88b2477db758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f9274858c77949f5127f0fbea41666e4c48ac02145825fecdfabf7b242a89b99
MD5 cd8b2f8a292a6607eb2c1aab6818de81
BLAKE2b-256 f0399a0e2474c197aca19ccd02e4aec0be09068cedde145e88c307d59d9e603d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 732641799667cc2997d771cabe1e350ad52f52dd13b96b77349274f602802a7b
MD5 dc6fffc24ac3f5164dc563f1bb5810ba
BLAKE2b-256 32b5aea66d27f490595d41d03c4c674152af9e5736a1cf59c35b9809d6902771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 39db4a2cd04f152e70760b0ac9dc0272a29d41c009841ba1b616926de24294c5
MD5 f616f4923a78a54d939d49ebe6ca19bb
BLAKE2b-256 6ef3b8d16858f5014bf4d3f566d97d6e990936a80fb52e3237e957da99fce5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ccb07baf67287674e80721d25437a1831dc08807a4a6260154c5b1a08623883
MD5 eb48a635b2d70855e0b53a53ba4a35a4
BLAKE2b-256 6e93f3fc74b49cb179a186c3d52aff354fa9f0f38ce234841ce097e9e5693b86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1dc45414d13a96c4e815d5fe7b088625abd55cb2e5152e3a2cb4ca3a0ef55c6c
MD5 3297fa479d9c8e5b68641223e96d3b7b
BLAKE2b-256 47d629b8b8547723655d5b253233c17252fb47fc43f9516c99b706cf0cb9b621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3bf03607b7aca829e501781e004e3103962a39d59d8faaff9565833d7cdab321
MD5 b879da6b2c2b035ca10f9407320c7703
BLAKE2b-256 878ff92f1b267ef9356be6f020a5595e9097ce046efa5b6568bc479773441649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 636c0dfd3ec7372c5a59aa0ae998cdfb52c0d0c003541c475f528847c9cc3401
MD5 1103b27e517c89f8d8f43093fa6c59e2
BLAKE2b-256 70fe78ec6d63df1b82729526090e9624dd6a96992d9e9551ee6f124ccbd01929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 0bb5c24697170ab22685863bcc673eb0057bcf52228f127b5f22336282285679
MD5 0fd86df7886a40b77ad8ce9d6f140304
BLAKE2b-256 a8bc615a08cf5ec227b0957ccd786315d915270f4f1388b9431a2711c1ce71e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 297ced41dfa28c5a1e01ecf10c5bd83d476466ea137821dbad74020c35507527
MD5 719665e1167a83ac56685d8a1fdf859e
BLAKE2b-256 ae9cdf92a6ff3fda4e7fa68aa48194844ae06718d462448fc9dc8928d69f1eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 087aa872df82d20731362349de1226abcd636492ecf6f3cc10939f9177be0bf5
MD5 03cdcb6b4c858b5fe868563d3d300b72
BLAKE2b-256 94a18d9c9843900ae89e9265a04bda3cba8b1825859070c724f605efe7a09fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0462793bbb50139ff4a7d3e25f01bdec845c40aeb8e3be3a3a77e7d255c45832
MD5 8d9e95201c0bc7ee4481a16aa899d1e4
BLAKE2b-256 9ff846cda8a7c85fe3019bf7f9a81c2b12d6fd4c2c72abaefd29831a1e4e4c3e

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.0-cp311-cp311-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 e03a9646cb9552dfb0870835b194555231fd75173d00f1913087a79e0a6f0c6b
MD5 13066efd2f1cdb2d9d631ef7b578aa66
BLAKE2b-256 6e0b6eb914d3b7a3e1835726f6b76927c3e8598c5ae4c0e10010a0e8d71aedd8

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.0-cp311-cp311-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 fcb56fb229e78bb630ea517e4443e3f7f1829acbccc890ce5316a4e2fc49806f
MD5 55f5aaac925de6e5362dacf23b38451b
BLAKE2b-256 ffacb3bd295d1c9bd4ecb553a7e4db26e537efbefcbb9cbc9edd07208989b8c3

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.0-cp311-cp311-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 0da0583678f43d5351a373fad5a2ce21fd56e6565835aaf84478525cfde575ef
MD5 10a062c59996f58f8d642ca74dea6299
BLAKE2b-256 5f28e85027f99c7e6460ef8e5fbc3aa9a4a8ac5a017d6a65199f67396bdb8821

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d62d33866f89dd646878cd7711458183e57162e089de39d5b51d38d1651f3b8
MD5 806d3f997f725237e60673f0c104268a
BLAKE2b-256 ed23e2d07a322be7f32bd101006d3c23d931161a5e1399e3a319695888fa3b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b48365b673a52f82c1ff44f87f1aeaae2d61b9c9028d9ebf853c9bad442301e
MD5 45b1161fe8e3d45eaa3c2ecd570379b8
BLAKE2b-256 1d6cce0eba3095a681ea446d7a16073af3f26042c40f375a256d16b49ca77b52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 beb39052ca3457114565b8af2068cb6e08cc7f593b0df0adb069c613c3de7a25
MD5 36f3444e3100e46a8212e4e3dc83820b
BLAKE2b-256 3ef1e9442e137ec3ab8423a8c7b4d89183d4b3e59cdbc62cf9ca7162164fa50b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10e37363b08e0412c82d34e04252fb3ee8b54600d392f12a78703ad41d6e7821
MD5 87d040d44afa1b10c74641e11289dca9
BLAKE2b-256 1ea5e806229c617d9b154d40fa9dfc929906a04bcce60faca6701cd854e082ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2e9e3b3958766a4f6105e6fc0d103ae2106a2c1b9d8cb7d81b5f7ea2d472107c
MD5 d36a38a9551d1081550519ada70b0775
BLAKE2b-256 d1d0499c9571f3d53660578520cf5d69b44b5b1d84169a55cce4da5e63abc01d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3358337a0ab529164060ee7064aa4daf13c9c177bfa7cef1d45dbfd538477132
MD5 24f41489c778d75ab1529e0ce6fcc5a1
BLAKE2b-256 db3480c2b7c990e03c80def08410d79a0d452e13a6966e0f71f619103f3d94e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 8f64fcc7167b1775fe6b5f314f29a2eaa10d2785b038cc128ee08a2b7cfce898
MD5 2dba3b14e803cf14d538e2f3b2c4a184
BLAKE2b-256 f451ca2e6d880cb26479e3d3e7b732b6a979bbd9fe22bc203bf8c91493594137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 46448c2e2a5053f26aca43b33e4641570335b3f77fbae7707fc87f09b980d743
MD5 34a5bd2ec61b196b191428a8e2a98a8c
BLAKE2b-256 4f84a035ac7f46bfbff73285d329cc88df7622df2b5f15a9818b244e0ebe693e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 52df46d7b5fb7047a6f64c92600b661efc51447954c522dd2d02550a97d1350c
MD5 f933a6ec66f383b650b17742e1ce3eff
BLAKE2b-256 05246f322fbf60cf95a70fe07f7663c0d471bedc42c38cd0be993b68646f8c37

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.0-cp310-cp310-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 c7c84b0bd423af8e17d225316b50e7fa76d4804beb3244509cbc940caf0956a1
MD5 634be480038b8a292993f3b0909df0da
BLAKE2b-256 3aada863dcbe43cee611ceb997fd7bc9e85c9c932392bf7b3c7b3171a5b41c53

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.0-cp310-cp310-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 57b9e3a5c1a631fe9ba92d2b00dad6e217cf7b6f393c62d5d2ae12a120a4bf5f
MD5 e3d5dbdf607ec7b0d70f4a0106c59d5b
BLAKE2b-256 2f20c694b484f42ddbd62992b2be312361a05c7f81cd48f11186a378348b13b3

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.0-cp310-cp310-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 992dba133d4df249427032a5fec3f110e0dddbc67518ed4e951bf7601aa4fd81
MD5 b0ff0860d29b4f6e7f6bc4530cf481c1
BLAKE2b-256 941db6f4772278545c5d17bca1198e37faa48678521dc8915926748624b039ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e09b30f8ea1b7cae8258acc8935935fbc87db411357c337ebdaed65a329c8395
MD5 e873d7e2ff0594f5783ab3f97f429a2f
BLAKE2b-256 db70093af0a5e771e1d359c8738ef282acf4ac214679e78320c226d0176d0b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6382459034625c964c7702f5b25e2483068f709e4e771feb731f0d56774c40cf
MD5 53f87aa2aad9c99d894c2c8c7996ac58
BLAKE2b-256 2476cd66f9d673659e4e93a4b3ca4d9f3c647cc4f95a8ca32e2e256f9db39ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e6d89919cb53e72c50d0debb53270e18d8c9181dd1b51a28fa580fb1192dc30
MD5 5c0069a20877bbbfde8a30b322386e00
BLAKE2b-256 33660feda20c481f5ca53b753436ef8f4e1370386c19db3fdffc0d79edd24d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c64eacbec40629f190223c7f7b4f3d53eef6816a58b961378fe5e857ef61a10e
MD5 4d0d270887a07e0de41dd65763ab054f
BLAKE2b-256 f71ba85a406c52b1d73caaf760efda7b0d5ed6abad006ddf0c79d6bd86f58d37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1b808eeeba360c68b198089c31e4993b207dcc7dea653b57583e519c4bda33ff
MD5 8dd4d0eceb03609d9a6290fbf3d405c7
BLAKE2b-256 e224c870bd67c0b9c51d22cd1a1e6ec55e4669727a25260075d0c56b5a8d3810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 f414172de4dea7f6a470014b064bd7b7d05e8c0b732027012fb3c5150f307aa7
MD5 c2ff0646daf1feea39074877399a51b5
BLAKE2b-256 197678eb31a4098861044bb15515891660dafdc7513e8bfe8fc046d0fd7254eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 04bb3415749de86ab8ad8441619bd3d7add9ea9193361d955ee09c275a31f101
MD5 25966c100b6346deb290b3a49bdec6c9
BLAKE2b-256 d8e529c4ed4db244d73b5cc337cf5021618cd176879c81a2773b5abbf5c8d9e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bb6d2ea856d7a5b23ceafa7c48307c651799548e507d9d360bf798fef866c60f
MD5 7ca9419be628f4466f553053381112ae
BLAKE2b-256 ac0d59d02a12d0cd47c2119208ddbd19ea5892677b684816bbff9527106e0ba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 be89c139492a092614a51992ea53dc22dcc1bf14ee328938c185e7dcb0f1e17d
MD5 ac2f583a3fb76b1f07262686edab6ba3
BLAKE2b-256 7a1489f5a12a84b8b4851ab3511643688e14743fe707c5112080e1463027d313

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.0-cp39-cp39-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 50c9b582630190d88a5fbb201502962abf78e46457b83dd1034af5dfce2c62ec
MD5 a8eb807908d00aa7fbcba3d5682332e2
BLAKE2b-256 521931d9ed40d543b6deba328c1af4ae381f1e38f6ad931d49aa09c3b41fce49

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.0-cp39-cp39-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 56b090375ebec106a1e084c1f7d4841619c46a851308f4aa26faefd4798bc1f3
MD5 2c934f4b51a7de271255accb5a41a065
BLAKE2b-256 fc2babbe2c70d0c4feaa4531683a13c9e0ee7aa52d28d911c69584485f010f89

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.0-cp39-cp39-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 86da304255e4258f727f701fd5a902d70afa4920536e2098cea54763420b99f6
MD5 8535773e09c1b3b9cbae3e7a6e7c1a1c
BLAKE2b-256 1c1d2800443d28936908eb36f7c5c9bdd2efd875fea2e1cda5b616536522852e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d22a780d779a99577b15c9a7470488faebca74a9aa7bc5315c14083b2095ade
MD5 487146512648dc575189bab45514a36b
BLAKE2b-256 126aed00f016dcfcca1ed6c9dde4c8a26f0299c151b4791e094a36beed74a5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2817033257c478205fd9a2fc790848e0b4503c990f193263d84f30bf2709bbca
MD5 15ce4ae2a37e4f5a4b9229a6fdae4601
BLAKE2b-256 8bd8894c2e8c1b563c7d1e68cf2cceb0605f225c4e7d0dc73056ec3b75bc24e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 68bf2a42aba3d2b7c0dae06f195379e4481675fbffc239a68f4f71dc086c99d5
MD5 a6f8f52c175c0e956ca211ee2e6d706e
BLAKE2b-256 826f9c840a4c0a30f0678d87f438a529f3373be8d54e3a2422d20d5a6adc5ce0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73d36a076436ce07be8162ce77801d2b5f635fa0544252f463d8835c60e12855
MD5 70adbf064ed27674073c621df695eb6c
BLAKE2b-256 e8fa447db196c07ea733252013baf71f4428d63b8c20523446b5aec9ea0adb1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f841bb551fae3d7bf28b999030edc4a331ca54eff17c0b673987a4b1f6b47b6d
MD5 df5b2f9839c541215ab03126e9e251c2
BLAKE2b-256 4d4c6075fac744576f1d7622231ca768ba84e787df4558a56453ff2853649a3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d93f99a9732e047f69c4e058a37b0d57765fc68a9f71383cc31b4b30b17138dc
MD5 d9e57e1187b8a627e0c483931245481d
BLAKE2b-256 3797a1abe43c31e1e7f315fc5dc2489d190a1f0bcac02358cc0137df479868bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 e5783cf215ecd3911b1b891e3f3a66dc3096ca51f59ad7d9e20e0b18315ed211
MD5 34b1a874881a4b54e1b5a6a7ee9071c9
BLAKE2b-256 47b7c5d2c21ff17c1a51b5d1cf3e3710701ab4011cbebd878d3460d62d87186a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eabba5d7e7898ae424f5d3fba7d52a6666fa0679f8984164858b2fd78b21c5d8
MD5 518df10e71d432b24d7c9f3123e60cab
BLAKE2b-256 bbbc6d8e7aa7b45151d8d5435d8be9f49100e185c48f8c542b1a487ddd6cb238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7ad44311a5a1baa1afa95d79c8dcd6e60431104b9c80e8da22080c32aeb22b6f
MD5 44c73ab7c95e464741b06b48c512e0f9
BLAKE2b-256 bcdeb7dd3a721d3d17adac8854af8c3851407f7502f22973df09de644da5cd0a

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.0-cp38-cp38-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 16ce92cfbc693cc193fe915b5470fbd818fae81b5918ae620508c980df3a316c
MD5 31b5a61eb4623a86a3866a0ed5da327b
BLAKE2b-256 6cd83f103f07d8c0af31ce8d09b6fd710c89ee762f4ea41e03ec7bf28e4eb640

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.0-cp38-cp38-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 69051544774a71e082520591a8e230fe82f63b7c455413efdacbb98bdf3b0a5b
MD5 e35f898c15897aa159056a636fa317c4
BLAKE2b-256 f28d6c8ca33f0ff29df319a4e37e4bb8378d2583335966f4e2109691c4fb2e17

See more details on using hashes here.

File details

Details for the file python_calamine-0.1.0-cp38-cp38-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 fe8fd0f7e0c292ada2f3373b4bb27eb715f2d11a02659ee39ea2c9ead8e1558f
MD5 281984a3cf56f890ecd04eac0d9b7a6d
BLAKE2b-256 ec3a69c7f1cdb35f4fa9ace35ad0bba4f05d3506b185a004669a6276ddcdfef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b69a5b788be72e5d8d791e4ac8696de0cebe75af7718941fb7762e7d328eb83
MD5 4bbb0ee22c37a745f5da3ebba5c3d661
BLAKE2b-256 fe6a8144ca4741cdf310a4bdee557b1518fdf26a9af9bd559b1cc2924ee03edd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59cfbf68aaddf831bf9feb7eb013806f8e9db181e8a19fa9c9c98c9049fe5721
MD5 12a29e99788c7d3e992f337f48934ab9
BLAKE2b-256 f5a5719a46410685602bd0fa31e9fb5d2fa2fb24e81eea7f095df0588d0ce1ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3ac0c8ab896e07b1744e007fffe1293171e37873220198d41be0684e53b87abd
MD5 a0020dac6245935ec941b6c44f655ea9
BLAKE2b-256 b7c24f0cba96ec804b0d1a46db546bd4174a536620f4abd02ea58cec02fa84b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65253d2c33e3853530b01bed2282b81f0df797d0891fb1a1a91631875ed26079
MD5 4cef6d3d27c14fc38a1c74b969c7d679
BLAKE2b-256 7af97386ed678f88afd9e6d9fc3460b82d66c4e0bd433d1d5bd9836ce52d8b4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 354c82a54ba67b64b6b78f66f436181405591396806013ff1aef0fcfa10a6c5b
MD5 f46a8ad602facc2830909208c9a3dce1
BLAKE2b-256 d03b1337695f7c4caa6d320ed45858108ccb3d6ccedfe5edde7283769e9899f3

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