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

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.1.2-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.2-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.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (777.2 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.1.2-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.2-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.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (777.8 kB view details)

Uploaded PyPy macOS 10.7+ x86-64

python_calamine-0.1.2-cp311-none-win_amd64.whl (607.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_calamine-0.1.2-cp311-none-win32.whl (583.0 kB view details)

Uploaded CPython 3.11 Windows x86

python_calamine-0.1.2-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.2-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.2-cp311-cp311-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ s390x

python_calamine-0.1.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (740.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_calamine-0.1.2-cp311-cp311-macosx_10_7_x86_64.whl (777.4 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

python_calamine-0.1.2-cp310-none-win_amd64.whl (607.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_calamine-0.1.2-cp310-none-win32.whl (583.0 kB view details)

Uploaded CPython 3.10 Windows x86

python_calamine-0.1.2-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.2-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.2-cp310-cp310-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ s390x

python_calamine-0.1.2-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.2-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.2-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.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (740.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_calamine-0.1.2-cp310-cp310-macosx_10_7_x86_64.whl (777.4 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

python_calamine-0.1.2-cp39-none-win_amd64.whl (607.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

python_calamine-0.1.2-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.2-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.2-cp39-cp39-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ s390x

python_calamine-0.1.2-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.2-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.2-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.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (740.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

python_calamine-0.1.2-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.2-cp38-none-win_amd64.whl (608.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

python_calamine-0.1.2-cp38-none-win32.whl (582.8 kB view details)

Uploaded CPython 3.8 Windows x86

python_calamine-0.1.2-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.2-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.2-cp38-cp38-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ s390x

python_calamine-0.1.2-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.2-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.2-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.2-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.2-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.2-cp38-cp38-macosx_11_0_arm64.whl (741.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

python_calamine-0.1.2-cp38-cp38-macosx_10_7_x86_64.whl (778.0 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: python_calamine-0.1.2.tar.gz
  • Upload date:
  • Size: 48.4 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.2.tar.gz
Algorithm Hash digest
SHA256 b8d6fafabf18e2985d322161f58fd199d6c635e9543cce6d1e19d9adf92b9174
MD5 2c073d451f439e43ce399454752a4359
BLAKE2b-256 42206ca8284b02f66bd86422215ab3eccc7940408c2d3539e3a56e8bf5254ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5502bbc52ff9261284a37f72359a39cdaec4f1eefefcee2612e8a088be55c2e5
MD5 6bfd8384a3d2990debcd49b8f3bf8ea7
BLAKE2b-256 de7c855141bce4a9f540e63f55645fa747bcd483ed3adc5eea69988354a80407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9b32788c1b679bdeabe198bb453b4d71ad702adfe7ec2618b789f424cd6873ad
MD5 e05804ef770e3d59ec572781f268cedc
BLAKE2b-256 1f703252b3554b9767131bd96d8a371ca3e6830f5d16bdc413c6dada6a067f07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e6deb397315fb7bc46aed08f16ee27ebf84f0d1b7681b2c29307430395dafd5
MD5 b0e31a814a8bbd5aac7ae6116fe9d825
BLAKE2b-256 7d7154a53e19dfa161bdcff74782585d0ecfd451a4063560c8c8f32071098429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0816262036cb125c76f71075d58e11534097e6ec200a66a0ab63c8731abbb937
MD5 4a43f605722f54416b4b53a6de187752
BLAKE2b-256 4d20658391d63c629ad70bfb0a3f6c54f56d695b5862e65117b44c10e8d76463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c0fc3909f3f3a201c427916f892def1f69389733521ab09ffce1d5cd44affa8f
MD5 d5f512146d585a6e66f772a52ec5b629
BLAKE2b-256 8bd4993c3d312724413a585c525920bb80a9766909d3bca528c22ad202edeb1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 149c19cc62c28f424dc51dfdf99542133afedbb00e07ec721a15fdb4bc88d159
MD5 03ca6d457aaf71e4088754a6a3431236
BLAKE2b-256 25b74f31ac5755f8021561b348813b24c4207550561f2256ffbf102587c81ad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3c7c5085e991e0743fe95b32a2826e973ea87ad76b503d52534d8baf24550219
MD5 7b3992e84ebe451bae33c3b3c84eb5b5
BLAKE2b-256 2a99b91560184690ab0bd9b046f618071f5be00f1ac8a395908765cf0ab81bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2eba78d5c1af6bc66907886a9ca3ce1fcde08868ed105f69867ea2a3763f59ac
MD5 a20701d9015584f616b3755ea3160fae
BLAKE2b-256 535e917213154282e521940ff7f55aff0e5d6d4151b2c838f45447581bb65deb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52a267fd12cfbbde8f0a3b7307884c6665a2f7ec74ae8eea04010a6c41a9352a
MD5 302f483e35717906b9073dbfe3ba773f
BLAKE2b-256 19614d43ffb6a9a6c895cd2b08ff79f44f0caa8429daca258189ad33d02ee25c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28c53cb381856c06a759c8d20162f7719e3901128e9eb17ef469656c9892c275
MD5 a65c75c178baabbc0cb8d5a4802e33fe
BLAKE2b-256 7b044f5b8b84ee45432e9f5b7303013d908f050b2cb40c3ab66dee1775672199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 397ca30ef540d41ade6d733408ffbddb076269c7b49240f8f2f8540ffb4f545c
MD5 bba51c7641943fce7ab6c9cea0872006
BLAKE2b-256 24215c9f53f4dcce3a7f79d5fff8e835784c73d8bf394127998b56b7561e3fa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 faddfd61c5e1041a816c319b0108cff958f1319a9e96d36685362e190b59f3ec
MD5 60f0222b34dd38d7b59a7ffa084ad960
BLAKE2b-256 683abd60b74446287a1a9925a6c619f2066a85c522a0f6f15a30a167880963d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a167dff1ab338685f303ce0ea9ad218a1bda4ea331276389304c0c29a334b4ac
MD5 9ee51726247e358c7169a07c3d2bf982
BLAKE2b-256 a2f6884b17bdcd8c285714577fe138a2f6cecd22bfd715761792f98e52690099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 03783d13dbd67c93ccdafd96da0f5d1e7e49965b5872f15349fd95e4de24a3e2
MD5 01b76f02fe5968c008918ec5a619d5d7
BLAKE2b-256 726d1f7c333531ea2ca800fae97f5d4e36fec5337ef835523f3d4ea9ea55be8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 22fc5c19abe802cb0cd6650dff81b338d5aa4457ab08d7bb5b819f0cdef739f7
MD5 03e9c439953fa24fd7812e48c7496fc9
BLAKE2b-256 29158099904ae651955615fbecf946ebec874e2954f9b640b384cf0016fc3920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 36190d92ea3c218fe8c4e3a9bec2a200d3effc5c8c6bbb6176060b06134ad0a8
MD5 51861bbddde70c7bfa76f07a329a065d
BLAKE2b-256 f0d304a3f4cc313c0b106b2966d7f6ee1b0889a131e3921e15c2ab924560fe2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 661e28736a1dcaa98a3cc246252b3de81552c6c92440c37603df40908421e71c
MD5 cf2f95bda692d1bd625e68d1868a645a
BLAKE2b-256 9a4d725651a856987332c0cb8216c00b024b7ab2a44db517bb6f9d795843a552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 fc4efd645768cf4c4b3afcc188ccedf869fcc995a2077910407dbbb316fed96e
MD5 6f938f3cb0a2244f2fff419ec82e657c
BLAKE2b-256 c73ab86db561b52d718209d4def64b51b85e4a74394a63a1802ddf529067e876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 31d3c9fb7ff366c461574e437181a1651b73519bdf428234ea1daec11556c792
MD5 52b1187fd72a07a01c6ff45f05c0af75
BLAKE2b-256 a0ca58a5776f49cce3264320ee67411d28bced770e816622476061f894ede629

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7249c471dcbb7bd6f1586502332f03f00633c728320d48b48532ca5cc6caf85
MD5 fc98c6d7fbdbac88d3ce850771588659
BLAKE2b-256 d2f0c7b0e137820b354f823b492266c0bb9e20fa0b8456fe51ca84201712ead1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c75f72f2f2292a8821a0cbe5d68f4635e8b8dec5628ae16e48fbbbc0088d4bd9
MD5 fdb7e7d79842926c63c074aec49091b5
BLAKE2b-256 cfd5acd584c5f31f97b4097b14a50f0fc341958c5d4a18b0b527711dd5e4ada7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 22fba6650656c245828b4223f2dcb1950160316f467666fffd7ed92f060199e6
MD5 0f3bdd625a08e8575924583d2794f23e
BLAKE2b-256 984daa00867ecf2fe0a5e3e1404d2b61c1c3b4dabb6ed55bf64b3ffe54b81501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2033aeb2010f82d03279fde88bef10b24398c81c7d5df4c9f5012722db43c86
MD5 d88943e2d4f525c225fe619849f08cdb
BLAKE2b-256 96d564c380cd76952910cd8b0f75d1a9a0636282f76bd98a22c8926a16127dd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a1fe0a421293bd7f903ad0cc8c6c3deb8d25523a83e5b2a19d14bd2391e00c81
MD5 bcd9ed192d05bdc68d507239552b126a
BLAKE2b-256 e081b47a2696b42e9e21128da69b08049945c3b358bf9696a7eecc84e8563b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f5947178f8b76cf52c2a329c60a47a95613732d7e4746543fbb8bcda05e343b5
MD5 985347e706060d92f3397cb6cf4c5b81
BLAKE2b-256 2da851e3896b37d955752598398ac35a41161e913b2b392dc7ecfbf4f55eff05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 666f0d3281abcfd1e1bd37109d37dd77f018368bf81da3a03b45c6774e024e87
MD5 d3aadd733e4da296b8b3bc45d905a870
BLAKE2b-256 3829af14bb348b114373d8d0c5ec4e7f31272e8228e52b0006dd3e79475f5640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3c7ad420302b7e555cdbe1567265694e1bc4b39c8472fba35fde5586c25b060f
MD5 9f4b58ac235f0d8809e2a55e8ddcc1f4
BLAKE2b-256 af0d0b115bfa6508b7b9a3da9a8a28659cd2b651061f265ea64f8fcfecb384ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f860b8332be32c3b4f4f5c58a81be747ed7d5e1aeb8b79015ae7b87d6baa5609
MD5 b3592777c0db04e91d515c8bb745d1b6
BLAKE2b-256 b1deebbb6ca9b40117c0cecab7cfa15ac02dc6558f45af26e8128a4f7bc889c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f71535f45feb3f305085d8be4e6f8ac8616393d7b69fbb26e051165e20fbb365
MD5 6c9731836c238ae8c62e300069befab6
BLAKE2b-256 3ae916de4014989cfd7233de18f9498be21cbafdc1e1f21413ace96cf3a2b916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 e936149eb067e3c1367d2f70d250e392f1c6a1e1e35dfd9185d6225741050dd3
MD5 66f8e0358528021b428ea209feb685b5
BLAKE2b-256 45c1965b96988cc2929589c52011943ede8acff4037c08496ae9dbed9df8655e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c0cb3ed460665d441a2609ae4b910cb9464082ae7e083ece849d3d9271d40ece
MD5 12a9d9585b80234d1696c5f27b3b8fcc
BLAKE2b-256 f005927a4299a5ed90496ff356a0f6ff5395dd4c2bb8da7d30aa856d0b28ffe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4820a15706cd937613998d231a69af64148481560a10726b7fc256a74ff693be
MD5 3059c48a1db1f6854c6670905d457976
BLAKE2b-256 e12aaff446ce13242a0dfbdfcdf4e66919845dced200a9093415cb867b4f5d19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e4ffe19a90446080e94e9b38540105546162195a6ac2ab72dcce6c5c725bd38
MD5 e398c237b1675b125b915e8f3f6cba42
BLAKE2b-256 8e78074f82cbccf080d7313e56bad097967a3996eea65f52923d908423579e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fbe4bd7d21cb98cfd8f132c4dc7e20344c45625fe2945c76f1d12d28676f4934
MD5 b14d0d5047023a4881c67cfb6c706146
BLAKE2b-256 dc3d017c4c5e1a8a790333df5cdf3108bda67aebb0859f462e2a3fc620837e0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fef8ad6d46f99e21bbbe628401bf65fcf28d72eaeddd7f51f21e18a4be2fc10
MD5 fec7e85daacdaed63e9f4b060fba6421
BLAKE2b-256 7c37d0147479ae4b2bc8d04413d00b957b23180ae3d30987fec373352397acfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f1f31dd0ea6a80ddc0090344e9c4582ea72d813f785d6417b8ad0f2893500167
MD5 9079175387919444680347cad2f43090
BLAKE2b-256 74ef8b62e5db6e90c4dabb38cc1a92ea15f354cac4848ef0c252ee725b9d93f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 71c9606200dd7ac39d1b72ee04f50040364b2f23d5f8b87ea80e3ba498140ee9
MD5 accae89e583248e90efbd39a5e83375b
BLAKE2b-256 ef6e43b49e1cfa3951260e05b4c9bedbdff5ff903d498c7bc5df576e0528cf32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e9c62b879f9a4a4e0327741fb48405e2463f0bc26dbf326ffb2b7e54f70ec9b6
MD5 e789041409ce1fdd4742014c36e0c3fb
BLAKE2b-256 2be2ad967b2c63765cb2b02570433c4b9177e077eb0c4956dfa1a76d1410367c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 663188124967dba60d59c9ba4dee0e2e727530827a17426cc4b8597f7c40b210
MD5 8d8afff30a5a2c8aa8fd7afc56b9fc22
BLAKE2b-256 3ea6cf9955605c77ed4ef7f258e721ff78394c9a9a943a4aeb43dfc4292ae2aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a8c8820ca85b7a421d33e67127899b91d31248fd1d48136f7e2f0735fce7c36b
MD5 f3db7442370ae95169439335a15bf099
BLAKE2b-256 716f19072a6939cf84de15ab20b0e00045c55ea359ef1f2f973f435b9818dab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 334ddca9c056dbdc1429d56e9f5c65aa723640e0048326115f16bb3227f5a56d
MD5 a9fc3d384570ab3e56529e451006615c
BLAKE2b-256 07c179bc9ce5b3b4a6103c775be975a1ee21169ef086d04b49a457538e84623b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 40949df38b25fef18c0efaa9239a90f84ce63d1c9e3c28baec2aa76a4c01e904
MD5 af433b000373576a9a141d15df71f8b4
BLAKE2b-256 f55d47852d40b13448ea5beb28e514f1b8b9873c8e50b6d21ed215c4ecd7dbbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 d7ddd1c91e936520a9248f04fbd9536324331bca789c34bbd690ed9bab13776f
MD5 0c41ae30122ad4ab9b557b29d7150ae0
BLAKE2b-256 ee160dec56f43fb5f5e12689cbc91eba125c2611a30033a332dda67cad546649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6233e8a7ff661c716bbb1852b6edd678d0885e1eb9ca34f23157874ef548e226
MD5 49841da1e673aa244a2f71d55870d126
BLAKE2b-256 57e095d161cab03acacc483d92da74a50bdb2dc277da5d597bdd2614197cf59d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd3a35dc82145d838c1cd742fc515be076153b6ce83cdb39644eef6dd5205e9e
MD5 8523c93060fb945588462f914971e990
BLAKE2b-256 bfe8c7d2157765c148845d1e15b65cf2fcdf70f1266c45bff10d2bdd17e05b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b26e057f300eb610f49f3ed57d1150134c3fd6f74026c7ce2c839ef992e5f0be
MD5 b5597c5191d0fadebea794167c745193
BLAKE2b-256 df10a86ea44e65c66c9f41619cbc528217a9c152abc9caebd9ffc509dbcda77c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a3424d989d725d8b6f74268e9b1964a1b0b09f0eb34274576e4177697b4fc38
MD5 2bf8dcffee82a6f0a282683d1837bb4c
BLAKE2b-256 9c2ec8d38954d86526baff2fc316173b0a6cc0a5dfbbf3b97d65528cb2ef6da2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5cea1173697393d50c9a0f8b4b0c4db8ce8921c3b88b5ae4ac9f5bc76e56f650
MD5 5726cb6cfd03798da26b8a4bd7dfc377
BLAKE2b-256 01bffd5bffdc280ca76181bc1b881377ff8bca8bb6e5b0796e62cba67bcd38fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a6827424166d16e3abae595853d73d8f5d03766c0c66521cd042457588b649cb
MD5 4a5fd02427a970ac40e6c049d8eafec9
BLAKE2b-256 65f6b8e403f748ab38c658f53a580558b4a33e874fed0014a3989bfc282d455f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 99a0ee61d3edc1b8efc499e32f686f108db78d6278fc21f3d687aa110869fd25
MD5 4e4469dbdfa0510ed5d09a10a6608e1c
BLAKE2b-256 8d9e6f56373a3449e939e28f1501beb87b5cadafa9c140cc9396cae23ef229c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d6f1288f2dc0f2f17fb3adf87a47f397c5e5d87943ae615b203cb4dcc636589a
MD5 27cdbbcdaf12da407eeb96c007039f7f
BLAKE2b-256 6369d8a604eebdabee9e21ab5266d3b90de08d469dfbc2a0ac0e5c7bcdfcf08d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c0ff10e64ca79165b5efe3fc796ee213d5ed80c4b183b902884e05e9cd606fa8
MD5 07d4eb236194d686319088de00a2b7f8
BLAKE2b-256 b21a50dffb7bcb4dd2b4ed97edd7227abe9b5ebc4281fe990830bc10c9c5b6d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 6516642115596aee3301c18109ac6aa10283a186096a1d8643f9c218b1fa3aa5
MD5 b01ed2b2314317c3155147ffb88facc1
BLAKE2b-256 21bdb86204f23c521f91c17fbf2491dcaab5b682b6706b2d1aa257681685f76e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 b2319e44bdf6c1bcd63076837f7fc9f0c94ea7acf6b26d4a3ed6e6410292d3de
MD5 dbd66a1d7df80809fc95b107e839f21f
BLAKE2b-256 026bf670d8848093961d98027bc79d9be40cfe7e229cd96b2870819b0ff470f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 988553cad69c78f3ef0d503b2a842eb94e6b20d845e77e420f046b0636ae3bb9
MD5 728b5881346c383ff82fb70b03a9cb47
BLAKE2b-256 7a81e264db0c1087b72c64c0f4109acec0024db2bd18b0e4654c05c3727be623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6380cc25c048b3adaa85360c68d13873980abbe12ec7328db38aefacbe5cd7cb
MD5 3ea46cf6b06f2d94123bd8988aa13499
BLAKE2b-256 497cedcaf8607979424e602c1f9aa07c9864da76d7c91c2f4f62666404e5032f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91beaea108c6a720a70e9f07ccf261dc40022eaafabc11d973086a485db2ab5a
MD5 2d8123c0cf227177a94befcc864f7233
BLAKE2b-256 2780f14389760221740e564e82640a1449e4b4675006121fb1b38fe87967ed4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 503888e6108692b5034b6b0cc168bb74a4a2adc71e248fe7405012b9e7cc3389
MD5 f216ab949111fcc43d51069b2cc4f404
BLAKE2b-256 c33a4bd7ff4625a58964023874636b48aba451cb89288ed287d856379edb65fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03b96fd2ef064dc5f126ca6046e8be39440d55a083e4c80906efdc8586fb401f
MD5 4be6e7da6d1625cd111eb5bff2027f72
BLAKE2b-256 615581f71c5576256542adc2cbbe9e0f78b5e7b0fc2956326d99569de37eefbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.1.2-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 dfe3c2794c0c460078cb42a6e6e284a54abf6993a67cfdedb88d570c558573e6
MD5 3e5ec87da50940be7d15624eabe438bb
BLAKE2b-256 b68983d91a8f0302919f6cf9c4a6bdadce4215ddc40b550c2560f8b869113444

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