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

Uploaded Source

Built Distributions

python_calamine-0.1.3-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.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.1.3-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.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.1.3-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (777.8 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

python_calamine-0.1.3-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.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.1.3-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.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.1.3-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (775.8 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

python_calamine-0.1.3-cp311-none-win_amd64.whl (606.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_calamine-0.1.3-cp311-none-win32.whl (583.1 kB view details)

Uploaded CPython 3.11 Windows x86

python_calamine-0.1.3-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.3-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.3-cp311-cp311-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ s390x

python_calamine-0.1.3-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.3-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.3-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.3-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.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

python_calamine-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (744.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_calamine-0.1.3-cp311-cp311-macosx_10_7_x86_64.whl (777.3 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

python_calamine-0.1.3-cp310-none-win_amd64.whl (606.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_calamine-0.1.3-cp310-none-win32.whl (583.1 kB view details)

Uploaded CPython 3.10 Windows x86

python_calamine-0.1.3-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.3-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.3-cp310-cp310-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ s390x

python_calamine-0.1.3-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.3-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.3-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.3-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.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_calamine-0.1.3-cp310-cp310-macosx_10_7_x86_64.whl (777.3 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

python_calamine-0.1.3-cp39-none-win_amd64.whl (606.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

python_calamine-0.1.3-cp39-none-win32.whl (583.2 kB view details)

Uploaded CPython 3.9 Windows x86

python_calamine-0.1.3-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.3-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.3-cp39-cp39-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ s390x

python_calamine-0.1.3-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.3-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.3-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.3-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.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

python_calamine-0.1.3-cp39-cp39-macosx_11_0_arm64.whl (744.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

python_calamine-0.1.3-cp39-cp39-macosx_10_7_x86_64.whl (777.7 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

python_calamine-0.1.3-cp38-none-win_amd64.whl (606.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

python_calamine-0.1.3-cp38-none-win32.whl (583.5 kB view details)

Uploaded CPython 3.8 Windows x86

python_calamine-0.1.3-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.3-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.3-cp38-cp38-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ s390x

python_calamine-0.1.3-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.3-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.3-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.3-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.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

python_calamine-0.1.3-cp38-cp38-macosx_11_0_arm64.whl (745.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

python_calamine-0.1.3-cp38-cp38-macosx_10_7_x86_64.whl (775.3 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for python_calamine-0.1.3.tar.gz
Algorithm Hash digest
SHA256 d093063a23858a3c4e84b25f37dc879f007dd734bee6f9bccb170b83e43474a1
MD5 d9ecb5a284c7a6266081c61da5eff63a
BLAKE2b-256 8c84fd9f8d847b9cd6f86ac315aaf8a82bb762b6c6db29fc6bb8168629718fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6c93e71006ea67daf0e42020c4c4c79d8fcaedea55a929a675d7c34d888c5ed5
MD5 eb92c315073fdde804ceb835f1131ef2
BLAKE2b-256 8d95568b421b28057ab25d9bfeea537142541932c414ea7d2114d56e819f8c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 07f5654bbb2039e6d337432bbfaa093cf69c575753f381c2f32583e8040af4a7
MD5 112770b132ae898ee3dc187955395db6
BLAKE2b-256 231f8948be1955e3a1f88c70cf8f42c038f751e31d0b971aadd4b98cff7648ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2030361edb1768652f838b70d371b0b3901ac2ab7d97da1a603ed6bdd4854d9b
MD5 a6792de76781601c21159c351137ba90
BLAKE2b-256 d22607c423b60285ca1729c2ab9ff60c0a298380a979006901418949cbebab70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4468f0b326b84a75e358c3b7157360f3de66ceb8c4fe3e0e3a2e6702461cc656
MD5 f455b1e76491e9cc670f9948f4fa7230
BLAKE2b-256 d00ccda06846b543df947c9d9485302a2ebff0a9accabb2242ac6a2a45e062fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 11c3cb273846526d733e5369c19021a63ccb974ae6f44e3ce5cba5aadaf107af
MD5 962bc373b02297fe2d39a236257f008a
BLAKE2b-256 b4bcc3af337ab287d018a4d287ba177b0ee9bb2fa372612d25a3c2f2a154ea2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7be8a3f221f92c5fca84c00da6d4db757b8c2bfcb06537b9c381b37150cea51b
MD5 d4490a81a2412082dcb24227200f027e
BLAKE2b-256 0c3dd1d66fd73c021fa2f20cfdc557579df557301c428eb2ed3b108eece62974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 df044a802247128807692dcdeafce961592f9d7a3ebd173fb033b79ed3394f4d
MD5 a3b252aae0e9d07a902a7bddf8c9dab5
BLAKE2b-256 b477b2685c70499cb1db6fafc1c8f242e6538de8dbb5e46e025e5e8eca6496dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 51e24b7a65c32080d4f00c6ad49b1cad74dd9a2f49c22b0402e2d2234b521c8b
MD5 0e2641e3f0d0d9b111ef77cc08c16ffe
BLAKE2b-256 fd29265e68617a922522f21af6712f066e027301d1240e5c501727bb4172d3f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95a4d3f4fcfa665bb12b95602d1bd58d58dbb2d4176859f28989d800b94fae6b
MD5 2640cbd2b17b80e15fd4c21ea0017400
BLAKE2b-256 0b20f9acceee1176027e7a90998255d8b490499cafbcf6f98202889babdb89c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75a69a851dbcf7bf5766700fd71d27ad7bbc9a53792750f4cbb4acad7efc02ed
MD5 d136ba4a3525c52da5bc668503514c3b
BLAKE2b-256 95ec92d5cb96301ee56526842275765ef85bfd5dab1c7ae4ff4a1fdf01c77d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e73b1ff1f5679cb7aa5c42dfa9a81e08a5bfebb386d24a356987a744c63f7606
MD5 5ee2e8a117327234a1cc665b68ba5dd7
BLAKE2b-256 b1ee7b29445107e84bda4026df797b48624170a07103467ad8003bc7d7a76926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2e603026d1fdbecb734d5739cc083e2f193751033962b52649a94dd805dc2c02
MD5 b300e920c4bc70ea94869b39f54cd9e6
BLAKE2b-256 4ba5038125906b354d7a463de1bdf1cc1a7dc61e662318dc2b3db3de52f3d276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 f6a7646ab6a324b3520a518b97eba4483d157bc85157a85d09a2ff3265784f3f
MD5 67e378b58d68b24d899a658f3f27359f
BLAKE2b-256 af4ca42ba7778e1d7a3328847565366cacf8445b1b6b087a3bc3e0041dcf9d43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 868ad88c75388de8f2e61d581f09b27d3331e43b739b149ad69ca4760fa0b2bc
MD5 effed5a28940638fb9fb8c420db12d91
BLAKE2b-256 1562a8bc8d365dfb8c2ceee8217c14b4dd7faaf5d37f548dc59e1b83503ebbe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 423514b7f624ff01f78bf5fc61e0a1c6c2dc5d7ff5255fac2b4aac9f61546848
MD5 7614a649fb30f585eea1c27ad488f16e
BLAKE2b-256 d124b2fdd278adcf01d7807cd8c8d77afb86218c1b379976b49f5c347ef12431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0da93f763bcc3df20a88fe8d4177baf2cf7a8cea9461d93fdbdb729446d4bf06
MD5 a73a79f1a01f66d5bf77744c86ee4c1d
BLAKE2b-256 5f8023488609a7f97e6c039092dc0f85fd1398398d255d0e0fcba10f3e42202c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f4652bdd98dfac0ad27536829e94e2682ee4b8b8a9b970d62a6f9c6bf3aec2b2
MD5 712c2c8f3694c086f49a6896bf41ccb4
BLAKE2b-256 ed1cff214dfd550d248784b4e557e01bda3b8916a24577a5ddcc4bc36813ace5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 0d75c8c2293867461e36e94362c64366ee0ddaf40e8219f851ec6cf15641f712
MD5 4717c1d34363fcb747baa381e67dd47e
BLAKE2b-256 a94ef0dfdd9bda58d9a25e60ad57d5bffd8638b679c9ae85cc94037d8c508cca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 9e6e69b1acc175b1ec28da2180910af094e421f6aa221f5ab554b9858d65d995
MD5 762dc1f17a85ddd3591ee25268d1b9b1
BLAKE2b-256 f8baf436876307057c3c6843c2a7c234876720bf727f94b538d0ad277635dd91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b57c1dd88e8220857ac3bea09e09ed8397c52d7e94adf6b8508b54abc9b545e
MD5 4782cdaed8c1233179456c9bac4c028c
BLAKE2b-256 680bd8f611436b6a531cb25857d882b8c9a3f2791d977718f7a16b8847659149

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30a380e0ad69173828b5bea19bf34e00fed5dad2786bd54eadaf1b07fec2b9e9
MD5 0711c4195c1a9f376278e71f3ece68d4
BLAKE2b-256 107b5a3222ccbbc1fe5fcd53c1dfd8702459b5fb0688983edd7c6c90ef1349a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8fdabd7f415666d818bdd5488f63ad7c88d38808fb2585d7e77f7485d380a865
MD5 2fb24dca4a7b95d3cb9c88524948b4f4
BLAKE2b-256 e44b53e0df1acba00d0e09a9499ee741db2088c6c625f76fd59bcd644e8d298e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0530a437ea139eacaa7b0989b347320b53fe32ec65ea359ef6afb31b2f0536df
MD5 2862b3c2e5ddf01801b533661ad0a184
BLAKE2b-256 717686a7d260f487f5c62095b7d2ced42378417a187955c2e5ea0f7b4addfef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0929b21a11df2b52bf72aad873fce87015a36759b46e7cdf2d6276a9a84104a0
MD5 a6628a4620263ca552051273685b29e4
BLAKE2b-256 36f04db2687ed6622e74b125ab904d9170eac9d00ef450da6d85490769e07368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d0821ea4704e3888b0e6e4f7965623100238830bdf534025d3790c29f190acf4
MD5 7d156ebc3a2c8689e6fd6c4aab8e78e4
BLAKE2b-256 6a5bcc91c1016ada9b787417bd840cab24931b9863ad8b82edc0744cc11eb6e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 b9fa7ebc6653743082f622bbdaa30c15a1520a6c413658e4e60c30127b58483e
MD5 f9aece371b80cd1bcd8bb56b6083c4df
BLAKE2b-256 419164334ad1cc8958412b6562084c01a453da88b86f76568bc50b9680b759c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a7e15536aef673b8994869f4306c46f3c31d3ced29385122d0d1dfc87f2559a1
MD5 b2ed0a76cbfa624b38524aba8266e28c
BLAKE2b-256 04f800a0f1c50d4fd8df0f7f5a37a392ef1f36e68687cf92ba73efb8cee5b70d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f844ed5b956b90b222a9bd29f11072f835344df852efd389436777d1da573376
MD5 ebe2ea17a828ccb4d27230395a07b71a
BLAKE2b-256 75d745c11b1df4ef8c21b5450ea2440498b7b3b05896f2c32715e527075eec31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f83c0fd8e149780bbb511dd7bbf8bca05d002225471a0845c12e6cbc8a988129
MD5 921890a6a5a439d830c83b320545f998
BLAKE2b-256 e97cab16d9391a29e6fbd4c96e9b18bf0129dcb89264d0ae96a674837cb5f8c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 607e8d20f07b95b7d684966ab78f595b9f0f54c38e2ddb732fe95654d40752ec
MD5 ba2cd49febb4fdf15062b3e8301270f8
BLAKE2b-256 11cae8df129d9a913342dfbfef3f3b8cf7a24d0fffa71d52bd403aca9ad7f99c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 d9839afe1398a3e713a478f392766a5fee661dd1fc4e1cb74f433a6180833923
MD5 95eb6125e69d4c462a9765b6e5e22748
BLAKE2b-256 ac81ae24aac07435261c83f52a096e80ffed2cb0118d6a9f8fe900e9a0699d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd096e7e9039f6c1c56819ff94f3d45c9bc24c2be2ab03a9f5a6d886500cfcdd
MD5 b093edfeeec326e8009d02f0644c3601
BLAKE2b-256 69e5d991458352ae502107604df92d245e8400bb454278ffa74f1ed38302c5bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84c82453f2a60ced5fd79afdffb6d4729a558b4e916107cd8307aeacc9c0ff53
MD5 0e8049ab02732bb934069abd74447e1b
BLAKE2b-256 a70479d486afc7ab55d3e8c88748e60ad6df50a7486520be25bb6d1912ed03ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a83d651112623734c1f1c193c653ff23aed5c6dcc35df7f97a906ad7fa4d2c34
MD5 fa3a060ebadb9bc2fac90aa6fc83946d
BLAKE2b-256 2034b16969b46f381f730823cdc094f413357acbb9fd1a63463c4d407ae1e9e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3878045f5c8b5293c0bad2ef7229608545f88b391c113e180ce96afd6dde6db3
MD5 0ae6b70fe8af9013f3fc51b9242c13f2
BLAKE2b-256 ddc8a7bdb9ba4ad4c17a095a5659f7f8dd01a536579aaba1565bc57f8c8bb1f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cf36e8c2a125132fa65d96f86aa015efa07c3428862f73830935e6cb3a96d2eb
MD5 7a04ae98d6d3a86892db7c9cee34dc26
BLAKE2b-256 5cb1c10b72a20fa202782d78ec1c5fe774f173fed21911544ef29e5b1abde2cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3f980532c93f6ff86b22e2d931b286f7376401b14735a8fbbeeabbcaa540bf22
MD5 21d046f1fc7bf41435a73e592caa2e82
BLAKE2b-256 6b83337e2a7430e2598d63455291bb6b9222ee22ce1e7bca9a83399634945f59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 8e27c1b9d9339878d124efabf15a4c94fdb498d021eb2d4d83108ed725e6c176
MD5 8b9a5bd2f4393c2e857cbe1f21efa638
BLAKE2b-256 a1a034091ec0f8664c860c6cb80d7c3bbfc98ba0a1abf5452f6008df5cad3857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8572ae431c6b3765f9dfcc34b596924adfd26d94de3895ba7601777dbac03756
MD5 761153ed5109c236899543cb673d0c17
BLAKE2b-256 58176bc94bba59db8dc48b58509432951a3d286ddb90863d731c941a618e03f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c77bbab52e8dce3cae65370795dd5e8e4965f79ab04cb447e0a6ce117b0351da
MD5 c4da5d6ff33ac00ed713bdb5971d4dfc
BLAKE2b-256 d1067a887a8422958e272b120aa4d198bacb34f8318c55d4c3fc40d1a719f791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 338efbeff3c394005170205a354c242c41daf7985ffb7d2651391de0d786137a
MD5 d3e40e90188caa82863000aa209bffbe
BLAKE2b-256 ed2c7ed11039d8c4f6ef96d914243e54f2ad270efe0f7ded781dd5a6daeb0950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 ca5eb878ce0da8580b9cdc476f4770362216dfdeae0e228453549193c1c27bbf
MD5 ca7647d4ff4e368e49a4e871baf88c05
BLAKE2b-256 0c18e606972d7d8ad196a95734c7f0b3e6c1e2c3851c386195c0f390fa5dd38f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 b464c181d8dfc63c923048eecaddbb52fc92f4929c5c555f34a63fb7e3c9ea6a
MD5 776e80f90b33aef246233a8e8b950635
BLAKE2b-256 df81c89d9be7fe34a16ff976cca867ed4d4d39cf1d01e3f0c29ae29446cd79c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbbceba8952d0fcd72e928d0d96fa3f2554e3d03771da87dafa92c65acd1a545
MD5 56c5e40a9b73a6c5335154f7f4088eb8
BLAKE2b-256 6324f81403cdc7c302ee66cb9f1617669eaf4f12ba2db34f424359013744e30f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08dd331549a8262cdbc1ea9bfc5c7e35502af653a0b4beb62ed876d38e4b6365
MD5 75b8d0e67f6204a638e47e00cdb9b4ad
BLAKE2b-256 386b44140b957cdbfab656942aa4d02b06640754cb296560731114d16c3562c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 58bfb4367f8440fff71c5f1683aa45d0a660c01e4507f7838b44b604cd7cf29e
MD5 eac4d607893e5ffa132bb377a0d634e2
BLAKE2b-256 ff57ba565b33af866a72a0d2654ff0412ca5cb966d0566c705a7e7582784e62b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9957aa753ea9d8ea277c00f39b96115ee4d6799a729128e228ce54eff741a9ab
MD5 9d5bb321f312e85e0c0662847d485395
BLAKE2b-256 ccc0ebb16d6641e6d47bc0786305316696998283cade817bc383bb7f8ec12aef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8fffbe266b482ef94e4f5c9f4891bec1a4aa24304e7aa34534eac71e8fb6e67f
MD5 101591a334e6ad8c779cf76da87bf26d
BLAKE2b-256 c188831e4bfc47a10861573790c65ce5d76dc5a0cc2d78aeaf82b1b084306406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 3ce3c730e7b1efc92821053cf8b20836f4bcda219e5cf2d527f185e3016ef454
MD5 36cc3a987cf8895cbbfdf2184caddb0f
BLAKE2b-256 565d286101bfbd042e463debdfaa230eda3018c82f879d2df808b4c07cf3ff6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 aadcba17f576e3096e14decfaabd80f261f37380856aac96950f5cefce26ae88
MD5 7d556c6e01174b60ec38691b472fcd0c
BLAKE2b-256 1a83eba65d0ef4c9fbc2e50f3bfd33085a156b07421cac507794b60c27abf045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d2c52980e6cf2680af58e12ea9457011cf2f536fe5a4552372c313c0553072c8
MD5 d7c23c562a24eb72606034937bda8372
BLAKE2b-256 cfa7ff4a1b6b715e9d2fcb7c4e0322888331fc7dc6aee8c0e8820c082a89ca8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0f9ebf52f249323c238e9de2408f8f78fd4f314073f58aa262c57bd334cbd39e
MD5 a34a8ba05577ace45db9f2dc51460e81
BLAKE2b-256 18837cc4efff4e66aa5343b2da874cf42c601ced4aaf81281aff46593777561e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 7a111c5e8c4e9c2279256012f1a42a5be6d1df6cb79797b215c6a99a27e8616e
MD5 22816c90f89747c4c131d4dd98c4e6ea
BLAKE2b-256 8279d13aa5268ebd192c308d0f16dcafaad6ccc682d3e5dd3f61f80f2a6e83f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c948caa15f8d98cd4907896d1d5e069847474607cd7f7bbac6f5f24554c35d86
MD5 40f3457326de0d4871dbb99825cc2305
BLAKE2b-256 befd9f6957c88588bdad9841a0fca2eb70b1ec9bfd2a1f938bcbc34fd72d2ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 fa6cc84b098b4299044567c44437557c12eecb40178c1789df9214f7373d14c7
MD5 a06638b2832c3f5bb63791e3017f26a3
BLAKE2b-256 4cc0012fd808753ce31b99b788475c8176f7b046c44a29aef5b83270f01be37a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f8b53015386cd4226253d8fe94ff7cac84362e0a854aaa566551b8f3cea2a03
MD5 c834b3e219ecd3ec1ccec2b88a6b416c
BLAKE2b-256 47fb88b8768be788cd1ff0d32f70d1a3a6faa959555f74c884911dc6e72a0af1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3af0fabe61dbb6df1f866c1c9ce80d4c700a5edd9a16e7ff8f35c9279bd0ca5f
MD5 2d91c23aede5ac4c02d8528b73df7d53
BLAKE2b-256 ceb97f1d5e0dcbd2d5e776b1458e155ac1f418f9300dc48b561edb0f09e51ce0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0149cef12fb59b05b879912f2d9a03a72ba15198fc7cff22a9c9be60f741f389
MD5 7ce9f218f359887e0b35c09feba9bb60
BLAKE2b-256 86ecb4348c7f2b02f62e67a5d015bac57c958f87a96dc0bae9f7c1e8301ffd1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f809b389786d155d5de23dccd1da6aee0beed4cc044c93fb52f49bef5b144cd6
MD5 5719149d8ba969f1a835638fc96b1801
BLAKE2b-256 31adc31b9218a9ae542354864bd4b15c5e5e46bda3090769e4804c004e2c63fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.3-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3f4a93864a973e259c6229d12dde8e961bd97f1d198c1318648fa2abf6e90d4c
MD5 28961e6d4f0a0ffa6465982b64fd5520
BLAKE2b-256 03b8ae705c80e3de2e1f81027b48cc4d4a0d41b444341a58ead8d6b419d25105

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