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

Uploaded Source

Built Distributions

python_calamine-0.0.8-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.8-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.7 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.0.8-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.8-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.0.8-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (680.7 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

python_calamine-0.0.8-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.8-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.7 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.0.8-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.8-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.0.8-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (681.1 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

python_calamine-0.0.8-cp311-none-win_amd64.whl (527.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_calamine-0.0.8-cp311-none-win32.whl (511.5 kB view details)

Uploaded CPython 3.11 Windows x86

python_calamine-0.0.8-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.8-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.8-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.8-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.8-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.8-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.8-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.8-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.0.8-cp311-cp311-macosx_11_0_arm64.whl (660.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_calamine-0.0.8-cp311-cp311-macosx_10_7_x86_64.whl (680.6 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

python_calamine-0.0.8-cp310-none-win_amd64.whl (527.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_calamine-0.0.8-cp310-none-win32.whl (511.5 kB view details)

Uploaded CPython 3.10 Windows x86

python_calamine-0.0.8-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.8-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.8-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.8-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.8-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.8-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.8-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.8-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.0.8-cp310-cp310-macosx_11_0_arm64.whl (660.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_calamine-0.0.8-cp310-cp310-macosx_10_7_x86_64.whl (680.7 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

python_calamine-0.0.8-cp39-none-win_amd64.whl (527.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

python_calamine-0.0.8-cp39-none-win32.whl (511.5 kB view details)

Uploaded CPython 3.9 Windows x86

python_calamine-0.0.8-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.8-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.8-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.8-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.8-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.8-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.8-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.8-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.0.8-cp39-cp39-macosx_11_0_arm64.whl (660.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

python_calamine-0.0.8-cp39-cp39-macosx_10_7_x86_64.whl (681.1 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

python_calamine-0.0.8-cp38-none-win_amd64.whl (527.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

python_calamine-0.0.8-cp38-none-win32.whl (511.0 kB view details)

Uploaded CPython 3.8 Windows x86

python_calamine-0.0.8-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.8-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.8-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.8-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.8-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.8-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.8-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.8-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.0.8-cp38-cp38-macosx_11_0_arm64.whl (660.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

python_calamine-0.0.8-cp38-cp38-macosx_10_7_x86_64.whl (681.7 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: python_calamine-0.0.8.tar.gz
  • Upload date:
  • Size: 37.6 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.8.tar.gz
Algorithm Hash digest
SHA256 b975e4971b5a801a34d5ee7c280238a84a515d84b6496294ac67f394971ad76a
MD5 b5eb8afcf1084071a154ea3cdff5c9e3
BLAKE2b-256 47f9a2044a6c760b91014be26285e51d7e52d01fd7dff6bfd474b91e35cf7b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5b320ad7c10fa8e6195af7c7f6b9769d8f2aab5e68f8162ffb5e61394b0468ad
MD5 2ef3a97a2fee98759734955a756c41f0
BLAKE2b-256 1dfe657e4d66d9de8c379e2ad18fc19c8635cb669fac4c4b92aa1552df224aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 afd7163b2e1c532262818665eb368948890625d804aad78ac31d3105dd705646
MD5 b230f7149c9d990a44107bc80ddab446
BLAKE2b-256 6dd06ee1f6526b77598b306dc7e29db630b7dab84e9bf47a11864242890e82a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27b5367c2bad38180ba7d8ffb3919802894f9b24e724456e2780e6ed7edfc5ad
MD5 d924ee84b79c3fc1a7abf6880904ca41
BLAKE2b-256 11d78f4abf012434261c2f9c0867c1ccd6f953a491c99f7e0ecdb985d2e76075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7448aa44d24b2a1ff9254108ee795b4a931ac68e78efd91a2ae82284f32f4bf0
MD5 d5a937ee21ae19e33f6f480fb8fc9246
BLAKE2b-256 fcfce8a485707eb75165ae92f67ed22434eb34ed305af7169a630c9ef0a13fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 770fd818e83f3d309201757d5450357bc48d8a20ec75b92dd19e08de5182b1ee
MD5 d23a156caeaea8118ba0f1705584352d
BLAKE2b-256 609bf1b01b971f53436ca08ebf486a768d39780a42a653e72cd09825bac62add

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2f5bba7b2a8539512bfc96df03953973a0e1add222584d83c02819b276e38350
MD5 36f31a4e26b918d57eedb00bcdac4f26
BLAKE2b-256 92f504794f05b0c628df0ad997039b751349454943962bcce7715ff7aa1892d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 be0f824ce6f9a455dc305ac37063bcd269dd261c58c2e4062acb71f0dc648780
MD5 dacf5c36e6a1bb60dffaed21f610eb8d
BLAKE2b-256 e5053e81d994fd9791388a86c714fc8686feb0c9effc3829017bb5bb04e70d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ae5b6bf5083fb05ec22f284bc580c7f8ab44fe3f9b307138b29b7831757c639
MD5 eedcda1b9167840eab1ebd0bb905ffa1
BLAKE2b-256 2b7ebe786a47e5f7bc672345b04f9e344afbed38f6f54f3b5dcf4eeadad85179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a69d7d3b2d99864d49f13bfaf1f8e95eb61f024db6ac043773b0688d7099a2ec
MD5 47fcb6f903593527348b72b569ffdeff
BLAKE2b-256 f75ef24ca40624fa9cdff209f03d1935714283d941d5a5c0468bfbe385db08ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c14e3f338d946da37f0dffb93d875b9bf9b804e6dd4ecfd57b5f858bf5994f6
MD5 dedb0a6af9429cd241adb60613c4c464
BLAKE2b-256 1669f141d635b6edfa50d84363e1cccbcb4b74e4c0d00de34451dde476b91fd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8bb3b1d2dd2a369e96e66a05148ccb03cd9c02930f379a7ed0e920ef17e571fc
MD5 68433342087398c703b5655cc4424a06
BLAKE2b-256 a19488c9df0dda2d9d627fccff628d27a7634a32283524c1bc49c185545a9bc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 20a7aaada31d9507b98edbdb90f9daa16929580c4db1e287d5ff3b3eca9f1a50
MD5 b9cd0fbdd382f5e3f800b772e738d939
BLAKE2b-256 b3aa85c1c0ba3c4ceac236a28052d5de80eafd98518151768224aa3203b2727f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 c5ae910daed1f475610a473c615238960a5e3534d93ee0c2f7590415d2814c1e
MD5 172d807cc9388bb616ab1bf6c293b96d
BLAKE2b-256 7ec4e83df780d55a7b41a94c5fe5340dca34f0051516602cf26fd5a6968ca8c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp311-none-win32.whl
Algorithm Hash digest
SHA256 3d0bbfb655b6c2bfd741639220338b38394bc925c14662e94dcc135ba8a4ec20
MD5 27c3d831994610de12eab4dcb84fe33a
BLAKE2b-256 6246052382d684aa0e0a53e563b91b6b98da3abc3cc48764848873578f3f10a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 329e3d328281e950b8c2d3ed9edeb41cf12e488dba92ba2f7ff3dbb05c776cad
MD5 f1a48100584f8230b08e7934a4812174
BLAKE2b-256 a57924a90daabd446a6bbb66fe765809d0ec5642caa4a6a5b8919c8486371d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 27554b16003201f25bc2d4f18631a122174fa4343af2965938e4c45f69297b9d
MD5 f12ca0bbd1b96598ea02a40f04f72775
BLAKE2b-256 17847212543ae3fb4ebd9ee4093e293f1ba56ed3b0742aa99d3796a698091a2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 352bb091e677c4124cf7906c0d347d5a987143ccda06e209e83cb806b1d758ce
MD5 a90e6ed5a5fba3a0612aee5f58794fd8
BLAKE2b-256 75d0699ec875aeff90dfa6058a3ab9214d7d42bc2ae9ddc09a9bf6061a9abbab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 84d7bcede2040758cd8d97aa4367c3e5505a0a7cada055948541ab94546390ee
MD5 55326a952d0541b5a2fdf1d19617e9a8
BLAKE2b-256 8d43de0cf91b13e9927a5eecff2fff68b3ae253d9d22af82cece85d12c89d621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 4abb9eec80988868ac17832b52f5612bad1e0f12edfffe714bc3b80db1ae095c
MD5 e93a4318aca372f0b01e30f6ee0c4ad5
BLAKE2b-256 7284d4249d1b42a10b2e3a3490f48ad01190b9f213b3bc64724ee814ca8debfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffca6c7160478562cb23411368c4264e3808abcd46887892f4ac203366548c52
MD5 145919da9bb9f58c0abe4301af4806bd
BLAKE2b-256 06adabbc113234c92dd210b177a466c86c726f3f35cdf6924a32aef2c067a36e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eaf0a43c8c31d7318050f4cb7307e24d76c532f096215e8a75c33ca289b3ebdb
MD5 bc14070ba7dfc6f91d6d021e6f5b62f1
BLAKE2b-256 e48afec2efc7cdfa4fef771fc2e4e1668bbb5bc1b6f20fee8c833ad2969d3258

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb421b1529e65f619a809a8b177e1b722d5936e761bb337e82a6c7ce03cf1ae2
MD5 a4a00672312fdde0c67252eb567f067f
BLAKE2b-256 de5e95ed46d61cb97a1f2d350ed279ef6696454c3c9f9be44e327e67b6a04324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43f3a2c29f93b5c5af951059babc95e47454cccddfd84f08f694fbdfb65020b4
MD5 6142069e19d8fd90b5b52391851ba9ac
BLAKE2b-256 36090a1119898768b6db12cb03ae465c7511c202cf4b0fc5aed29bcee6dd016f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bd775cc68333ccc630070da7b863cec6285be4da61eb10c380f26741d1ff6aa7
MD5 0441b6af27126af6663ecde3b92516e6
BLAKE2b-256 5aa980b8dd23e8f32d16542e470aa68495af56916fe13759838c0d89f082f673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 30784f5ab1cbcf476d77b90f1b4306b1832d6e7050588a3b856b00f2d38d006f
MD5 f352a000977b45494373c6d5afb42c89
BLAKE2b-256 dec99c8cd45673c30532b88ede01da41ba0e063b19a9b49c408c72631bb7b11c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ecfa9293a4f180cfe30b0fcfd8c99162d3daa60bd13eae75f51f00c7780b6cfb
MD5 0471f231ab5eb8f65c67d9c9536861a1
BLAKE2b-256 1c896f98107fcec8fac4f3bff71bebec643ed1ed9f22ce0223f30d8581c480aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 522277afc678ffe10805d20000216955f5777ea10562e4f55ff948418c693e20
MD5 94f353a2ae08f4716a0666875a68e5a6
BLAKE2b-256 4ef726a806d0ab9a5ef93bd426275ae39f9fcc82c051d0757879e0a90001a67e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a709dc436fc8dcb67076420da6514ac068299d7b2f8eec1d519edba27eaf52f9
MD5 dd69accb4a17201da2b89c634f425d33
BLAKE2b-256 af35fa8540b6bf2a0ed6cb32d1d6688ece7cb4ba9f30f4fc9c357a110e3cdd26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 afe913eae0ae7d3c4f2b9a868e62233b5262dc9470b7fa473c563a8f3f34ae1c
MD5 ada203948f13e8d1754f687b23119a9f
BLAKE2b-256 b1bd04a4b6529909108ff7da6f5b291176bb083e9ae2f2c4b1fa19ef9baddcd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 150381010ffa14e14bdef70055904facf111895ef6c425f994df3abc4d802150
MD5 5ba784729f3648b609b8afb84fb5dac7
BLAKE2b-256 b08ee328880bd9ede256e7d5213db52255e01cfd93a8c482c3647cc1d483a8ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 5ebbfe5230d13120009bbb2bcb70e855b2091bdcbc0df1d76379260862f27ba9
MD5 f07c3185d2342f3446fcfc9e2ea2dc1f
BLAKE2b-256 4462119099c298a70004afcc67f1e5430ad17ed06ea50c19713e2f6bc92a02f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28a8c765dfa351024780f27519b46f13082ed0bbc19b3444ef7dfb9377f5cc31
MD5 031fefb4874586684284d3a8a7e34cb2
BLAKE2b-256 02eae582dae0285062ac1fd2cb98b126914fa399924d5a3238ea100689250f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4313f4ff09dbb240065059eeee81b968f4a0e393c70b57399290b14af18dbed0
MD5 3d782718cc5722778913b1065abadc8c
BLAKE2b-256 a13636f3c88f0faf6f9af13cf6659cf76f7f321a1a6cdf60c1ca50f242661707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a54d4c85df6288d970d77700309b6ddbfa815db5ae974ef9ce71edc02575cc6f
MD5 6eb7fc5516f2a345171e05eff762a265
BLAKE2b-256 fd254c2fc07aff8749865734c5199afaf8a9a2ebcba83d52d1190e1b624f49b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a94aae8f00fca15aa395f59d542fc4f5cab29db94d42f2ce92f31230fabee6e
MD5 6c0deefa34b32d16cad17b08e715eb59
BLAKE2b-256 313cac2ae5cfedb72032bb01fd4152b41e9963a7170804ddf3d42a248e68ec06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1b7468abf296cd0ffa5b8f4cfe0abc67a19504687ac6d7dbd1c629e9a6b8b73f
MD5 4e72eee2a60567e336b1f14b639ff556
BLAKE2b-256 346dfe7c9a65b307cd3131789e1a88403bba61ef39be19b9f3f5870332bd4fae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 f7ef6dba16e86126ee983049189743fd86443df0d79db5e8fd65338713b66ed9
MD5 41a0d74daa7ed27b482d072b78f14187
BLAKE2b-256 a11d02ff49b7891df149c8d01e297ce45b2933deee3ca6ab8ffa81f3c46665c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ddf0724fbec1915de5905d755946cf27cb98fd4dbd00f1c203411c9e85ff3744
MD5 f4a585e103b3d98226114dcca8b4df87
BLAKE2b-256 f3cac6c3a79e68832ac8dfcdbac8d3d7edef293e80572f435fca31d15f6c9534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1299677ba44e65689d8625c2d949e1e63c6ee359349c3007d170f57a49042311
MD5 b4251e3f522be94821f6d8f476dbee2c
BLAKE2b-256 83c5b58feacdb2236139853640f748a208c2fe2bbcd4e8686f5bd196ad71a49c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 20d636255f3c2fa3ae0c5ae410622c4d1476e9d39b358cbd3ddbf0b0b40c1571
MD5 f35343498c013fd4c963ac5b81c75977
BLAKE2b-256 0cf8268aaf27a3a79bc4ce2ca2f4b20c79e8f9a9cd4956a879e24826eaf2f466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 7af4c3f4ba0949700db01f3a92054f3bb95f38d1a381e79c4873f191adfefbc5
MD5 1e32f6d985c7159cbe1a78bc6221666e
BLAKE2b-256 94f14a68c23e754aae18585a14224b8677b9f869e9b103e0a7e1bbfad17ccf3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 bcdc38548ba975738302c4f803046c29ef46d85d39095f24c3ea5e5f68a8ffd2
MD5 839bfef0a72ae8c8f74c931645d930b6
BLAKE2b-256 31df32a354df66560ac7ed01ad45a1dc29ba8934a7ce92409052ae517bb338db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8132ebc256edfa1acb8011f2a8d4c9eaf3735a67033a56d86b08b3c12fb34153
MD5 a1835210fb525f8d8bf41a250b41b98d
BLAKE2b-256 7f149084e8b1c6aef979996ce1a58a26d779db27bd57997a90bb92e302468d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba8fd5df600406e6797dea26b0f87d3dbbf42719fe681dc6f9e0ada7f1b3de73
MD5 8fb43725cc1e0d8f0131af1e5f6cf7f3
BLAKE2b-256 772451646df95bb3fb3effa3cf719c9fc1df10e85e28b2a22f016de0fc6c4c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3b31675eb2ee7bd9ab47502901f0637c52e16d161cf5418c5388be55519058d
MD5 69ebb7991363a00d10bf82d0e3dda3fe
BLAKE2b-256 0670f895e68c7feabe30fa0c97a75be4dcea793fd7904429b1f54a88ce7ace00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dfd2861e8b51017b6a52d3db9866e1d243c52b8d7843b0209a1f548f84cc563b
MD5 70b38f56d9b79804a79db59103365fea
BLAKE2b-256 5cec0dbf64e8bd762eb3d45c601d3fe6c5c7aa305cdc627bb8942bd40703fc98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd6afa5625b560ba9224bc8dbe637ec8d9fbc1acd1a34220e27f8c2af97ae754
MD5 6395cb50eedbff00396c4941b1bf9b81
BLAKE2b-256 d5df89aae05f6605fdd4fdd8addb37046c4702d9f87e5f55ab076af8ca222686

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bf53cac72ba8f728310e9a0cb26ac707f50acd67593a0966cb3d964235d6efcf
MD5 f51ef5f2d99dea555610a0dd84cd1545
BLAKE2b-256 ee231524583ee3ecc38e7db2e74d6e9c5650ee28f639308c279a0bfa5d2b48eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 aabe0dfab61427401f86d14b6413fac64670429d53dc8ddc9366251a5e06125a
MD5 282c863bf5cf7311e868c0435f9bf1d0
BLAKE2b-256 a8c2cab5202c8459136d19ba01701f6eb2344985412e65797b7e03401c009409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp38-none-win32.whl
Algorithm Hash digest
SHA256 861a1b0a1ee21a1648bf0ba9d5c630854274356c3e145dae4d616d00218b9782
MD5 92f107c184792116835bc46587856577
BLAKE2b-256 726256463a85b72c19c119c0a1f25b8a55437efcce378476164d82f88ee59502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7ebe814d78329cd593fe995f9c6d6f6b2581e4aaf48102f7601008fc02062667
MD5 4204475a8516edb45b7c98bab283f5d3
BLAKE2b-256 596d75923dce7fb515163d8039aa299af0843bfc4275dea7e3bb71d76106d779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0697f61bb34caaba29612e3f7d1e974ae5dea97ac32c814f602f1bf028a6b2b9
MD5 43ae92e0534c134cac5c52c2f112ee2d
BLAKE2b-256 5bc316a94a183c5888e5092c77f7d16c0c3981e3081a6e373ebdfbc7f319b66c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 77b74b3e6df5c0c0fe2e2fdb6f89960ba1fda0aa5189a5c5f41f821a016e7604
MD5 5d9e538992f3676c72fd417706aa69f5
BLAKE2b-256 1ccea76de01e7b701330effee368dd5f84e4a6cef961ac8f7fa4a6f9e7d0f7ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 a8b5128b7ea69a529497977901411346cfd6668b95c3904caf2f7e9f44ce5678
MD5 0265ca872f497be875786ff5f56ebc51
BLAKE2b-256 6c7644607eae982a6c6d13da2ba3caf9fd463923ecefeee8b3493abf72c47b11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 2d44bb69b77a8281cce72ba6ffff39f63ecd6c8e48922e1b2768282353ae30f4
MD5 ef5215b2310a7338e7a1ef7be1afd9ff
BLAKE2b-256 8ce094631330bcc89d94f44f7c892ce8c400bacad1aa9370182c1a2bfd6cda58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f70743222642e6ac649fb4272f6477c89bc5276a6cdbcf0b37e8822d3fe71e96
MD5 da250e548098a2b2b6d467a7d73b7fe7
BLAKE2b-256 66b2d1061eea6914a8d56b0c899ffcca0096562c7be42b8ade1c76cfe57f379e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1da61bca83c87e6c79a93a2342b1cd00152efa6a4450417f6c6b11c04ee2211
MD5 0c90b1ab92d1ee9f82b641dd46c06037
BLAKE2b-256 7e8c93f8496b08bbc6c5d6ab3c3be86b7f35ee2da8e4cd268a0952d0bc8646e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ad88f297b2e3fd3877eae24f18b6b1e3d6b98e9189621291485f5abc170bbfdf
MD5 456c73bd18f2efc336c884e16b392ba5
BLAKE2b-256 bbe220aa9cc914a6317be46d1affbddd0d910e599a90f30225286d768e9b2c01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 267b0c2a6150e96645b1574fc9f84fd73c4d680e775d6087f08a3dea7078b369
MD5 23fb234324ff5464dcdd6d609a92c77f
BLAKE2b-256 d429243529effedfa0c97a6961aade2bf52da2cb95705ca53aed5fb359200ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.0.8-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7856e05e5f07072a68506827ac27d237c449f8cffddaf8826650029d64aed7e1
MD5 876589d35619e90335d64eb1bd6bd63a
BLAKE2b-256 6d1a1f0456563c698aafef4b1948dccbb25c0972be5fb7aba4abce9af166d2c0

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