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 get_sheet_data, get_sheet_names


get_sheet_names("file.xlsx")
# ['Sheet1', 'Sheet2']

get_sheet_data("file.xlsx", "Sheet1")
# [
# ['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 get_sheet_data

get_sheet_data("file.xlsx", "Sheet1", 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.0.7.tar.gz (36.5 kB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.0.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_calamine-0.0.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.0.7-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (647.2 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.0.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_calamine-0.0.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.0.7-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (647.3 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

python_calamine-0.0.7-cp311-none-win_amd64.whl (501.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_calamine-0.0.7-cp311-none-win32.whl (484.9 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

python_calamine-0.0.7-cp311-cp311-manylinux_2_24_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ s390x

python_calamine-0.0.7-cp311-cp311-manylinux_2_24_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ ppc64le

python_calamine-0.0.7-cp311-cp311-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ ARMv7l

python_calamine-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

python_calamine-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

python_calamine-0.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

python_calamine-0.0.7-cp311-cp311-macosx_11_0_arm64.whl (623.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_calamine-0.0.7-cp311-cp311-macosx_10_7_x86_64.whl (646.9 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

python_calamine-0.0.7-cp310-none-win_amd64.whl (501.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_calamine-0.0.7-cp310-none-win32.whl (484.9 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

python_calamine-0.0.7-cp310-cp310-manylinux_2_24_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ s390x

python_calamine-0.0.7-cp310-cp310-manylinux_2_24_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ ppc64le

python_calamine-0.0.7-cp310-cp310-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ ARMv7l

python_calamine-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

python_calamine-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

python_calamine-0.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

python_calamine-0.0.7-cp310-cp310-macosx_11_0_arm64.whl (623.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_calamine-0.0.7-cp310-cp310-macosx_10_7_x86_64.whl (646.9 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

python_calamine-0.0.7-cp39-none-win_amd64.whl (501.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

python_calamine-0.0.7-cp39-none-win32.whl (484.9 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

python_calamine-0.0.7-cp39-cp39-manylinux_2_24_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ s390x

python_calamine-0.0.7-cp39-cp39-manylinux_2_24_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ ppc64le

python_calamine-0.0.7-cp39-cp39-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ ARMv7l

python_calamine-0.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

python_calamine-0.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

python_calamine-0.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

python_calamine-0.0.7-cp39-cp39-macosx_11_0_arm64.whl (623.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

python_calamine-0.0.7-cp39-cp39-macosx_10_7_x86_64.whl (646.9 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

python_calamine-0.0.7-cp38-none-win_amd64.whl (502.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

python_calamine-0.0.7-cp38-none-win32.whl (485.0 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

python_calamine-0.0.7-cp38-cp38-manylinux_2_24_s390x.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ s390x

python_calamine-0.0.7-cp38-cp38-manylinux_2_24_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ ppc64le

python_calamine-0.0.7-cp38-cp38-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ ARMv7l

python_calamine-0.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

python_calamine-0.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

python_calamine-0.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

python_calamine-0.0.7-cp38-cp38-macosx_11_0_arm64.whl (623.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

python_calamine-0.0.7-cp38-cp38-macosx_10_7_x86_64.whl (647.3 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for python_calamine-0.0.7.tar.gz
Algorithm Hash digest
SHA256 bfa63dc88445292d47afe8a48d27367c3dd461fe5afc7e362161ce4806cd752d
MD5 965cef4a736ae547c748c1e83e5e0c6a
BLAKE2b-256 1080bde355a4b5eecec13c232043d60be85b627efd78bae9cce66abe1f4ca61f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f717df1edfae3d24c58c8555a2dd5e1e06fea572a9e182275a8a4adcfd5a58a3
MD5 6bcf667f63bf339892b5cfded338fb10
BLAKE2b-256 1258d1179568299493e7b81eddd53f1ae5b75ded7c5a4b0e99b51fe049ec103b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d854ad7e1f40974d3c71b6671e70728f496634220f77bb3da3d4c861a91ba9cf
MD5 c67d65fa5a7d3d7cf2e6f1dec44e161e
BLAKE2b-256 704c7e1d9c3e3dece4ce476ec25d8a933269bfa6fd15537ff9ed6758f1c38749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e7340a5488cadea6ca33768818e8c916694152cad176cbd0ffa6742cabba132
MD5 3a442ce0167d0f3ac78c656e0d05af12
BLAKE2b-256 51feff6aa8b855ce6ceb540b99779e4304c09628df533cc69b79fdf7f5bcf80e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89f3e6e20d7e6cdce54cb627bde5eb3aa1ee8064108422a8ded7d7f0a8d31f71
MD5 7825af5fe5a05cd3c43cbd4ecb2b1446
BLAKE2b-256 33cb04b92e0390649c1d8f13e338a65075f9fdc4ccc99932fbc307b7c092eda6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 68f3d90cc6c7bbff45190fcf06d4b85e3fc8586e24fbe4bb63a90f3d70bfdcdd
MD5 2d197c551e5fa53c3840da40a13ec58f
BLAKE2b-256 93dcfadee662417c259c5778617f627b895ff9432237cbcc048c63e9d235a510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 88473c2b2518be21adef4359bf3bbbdd1bf0f3d79267232ee831fda5a6295c8d
MD5 b9017c6fd73f1248f81a689249386d3d
BLAKE2b-256 007662786cb0e7b71bc66ab15812feb027b0558b05606e78ed7167e4aa2d65de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aecbb50d79a72c9a893625ddd16eb87e77e583ec5dce89820df6d92961fefb3e
MD5 34ae9d11855a385b29724bbdcb6946e9
BLAKE2b-256 aba6648c0060667e07e5c24592e68ad9eb0ac17ffb55e43ccc1f84e45eeba02d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ffd6c8669cd85552db7700e2840d5a99e090591595bb57893589195b699029f5
MD5 5781b475fa9e6dc5a83f735c2a0d3760
BLAKE2b-256 c25ddf1148bb21264ea33269b9f5ec95a5c57bc6ce1ea2116c286c2b7e94f0ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb10f3f386663d30331ac5be3dc5c0a087c281398e54716bc8e075f2463ee44b
MD5 77d7518213890a3dbffd32132bccafea
BLAKE2b-256 4704c5dcf1fc45f96c5681d974c1a87dffb714a6a4912bfa5df0caf570232a9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 716a90504634837e5b9cc63c02dd14d2e43cea6235728d11c76b137b493bd8c9
MD5 1a31b58720f9426291f6800b813ec59e
BLAKE2b-256 6b59adbd5bbe19b18dda4367a307dbcba65504c962ad5d6b4f292d75ab4bf6b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f1b121ab30f97d3f8108d492228e7b59c90bb94b2450f2ddcdd5dbb279b594fd
MD5 f581920573af980b441f6b54a1cfa8b8
BLAKE2b-256 4ad716a8d21cd4f680e7a1ad7a9d18cd8425982034ab90778f59121ed867f3e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 22cbcc695556cd994b5d71f8d5bb9caee2a63a6e4cf9737cf82fedc6b03af3a7
MD5 7e9aa5e1f7ea0d78b9ced358c3fa5f8b
BLAKE2b-256 c049f8eb82d1881bf12bd281dfcf7ae49d84afad43b8495bf17df951fbed015a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 f444c68254ca861e7dcb46547e954883ee4aae6c99b38cee03d7d7fe323ca7f3
MD5 8c75d83aa4fd92989a77ee745504dcf0
BLAKE2b-256 f9f21172eb2ff6853a196b4d2bec53024c9b3ec2f2cd59d3a40153a26ca31543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp311-none-win32.whl
Algorithm Hash digest
SHA256 afac19d6187717453645505b81acd1d72f160f8b66bf7e3e0dbfbc9dd33180e8
MD5 99070b909f4b67bff3fcd48dcab39bc0
BLAKE2b-256 8b99cb578360904ef5f81778e2f0e6f34fd9f58a843bfb761463041d8d687f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bf44c03f3898444e3af61841851c08a979f177036654197baca3c623d6022ef4
MD5 cc5f91ec996c8102df23d40291fab42b
BLAKE2b-256 e3a365357209fb113cfafe71250b2489da31469f750d4bae168a500c1ae73874

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6831e7ec64f99dbed442c1f482a63597e0e454582a399f97acb620dc1fe6bb59
MD5 7ffb56c9c42a8246cb7cf461036893db
BLAKE2b-256 c39b61c3c42ad0080e5f8ec811f31ffc6e397fd71de67bdca2bb1ad2012211c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 1baeabbfc904fd82250f580e71925545f6b69f1c192bd454caf988251882e509
MD5 18d3a5fa0b3cfe1a6b1b8adac829972c
BLAKE2b-256 2b3223105ab70ff002ea6e170efd486da977340a71db954ea7f475965d939636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 4280e60d1f92522b3413759941cc149663470b52a06f3d66e338fce9d6227d12
MD5 ec010283a763b26d75e3ed3ab33beab8
BLAKE2b-256 2fcc5804b9201a433d800ce2b089b6d96307ab8dabca0988a58b0f04d252ee09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8459d10aa861f2f3bc332e8d20c6cb94f734337cee3d57b0b1fa31b1a806eb24
MD5 2e31963c717ca3e2e01b2af432e05718
BLAKE2b-256 2ea485bfd4dbab8ac81580cbb403267d73dd40f8c746b8282dc938d13818a6b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2275b98308c09aed102b05e571f067ec66732c8a7411a70c7f0a91256c32f94b
MD5 efdc83f8b956646854cea536aa73e48d
BLAKE2b-256 a9c00b8adfc768990c4b0d650db16b6330d0f919a51c210d4da3799f9c8622e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe3ed2037d99fe24b2bfab5e69e3cd5d2432a62c99f0c07febe00d56214cec40
MD5 545f31a85647c4b005891bf4d0cbc297
BLAKE2b-256 2d61a69c900f3cc2d3f519cc0fe638d6b0c48bb198b47b4b6767aa484621021b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9457c9850beaa5173047130e3bd080df4bcd6a37b59a58be930b6d4d543f51e8
MD5 61d2675b4d9b4d3668846550dc0a7d4c
BLAKE2b-256 28ec422af69b49e805c3eeea7143090330a13cde87ad35e8cc7a5d763b871028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0717b2483c915ef221b913ceb69ae12675d5db4bb0d1003b71a4a462a8f6ada
MD5 d406394c9235928e27fe152a43b003e6
BLAKE2b-256 5a4041c5393d364ff7b5efce5514efebf22961a6dd2d2fc33fe67503d08ccc13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f5bd6232162b95c367525895a463f1c982a63fc33c1d3a07c6e5dd23d33fc4b5
MD5 b870830530314718b59e37d2506c6349
BLAKE2b-256 f4dd2ce77d970d2148e6010409930766c9744525a0378d7cb0cac2c5ff0e545a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 5c3ec487e0aad352b89d3b11a4cf53f74f0ba00e67386268ec50bff1f868c9dc
MD5 6bd3cc0afec4d49aab70a78e8be28d72
BLAKE2b-256 f34b779837396e3464b492cd9a3f034132305dbca939c599719b65f7516434b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5c4c54274670c9fa47078d2c176841325a586fa9684b181e3c68a84be3ad3188
MD5 ac3cd88dc7cc285e9bb58d68540ebf99
BLAKE2b-256 8dddf69aacfad49fbdabff41b780a6c6c07d1916081face5c4ef87f7ac27505f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 14f7d98ccea2896323c07ff528e90d13c6fc100a0ad777c7a4b9cf535b50ef2c
MD5 fb95b44b0b53b1b337a9084d56e8b861
BLAKE2b-256 25dd6c2c19eabf04c2bdf78c93ae13f705113adf1609d126d317cc279a930e8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 24e421b4d113e0eeaaf10ca1fc45ba2b924e5f67cc3ad5fdcb70413ff0fb2833
MD5 9a8dcb2d02c0fd0e98391aba3dd21079
BLAKE2b-256 a0bcee481d7608859e78e6d78b0089577c03e9b8d328b11ca8195ecb6557a061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 8bb0525257cba6d857885db64d78aa6f03cfc465a64a9dd8173f3e7f330dae78
MD5 3f8dc69360ddf02ac1a9c1a1a8383d74
BLAKE2b-256 02ba61aaf230919daab77020b1f98f82bda1ecc5a15faefed1bca3fa2ae32f7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 6ed98e3c689e35de933e727f597c3e740d5b1940bc5aaf86315d080536da2c45
MD5 7640a0fb28890ef945d7200389dec41f
BLAKE2b-256 fcf1f5c6b77d475c496d5074fdbe73fac7253d8df147f8ca9e471081caf5ebcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 3825e296e454e53d82002634a57f59fec422adaa187dce38e6a661bf00e97839
MD5 158838ad7db9d0cb8212a914db909349
BLAKE2b-256 66e1de4ece09ae45b122d4e4492be22d7e1c85feee36c787b84eb57c416acaad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a753a71e165f6225d5df2f683eaaa7700a0369569e328275de97b0d6e78246b
MD5 415310b5e01ed86faf1bf109e7a69fd3
BLAKE2b-256 5f8f0961cd88af326c65f81b002f2ef61350f966432f043b7d51ab72dae44718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2383b29de8e1202ce523c927a8144d82348208a10d8a6215f3095e99b2ec2b81
MD5 3c0b3e5c134f44c8408c1872006be4a5
BLAKE2b-256 6df20de6a57a7767cd805c07376c0504de5a758d59ddd78b12e4a7a42e90ba4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5ce5ce091cc5ebff37bc21227b3c64d82f96818b046089a1e8c4850afa6fa6a9
MD5 99dd6d56a99ddb0255a41b28703ed7b7
BLAKE2b-256 d0c0d2da284f87f0df549b7bcd3710cb667aa031c61f9f0be5b2ec223756e529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a010736353390ee91bbf244083e229c3b1aceb94d77ac53a57ee5c99215fd456
MD5 ea7da958c66b04f99f293dc9bfc68bdf
BLAKE2b-256 257e5ca4e27e85dcaab67b284f6253039158bb4cdc297343418f4036e22ffd17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c21e0c33a84c5820ad806c8e124831c64832fc2bd7076347d6d3be8a78bdad9b
MD5 ca9f97267828de2221a23671c7b9d980
BLAKE2b-256 30d28d18b2e2ef0ed45a41b1e67db292735b7882540642cb767b9be6b567d05d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 535b619525d85768e1a76babd00c33af12d727984251aa8f755dc85b722ccf53
MD5 521129dfe44e86b36674dc0b599b2577
BLAKE2b-256 bc7e358707425a18310c69fbe972868f66fabe25c7b8b6180e73ad55e60c9b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp39-none-win32.whl
Algorithm Hash digest
SHA256 83d0e8f9d230b098491ff3af22f196b82d69346d688b2bcf4152eb0852d2a176
MD5 6aecadc6a7a1d11d4d846d9ff1766fb7
BLAKE2b-256 db3d47bd35523cb9867cb25760ebd44c48465a10fec0891dfe25d02dfe6bacc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a6a2e4e579409615fc349e15c5ede089c567ed81b4412e206b991268fee587e0
MD5 e6d9a73235322b182c7ebc19f8daf65f
BLAKE2b-256 810172454779507d6e1a808456ad732bb8e4ea7a7c3cca6555f0e1aad135d186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d5452c4913519f1c691687806831bf2ebd3c0adeac9e58cacb591feadf31a11d
MD5 e2a624d10a3520c403f52fdf8badad6c
BLAKE2b-256 f3208ddf2f269208a8b17434bb95a2d8b0455689a53e80049296b0ae46adcf20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 dea73b239bb44149ce416e6f022461d0793c06405f6ddc5b7a2be49b12c37523
MD5 7df2816a29cd3c9a460760ecfb76d4f5
BLAKE2b-256 4ae1514e897e7407c5ef59decb37480a58b0530ae4bfc68f1b7b11faa0a9aebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 322dcf9c1ed07b671c14f0bd8ec3c23d1eab42b72d495363ca3ba3c668032b5f
MD5 1e8ad3c570ea67fb1b58a3efca57b447
BLAKE2b-256 85339e577910a683a1f8087016f0926bf527894b3d6412903360d0520e811900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 f11b672a1e36acdb535d82efc6b585f309dca12285045f15df5691ac19efb420
MD5 398b212b740629f68b0983484cf304ca
BLAKE2b-256 fbf883a4bc58206f33d640a5b9a99c715097a1f7a756b11fb540fa1b78d08731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3e38d426a43f07947d80afc4d854f96897950f2a50dfeb329ccf6122d776f8d
MD5 a502968f766ea4187537c668172fb8f4
BLAKE2b-256 8922d4a2d9c2e47b33d242eb98c2d8e5b55aa27ad462c7eddd8f752e4b5a2164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4387413ebcf2f6a7e3d9000d238fe1fbea0f094080c22a4124738b322b6ddbc7
MD5 8fbae6cf45f423aaca9dfa6695082c44
BLAKE2b-256 f7179e15f23e38b1649e341db2f6ddce07a3595071cd95c1baf761a4b97521bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e7b2affd5f81a379c4a8f9bc9cf6bd2251c15ce7aee85030f8d51508f51bd6a
MD5 478e88b8840d54cdcd43b0623cbe55df
BLAKE2b-256 8c2fa3e354575fed416e6096845ae604b0043d760d747fa3c663d4c43cd60525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f83fffbc03b47ae8cc82dee0b3dd9f09c0f21f1acdb6e47972de06d3ae3bea5b
MD5 7745ccfeb97ba23c0922059ee2d17446
BLAKE2b-256 5088da9ee4e7cad856c59d1c8cfe71184b13c80ed020daca669916318f17a067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e459678af5995a9db2b5f1730fe4bb39d8bc514dd66cc47e1dbae7fb75f26cc4
MD5 df169d592e8523c8ddc479a5b6a27a30
BLAKE2b-256 b4049b27eb71349f9e17c0462fc2084e862a16bde2d116963eb7be34554be20b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 838449a15e6b30cb023a49b529a69cd9bc843254ee377f48b40d54b6f01168ff
MD5 6f9ab9262d5520c87bf73b7ee384dda1
BLAKE2b-256 e08f702e580dd318d33dc0ce5b0b4aa91e26c9d786639a7df4d3ac18bf341e67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6caee5ef57fc8cbb6a46a2af4c75364341a5783d86aa16e9b9645fe3332bfba4
MD5 6549c055a2b5c0b8e288f21edf21cb08
BLAKE2b-256 d820cf4ecb7fd284f18f238e9e6421dd049e6b35b5475db9bf96591d3426e121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1acc6df913e17b53f84f851c2ab62aae74bda0c5aac0cfd5d87e5fdcdf2d07fd
MD5 4f48b05d88693af91bec932051fa179e
BLAKE2b-256 c3e7c8a353d8d2e7e8a6b3c9a5a06da0ba7c2b88cecabf348d118915d02389d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 57bf98b4ff54520039e7725641fcbfe7116aa59e44e111efb5cab8c2465d6044
MD5 96406f4a0a3b47123fdd73789661e5d8
BLAKE2b-256 7655151edaa2acca3dedf7284b92743d74915b4aa0d786b10faca0750710d28f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 2ba7114512ecdf19318cb2a1c147a502e6a5b507f86c76f0cbc5fc4c27574ad6
MD5 a73a365f4ac53dc1edcd7a0f1f7d6260
BLAKE2b-256 8bbfd1e48fa09f2f5ffdda942a2570119dd5325496c9f7ef2bc456516c1df4b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 74435c7fa8498fda846afa4740ca34943941cd4ca5d1b8658d2d74c7294b7948
MD5 89918d144b6e6f6873adcf9164c2d93e
BLAKE2b-256 0096e4f2344723c01e5bf4420fd9b5b33a9c184659d641ef2f7d15956b5b5b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 b81d8c3647a3faac774cc4a37109770b0b93e5220aa2d1f8d3ebd64bf563a1ac
MD5 9989a421bd0ad8ad7754da04f045a75d
BLAKE2b-256 ddeae4f59983f613671e3bd2d32645b196a578883fe01fe0a33f6210f98de62d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7992bbf310356caee28f77d60d4d12e5c10c534141d85ed83030344b610c83d3
MD5 ea6355a40c0a6f9a05f46b8489736b48
BLAKE2b-256 4ff59cd92b41619ed010126278c44ae3dc500b2144aece00c1185f0d0450689d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20f947289c4c1ff889fabc1b4c4c98654eb2402f412a16eda2902310abf50d77
MD5 728ce472740245e48bf31484b884a82f
BLAKE2b-256 22b7b05c7852081b865b9a5453dfb1a82c2dfaadb68d9818eec5b3dc3f040449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c5a6001e728c5cc8d8409855a205e08d24516e734e85fede0573fa3e82652681
MD5 9843a81e71fb468581653608783ab811
BLAKE2b-256 08b750d487b8f0f628cc150a77c896d0d5ea29362d7ac355d35a993a023b4ced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed76ef68f32f6670b5311da517d2cbeb0774ba4673ead46d7818930f6f3acebe
MD5 f60341efd2f11831473c0345b2751ef3
BLAKE2b-256 15aac545203ce629c845380bc22d1558e41799c5405942613d4dbff9f6f648a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.7-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c803d259b4e080cb31e9ac69658f2dc0871fc3e0c87f7e3a67b502d06afd8e20
MD5 818f5363459f0612247983370495a28d
BLAKE2b-256 048e1798c653fd051b88a866c9db6a06d579470d94f3312281e07c1c7c47cfb8

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