Skip to main content

Python binding for Rust's library for reading excel and odf file - calamine

Project description

python-calamine

PyPI - Version Conda Version Python Version from PEP 621 TOML

Python binding for beautiful Rust's library for reading excel and odf file - calamine.

Is used

Installation

Pypi:

pip install python-calamine

Conda:

conda install -c conda-forge 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() (only pandas 2.0 and 2.1 are supported). Pandas 2.2 and above have built-in support of python-calamine.

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

Uploaded Source

Built Distributions

python_calamine-0.3.1-pp310-pypy310_pp73-win_amd64.whl (670.7 kB view details)

Uploaded PyPy Windows x86-64

python_calamine-0.3.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.3.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (856.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (905.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (780.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_calamine-0.3.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (791.9 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_calamine-0.3.1-pp39-pypy39_pp73-win_amd64.whl (670.7 kB view details)

Uploaded PyPy Windows x86-64

python_calamine-0.3.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.3.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (857.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (905.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (780.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_calamine-0.3.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (792.1 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_calamine-0.3.1-pp38-pypy38_pp73-win_amd64.whl (671.0 kB view details)

Uploaded PyPy Windows x86-64

python_calamine-0.3.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

python_calamine-0.3.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (857.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (905.5 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

python_calamine-0.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (780.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

python_calamine-0.3.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (792.4 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

python_calamine-0.3.1-cp313-none-win_arm64.whl (645.7 kB view details)

Uploaded CPython 3.13 Windows ARM64

python_calamine-0.3.1-cp313-none-win_amd64.whl (672.2 kB view details)

Uploaded CPython 3.13 Windows x86-64

python_calamine-0.3.1-cp313-none-win32.whl (641.6 kB view details)

Uploaded CPython 3.13 Windows x86

python_calamine-0.3.1-cp313-cp313-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

python_calamine-0.3.1-cp313-cp313-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

python_calamine-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (858.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

python_calamine-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (948.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

python_calamine-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (918.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

python_calamine-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (853.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (848.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

python_calamine-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (903.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

python_calamine-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (779.2 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

python_calamine-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl (791.3 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

python_calamine-0.3.1-cp312-none-win_arm64.whl (646.3 kB view details)

Uploaded CPython 3.12 Windows ARM64

python_calamine-0.3.1-cp312-none-win_amd64.whl (672.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

python_calamine-0.3.1-cp312-none-win32.whl (641.8 kB view details)

Uploaded CPython 3.12 Windows x86

python_calamine-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

python_calamine-0.3.1-cp312-cp312-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

python_calamine-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (858.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

python_calamine-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (949.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

python_calamine-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (918.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

python_calamine-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (854.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (848.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

python_calamine-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (903.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

python_calamine-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (779.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

python_calamine-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (791.7 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

python_calamine-0.3.1-cp311-none-win_arm64.whl (645.9 kB view details)

Uploaded CPython 3.11 Windows ARM64

python_calamine-0.3.1-cp311-none-win_amd64.whl (671.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_calamine-0.3.1-cp311-none-win32.whl (643.5 kB view details)

Uploaded CPython 3.11 Windows x86

python_calamine-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

python_calamine-0.3.1-cp311-cp311-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

python_calamine-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (856.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

python_calamine-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (952.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

python_calamine-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (918.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

python_calamine-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (852.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (847.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

python_calamine-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (901.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

python_calamine-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (778.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_calamine-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (790.8 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

python_calamine-0.3.1-cp310-none-win_amd64.whl (671.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_calamine-0.3.1-cp310-none-win32.whl (641.8 kB view details)

Uploaded CPython 3.10 Windows x86

python_calamine-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

python_calamine-0.3.1-cp310-cp310-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

python_calamine-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (856.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

python_calamine-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (952.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

python_calamine-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (918.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

python_calamine-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (852.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (849.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

python_calamine-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (901.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

python_calamine-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (779.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_calamine-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl (790.7 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

python_calamine-0.3.1-cp39-none-win_amd64.whl (672.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

python_calamine-0.3.1-cp39-none-win32.whl (642.2 kB view details)

Uploaded CPython 3.9 Windows x86

python_calamine-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

python_calamine-0.3.1-cp39-cp39-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

python_calamine-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (857.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

python_calamine-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (953.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

python_calamine-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (918.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

python_calamine-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (853.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (849.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

python_calamine-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (902.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

python_calamine-0.3.1-cp39-cp39-macosx_11_0_arm64.whl (780.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

python_calamine-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl (790.8 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

python_calamine-0.3.1-cp38-none-win_amd64.whl (671.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

python_calamine-0.3.1-cp38-none-win32.whl (642.3 kB view details)

Uploaded CPython 3.8 Windows x86

python_calamine-0.3.1-cp38-cp38-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

python_calamine-0.3.1-cp38-cp38-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

python_calamine-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (858.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

python_calamine-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (954.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

python_calamine-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (918.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

python_calamine-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (854.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

python_calamine-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (849.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

python_calamine-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (902.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

python_calamine-0.3.1-cp38-cp38-macosx_11_0_arm64.whl (780.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

python_calamine-0.3.1-cp38-cp38-macosx_10_12_x86_64.whl (791.2 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: python_calamine-0.3.1.tar.gz
  • Upload date:
  • Size: 129.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for python_calamine-0.3.1.tar.gz
Algorithm Hash digest
SHA256 4171fadf4a2db1b1ed84536fb2f16ea14bde894d690ff321a85e27df26286b37
MD5 b59f4431e93f9cf5c4d978cc89b701af
BLAKE2b-256 2978805948f9ae23ce609522be89a402d5bb379c08a8fa8768f136c4e8c70439

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1.tar.gz:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 139afbf6a23c33c55ce0144e15e89e03e333a59b4864a2e1e0c764cd33390414
MD5 1b7728108464dcdc4a279b4e2f92a265
BLAKE2b-256 590bfdd4f1aa564e3a9a4d56872e1bb092d05cbe312060ebba0b1fe1dec9ebfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e71ee834988033d3f8254713423ce5232ffe964f1bb2fdc3383f407b8a52dab9
MD5 003cd0a91be3958296d7c59045c0f8ec
BLAKE2b-256 e09b643f1500d36d274f7605c2387d868cc9c6805f01d22cdf636316aa4b3075

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 49d2acf3def8ecbabb132b537501bb639ca9d52548fd7058d5da7fa9fdbd1b45
MD5 9ba1ff28fe05290796d03c0bf84aa0d5
BLAKE2b-256 8cb5a28a7923bc73d75cd8ab67b3e94347440e149b38c56460349d0f396415ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbac293a3c4c98e988e564f13820874c6ac02114cef5698a03b8146bd9566ef7
MD5 c852fc3ab908bf3557b1b0a92b4efbe6
BLAKE2b-256 ef843b8026b1af762957370a2318ae527920c016b99e6971f1c101d04425e33e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f12fa42ea6c7750f994a1a9674414dfd25adb3e61ad570382c05a84e4e8e949e
MD5 315f6356f484c4616129a2a502b0f345
BLAKE2b-256 f26b8ac849950ad84ca2043f0a51c60bdefc8d11500b193b901d98d9405ab013

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a571bab6528504cdb99187f4e6a5a64c7ccb065ee1416b9e10c1f416d331aae5
MD5 39003c6634bbc5ddebb16897eedeceb8
BLAKE2b-256 201449282dc57a77b194cccc5de641946d70340093aa4d3a579c2589dc356c84

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bc553349095b3104708cd1eb345445426400de105df7ede3d5054b0ecfa74e9
MD5 0d21253598c5a92724dd96ff890756b4
BLAKE2b-256 e811cd685de5f456e21ec8ca7402dc4c35a9084ba3e9f38a4fcd7fead0dac099

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4dbe8d5f27889dfcd03d9ad99a9f392b6c0af41dbc287ac4738804c31c99750a
MD5 51347cbd3d61de7de3cced89e12effb4
BLAKE2b-256 d6c0c5b8daf21a7cd2d08b4e58dd5050e85af676fe316dd239e086bce3ef45a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d5ddc96b67f805b3cb27e21d070cee6d269d9fd3a3cb6d6f2a30bc44f848d0f7
MD5 2762dd736e20eb04232c804e2539c0be
BLAKE2b-256 446d80122ec732bb103a2145db9b71905122397f87fdcac25ef8e9d3d4a07cb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp39-pypy39_pp73-win_amd64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1faf371a69da8e364d1391cca3a58e46b3aa181e7202ac6452d09f37d3b99f97
MD5 0f86ada279401363a2c0f988530b9bc9
BLAKE2b-256 203217e6761f3c591297b6056c471041977c97e9b44d136862b9dd765dc24c18

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 af1e60a711d41e24a24917fe41f98ab36adbcb6f5f85af8a0c895defb5de654f
MD5 f983bda597807ccec2ed20a310eeb9fe
BLAKE2b-256 a616b4cc2ff022471f4f8428ee95106e89a10b89ee51a842c93c7f61f29de260

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21775f97acbfe40182bb17c256e2f8ce0c787a30b86f09a6786bc4530b17c94b
MD5 a3d987620dc1aba97e5f3224902ed2b8
BLAKE2b-256 8e0f599c35b6441d3e3909e22c65e80bc3ee2c19372c2ce5a99effd98c853814

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07ef8398036a411896edc6de30eb71a0dcbad61657238525c1c875c089e2a275
MD5 4776e6033c2c53eac30d68d5156385df
BLAKE2b-256 bdae05e04a9102ec5a8b8b3d5a40390fb8e100e200e8b02d68926bc7d07e96b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d4cdd57ebb563e9bc97501b4eaa7ed3545628d8a0ac482e8903894d80332d506
MD5 2a5beb12253f40a8efe4588f422537d6
BLAKE2b-256 f4f32f8caba3f64ee7ba4e0f591837f543459f2df48a2e5bc6630617572986b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41a204b59696cae066f399d7a69637e89d1bd34562d411c96108e3675ab57521
MD5 c0a967bb7312a7191bfd6f0e457db232
BLAKE2b-256 8266c316319360a489e2a555eb8891ed1291b291a547a3eee9176c9366fd5c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dba960d7668ea7c699f5d68f0a8f7c3f9573fbec26a9db4219cb976c8b751384
MD5 790609a6eced46210ca2edf8a00a2188
BLAKE2b-256 1c3dff68651390161d6e7e7d4d1c7653febbb1b265dfda2c1ccaebc08ab90c7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a4497c11d412e6df3b85a1fde2110f797ff5b2d739ff79fc50ef62476620a27c
MD5 67c1badf070cba2c1c74d7cd049722ec
BLAKE2b-256 f2363e1c4cbe7c0938d900257174455caa9b3d02980c11e3cb60ab4eba7c8138

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp38-pypy38_pp73-win_amd64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 79d8f506b917e5c1ec75e3b595181416ebe1cc809addf952a23e170606984709
MD5 0697782171b1266931ada42d33ae24d3
BLAKE2b-256 4090e14abc2db42d544bca689eb87b574596f15733d4db8993da25be6264fd15

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 853aab3a19015c49e24892c145646b59719eeb3c71c0582e0af83379d84977a6
MD5 616e51502f05eee68fa4cadb17e28922
BLAKE2b-256 069c6c4e9e83d86d3e3794c8141865793279a79d868ab4af858e760844bda6a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cef919d074235843c5b27f493a645457c0edd9c4f19de3d3187d5cbfad3cf849
MD5 829aa56b8fe8aa48218c123b52f4466c
BLAKE2b-256 0865ca81a130592110a02128dfd9786bff8c12ffed81b34e2d6488ae112ea554

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df72ff860dbd9e659a2a3e77a76a89356eea4ebaaa44b6fc4b84cab76e8e5313
MD5 18282bcecbe3cf2b9059d5f42325ceea
BLAKE2b-256 d42d62dfcf59b2400d1db783729088b8abd2a079b7f79a75e3dd3bdf5913f03f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7aa81f93809e1a0b7ad289168444878ffd0c72ffe500efca7ea7a2778df812d4
MD5 442e592c6ab0164484c65f15d7c94d3e
BLAKE2b-256 ebd189a2db47b098b650b2ad6056067bb5b25ed0d4915426bfc1c18bee0c7a73

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39d51754c4375b34b58b6036780ee022db80b54a29fbfc577c785da8dfc358f8
MD5 d8fe307d45328712f4290dda1c11c24a
BLAKE2b-256 8ee9771f71a1fe8630780f0af8dfe657e3279cd79fffaa7f0b7614cfd5a563c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea28ebd4d347c13c6acc787dba1fb0f626188469f861a2fa9cd057fa689161e2
MD5 15d4e9e1eae5bc7db4142fd511d6805a
BLAKE2b-256 fe269019de43dfa3886661f823f2ccfbacac90b4a2bdf2dd3d5965281682ae55

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-none-win_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-none-win_arm64.whl
Algorithm Hash digest
SHA256 e83bd84617400bbca9907f0a44c6eccaeca7bd011791950c181e402992b8cc26
MD5 7a4a1672e8552eafd05fff9f978d7bc3
BLAKE2b-256 5dc2ea62c43fd8704d632164cac18495bf7594136ada37e8ad069a09344cac70

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-none-win_arm64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 9f96654bceeb10e9ea9624eda857790e1a601593212fc174cb84d1568f12b5e4
MD5 67fbeec45a2d6c6983e8c133a9295e81
BLAKE2b-256 1f753a92747cb8458af939dd288c6faccb6814e166311a86227d0610dac1158d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-none-win_amd64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-none-win32.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-none-win32.whl
Algorithm Hash digest
SHA256 a9df3902b279cb743baf857f29c1c7ed242caa7143c4fdf3a79f553801a662d9
MD5 4f0634af737000a53b872523d473317e
BLAKE2b-256 2795a88b4d588d8a5597f8264eaab2cb203ddbf994bc4ca283f3d8fa5ca36328

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-none-win32.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 919fe66fd3d3031585c4373a1dd0b128d3ceb0d79d21c8d0878e9ddee4d6b78a
MD5 13e36d42cbe8f30595fbe02e96510e64
BLAKE2b-256 6afe04f8c47734c14563a3cf90660ee718f0e9ce04df1017efc51562bf434c13

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1258cb82689ded64b73816fbcb3f02d139c8fd29676e9d451c0f81bb689a7076
MD5 df2df3070a94feeaff24071340abfa47
BLAKE2b-256 10ef31958f010c5e8b01413437681216b9f6e89449d821b1d6c4504a24f2044d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28e226ff25510e62b57443029e5061dd42b551907a0a983f0e07e6c5e1facb4d
MD5 6c5c4c8b55f89aa8a04d65467cef93a7
BLAKE2b-256 1f00c5b9f44d4ef66cb775d1bff131eb33ac53919e9f88053e4ea79f4c5fe078

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8eab37611b39cc8093e5671e5f8f8fc7f427459eabc21497f71659be61d5723
MD5 1a26e23b223c10d81c5eca19c817fae3
BLAKE2b-256 9aa03411f69dfb1df10e342b974032eb0b0efcea9a242f4784d1a73563e5cf0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9504e43f4852265ab55044eb2835c270fda137a1ea35d5e4b7d3581d4ac830f4
MD5 8ef68b9c3ffd567fce8fd39c836f5d16
BLAKE2b-256 7db6c352a8b266898bd40a4fd75440ff7ceb760722ec10e4cf3555990fb61947

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65c8986318846728d66ac2ce5dc017e79e6409ef17a48ca284d45f7d68a8ead0
MD5 baf6837f8151be40dd3710d849002472
BLAKE2b-256 8bbad7dd906bdb61f1cc22b8983345cb60f27f3bbda180f53465819b162e7493

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2079ae2c434e28f1c9d17a2f4ea50d92e27d1373fc5908f1fd0c159f387e5b9
MD5 3d4d9ac5240e00555fd96ae657f6f81f
BLAKE2b-256 71188b3a0f4452d9a4f518397d8cf94ec6f2d1ee45403f76a01f2f66b5c15ffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 721a7bfe0d17c12dcf82886a17c9d1025983cfe61fade8c0d2a1b04bb4bd9980
MD5 7bc51a1a7e1c0eb3c18a3ebf2a22362b
BLAKE2b-256 38db90376e1554d90ecc90c33e28186ff6f2c57ad0d08478d7352c5fc85ce36c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b76875209d89227ea0666c346b5e007fa2ac9cc65b95b91551c4b715d9e6c7be
MD5 fc278b1c7bddcd53dfd4d2112e34c829
BLAKE2b-256 ffca1d48954361c243e1c2b6661a12ce06aaafc927c1808b31733b8949a9e2f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9401be43100552fb3a0d9a7392e207e4b4dfa0bc99c3f97613c0d703db0b191b
MD5 2d37406994cb1d1416b3c0e19f7597d5
BLAKE2b-256 059bda0d4eade57f432f05647730e31c7ecaeb0303d8a694b83822b6f54a76eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-none-win_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 808ff13261826b64b8313a53a83873cf46df4522cbca98fb66a85b543de68949
MD5 e5f54ab68edb57a5cd71e1303aa96268
BLAKE2b-256 bdbdc5f0616bae188b47fb91c8e4c4e49a99a6930d527fbf937e828a73e93367

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-none-win_arm64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 33ff20f6603fb3434630a00190022020102dc26b6def519d19a19a58a487a514
MD5 f419c15e36f2a6c4b5d53fdc935e8974
BLAKE2b-256 8967872d808d8d5fac55c358f49d9f5fdc36425d16a1f4dfcdfba1c80f41125e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-none-win_amd64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-none-win32.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 17ab4ba8955206eba4a87c6bc0a805ffa9051f831c9f3d17a463d8a844beb197
MD5 50f316d7e233a5d80302b35e37877b51
BLAKE2b-256 f3adf913f6a7b1fd784d79431b6ac9337c702a996d30499b8af246fc582b6c95

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-none-win32.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 90876d9b77429c8168d0e4c3ebe1dcf996130c5b0aecb3c6283f85645d4dd29a
MD5 106d91ce9f13d55269ca5c8fe5799a3c
BLAKE2b-256 bd3b8967b37e72ecb9c4dafd72f62f426bf3f5541c534973d32e80923fac1b81

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b8974ee473e6337c9b52d6cab03a202dbe57e1500eb100d96adb6b0dfbff7390
MD5 f52b6327c32584ceb14d4a3714a1c9a3
BLAKE2b-256 41577ebd53f325538b3291cc5cfd94d8cf9ee8f1014fa7d74c45d645d344b5ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 732bb98dd393db80de1cd8a90e7d47dced929c7dea56194394d0fb7baf873fa7
MD5 91653d90d9fbdd42a8bc7226ea551ac3
BLAKE2b-256 a16ee8b80c04f50bcbde518298e371d8bc64afc3646b90dd5369b867e68a7166

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02b90d7e2e11c7449331d2cb744075fb47949d4e039983d6e6d9085950ad2642
MD5 6aee5908c811cb25466bfafbd132756a
BLAKE2b-256 7e00f0464ec560136e4dce374b9f50a9fe1c03c5b67bb201d9a328926835c970

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af0226e6826000d83a4ac34d81ae5217cc2baa54aecd76aac07091388bf739a1
MD5 4790df79bb345c328ca26d5317c6e18e
BLAKE2b-256 24d19ed72aa9576b13c8cdd5156b652769871c682edf3e37f169e5afc9bd9626

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c3be559acbcec19d79ba07ae81276bbb8fadd474c790db14119a09fb36427fb
MD5 6b0ead44c796f7dfeec950ce04109c93
BLAKE2b-256 436a46d8836765e71f9d9116aa3c6db56ca7acaeb0c19c81ed77c7f927b44086

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65d0f0e7a3e554ba5672b9bd5f77b22dd3fc011fd30157c4e377c49b3d95d6d1
MD5 de6f270ba70cbf02944fa34ae1f29eae
BLAKE2b-256 8b87fb5ee8c9c9c8e9bd12e08170af2c39e113f991adbb65343a8eca098c9525

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56bb60bf663c04e0a4cc801dfd5da3351820a002b4aea72a427603011633d35c
MD5 d8778c81831af8437788b82231a02449
BLAKE2b-256 ed1b050290e815417a40cb19475f8aa2e2aa9ec90a0433c2feb1b7321184f993

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2a9a8021d7256e2a21949886d0fe5c67ae805d4b5f9a4d93b2ef971262e64d4
MD5 ba4e847a32742af2c45f04dfba7f9d2b
BLAKE2b-256 cf268ad747d3861112f3bbc654043550906d69758bf5d5d2387f92f19ca9bf8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eacea175ba67dd04c0d718bcca0488261bd9eefff3b46ae68249e14d705e14a0
MD5 c6e800354553e25a57761e3eb477e93d
BLAKE2b-256 09a7e79d853445bdb22647489b62f84ead7f32c301c3169f5f75a96985ac2d7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp311-none-win_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 455e813450eb03bbe3fc09c1324fbb5c367edf4ec0c7a58f81169e5f2008f27d
MD5 af99bd45a683708603b10fd587cf2f54
BLAKE2b-256 86b742de4f63a579d1e976c1938e8f93e2a083a389b157b398f0f324cf204c9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-none-win_arm64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 90e848bb9a062185cdc697b93798e67475956ce466c122b477e34fc4548e2906
MD5 8e028a365872694fe86679298af75e57
BLAKE2b-256 41dc8e5e6637e1716d2974cf426aa944a6d1f5022319612d2608c6fb1b7667b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-none-win_amd64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 545c0cd8bc72a3341f81f9c46f12cad2ec9f3281360d2893a88a4a4a48f364dc
MD5 cab4ac18adcf6dbebef38f928fc6accd
BLAKE2b-256 1952ec281371e7cd5ebc436089b693d8b1cf41d36562d3ea4af2e795cd162444

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-none-win32.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e6a4ef2435715694eeaea537f9578e33a90f68a5e9e697d98ae14d2aacf302cf
MD5 6425b5b074a4585fede315f6bf342f86
BLAKE2b-256 5cdc06215856a18f9a6a912c5bf0a2f9110a469490f18fe1ca3ac92e5bee89cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 86466870c1898b75503e752f7ea7b7a045253f1e106db9555071d225af4a1de8
MD5 cc1f9dae0f44d69b2da3e27335b136cc
BLAKE2b-256 af2e00771529d5fa667155135b1fc9f31d06997b6c8fd3d7d7f2e4d045dcd2f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b2005a4bd693dbaa74c96fdaa71a868c149ad376d309c4ad32fe80145216ad2
MD5 ccced1ab8f4479e6dfec2c4076cb533a
BLAKE2b-256 08acc04accb78049b64b99fba9eb3f889371d41c7985f9c7eef855fe05d13f96

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 23d04d73d2028c7171c63179f3b4d5679aa057db46e1e0058341b5af047474c4
MD5 549363c55b44848f6d11cf14364f7f41
BLAKE2b-256 33898147afd9ede3c04210c7b534437d0f0c500938b2c1e504ffcef7d955865f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e93ebe06fee0f10d43ede04691e80ab63366b00edc5eb873742779fdabe626e3
MD5 c1a8c8330b2f262bd2452d9e5ae22ccf
BLAKE2b-256 36349f7a50471e4feae9b7e2690d330311f35255b2d22fb4d75cb18cc529d289

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 84bac53ba4872b795f808d1d30b51c74eac4a57dc8e4f96bba8140ccdeb320da
MD5 157fdb852ea96fb74465303f45783b1d
BLAKE2b-256 7306937ae8ae1b00e7153a9abf3428cec2966b272b75448abcb53a88b1e4d83f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1df7ae7c29f96b6714cfebfd41666462970583b92ceb179b5ddd0d4556ea21ec
MD5 c4219079595cdb4c2dadc8a5a5a87343
BLAKE2b-256 564a91b6a8c875be18ff77d1051dc91de109491f9fc3e19509a114801b80dc7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8c7ab2e26f124483308f1c0f580b01e3ad474ce3eb6a3acf0e0273247ea7b8b
MD5 936a55ac3460b0455715e9f13b0057d2
BLAKE2b-256 60b670daeb7375b2829d4943a9d216bcd24fd9d5a4f98e27aea974f8f9c56a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c860d5dc649b6be49a94ba07b1673f8dc9be0a89bc33cf13a5ea58998facdb12
MD5 8d0a65b31da2a8785154476b25df292a
BLAKE2b-256 94af0b0d5c05f52ce93a7920c966b77aba010e3f59378f0b8f99c0c6db9b5a9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7fee7306d015e2cb89bd69dc7b928bd947b65415e2cd72deb59a72c5603d0adb
MD5 fea983216257252e008db61d2c12b08b
BLAKE2b-256 27721b362f92d6beb1a31bc579db6edd43bb251aef3e4b6edcd7d9617f4d4e68

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 40354b04fb68e63659bb5f423534fe6f0b3e709be322c25c60158ac332b85ed3
MD5 d16e87e43d620b2d944b0a4421cf4556
BLAKE2b-256 e45e6a619b23c914e18101675c87dc50f947638793d8db2d100df919f2ddeabc

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp310-none-win_amd64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 bd9616b355f47326ff4ae970f0a91a17976f316877a56ce3ef376ce58505e66c
MD5 62fd6a0fb6f3db27cdd71b7f5952d03a
BLAKE2b-256 b544ff5b4d92a5609b16af607a13debdf6a00265555edac6216f624c26e15d06

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp310-none-win32.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e1bfb191b5da6136887ca64deff427cae185d4d59333d1f1a8637db10ce8c3e
MD5 bef14bc917947312608dc5ad57bdec73
BLAKE2b-256 536f9100b7fa85c40660b85198803a8d63623e6b6584a2c42ed5caa7ff093717

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 78cd352976ba7324a2e7ab59188b3fac978b5f80d25e753b255dfec2d24076d9
MD5 f32b57b4db130ba4e19d5e6952978efd
BLAKE2b-256 c873bfb733d01038c35f495f2eabdbecafec6ddc30751d25e0f6da3a52a340ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6aec96ea676ec41789a6348137895b3827745d135c3c7f37769f75d417fb867
MD5 ab897763e5d5debf69004fc1c123d04a
BLAKE2b-256 0eddd305d860af1db06f037d5b6127835b053ba74c31d4c78bb289ae8c740914

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 400fd6e650bfedf1a9d79821e32f13aceb0362bbdaa2f37611177eb09cf77056
MD5 56c9076550789dac7330a33ddb55e512
BLAKE2b-256 059626c2233fa19aa1e273bb604d2770102fce869384bece2e541732a5d24af6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8dc27a41ebca543e5a0181b3edc223b83839c49063589583927de922887898a
MD5 ca54d90bf1173c14ce2c4b913ec964c2
BLAKE2b-256 d7c79ecc6b83e6a5dcfaef8912dececa2e11df8fca864c2630226e3cdaab1c6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f42795617d23bb87b16761286c07e8407a9044823c972da5dea922f71a98445
MD5 0a4237507601a81d14589a2567410207
BLAKE2b-256 f452fdea6ba516bfc17d7ce6c8cbb76f7940950a7b8222abdb5f64e2da1774bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 086fc992232207164277fd0f1e463f59097637c849470890f903037fde4bf02d
MD5 72367186ed9f90ed3aa26992bfbde1aa
BLAKE2b-256 78a27b9f08692d47806633112824515f2f9aa1fbc55c8e643147331f00d16667

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 98808c087bbbfe4e858043fc0b953d326c8c70e73d0cd695c29a9bc7b3b0622b
MD5 ac83073501e70c701528d73f6313da1b
BLAKE2b-256 a8914019bb2fe530a378cb14928c16281c0da0db3893ac45a85b2cf445c194db

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2786751cfe4e81f9170b843741b39a325cf9f49db8d51fc3cd16d6139e0ac60
MD5 16908549b3fd77b5fd9c619956d6135c
BLAKE2b-256 cd8ddd086992d63879917c6a2d9888ea3975875dfff7995665cd915b68b35609

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2822c39ad52f289732981cee59b4985388624b54e124e41436bb37565ed32f15
MD5 992b81a8eaf613a09ee19bb839d58766
BLAKE2b-256 dfe2426307ce173dac9ec7c048e9c52ea4962940d0a74fd22689e49d7d346303

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 529c36520924b16f398e25e78fcd4ea14fdcd95f383db360d107e075628d6941
MD5 aed18714dc1a9e007cac488bd7789cc4
BLAKE2b-256 f8e53d579b5430f54797b636f9bbff9a5cc73d3a56f495901f565c3c82156703

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp39-none-win_amd64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 28c1394a00bd218ce4223f8f8019fd2c1878f1a01ad47be289964d281fef4dac
MD5 d145c39e31016fff952f0d0dccc71910
BLAKE2b-256 7c8c1ae6ccfef31654fca8ec6bbb3ebe28f2c212f6c233e1026d3f77a77fb62a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp39-none-win32.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 26d870656fbe1c3767483f3162359765738adab58915157c55afff4dfc32e9e9
MD5 41d062e6a954be239012f089eef0682f
BLAKE2b-256 95fc9d88b6ea48e21391b9608218a1d23fcaf9f5d9a737eb2aa3a63daf3016bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2252b25e8fd992f10e916fb4eddc504a58839a1e67f32238bba803ecf16ce7c4
MD5 e0fa732f439ba424119d994dad4d63ef
BLAKE2b-256 e976aa47cf33d72dae62ecc883aadc72ea5f4c5d977bf09c7bc0d0872ceba0af

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c96c5cfd02f4a20a2df51ff6732839d3f4a4a781e9e904a85191aaeb8fce2870
MD5 e9811177a316bab5cdcc0afff3c2c643
BLAKE2b-256 31ea7b0611e87a289914d3ba2e4add499ece4ca1768caecec7087e98220cc36e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 79b2a774944b4ed084d9a677cbf88372f725449a260fd134ab2b3422ef2d4a5d
MD5 b86f7341d50d56945e03f376e8d08095
BLAKE2b-256 da5ef6a67958acc48189df58af78224ca970348539dfe8c7e14b877fd7926f7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94f9cd55efdda69352de6679d737d41dfcb1fdb5b8e5c512e0b83fe6b5f3796c
MD5 d1a67dfe37610b0bcbff3aaa8f7bdabd
BLAKE2b-256 83d41e795b47b3013ca2b483cb57a0778f0fcc07e75b0b433d0be5ad62a9bc5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6493fb0fbf766a380d0741c11c6c52b1a06d1917a8e7551f9d560324ca757b82
MD5 84e58bc5ce855e518c135c1e901b62bc
BLAKE2b-256 9b928326c2c78d933f7db0740eb5cf22b25afd115bc1f6d93c6ec456be90a65a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58a3331cc70e7496592c9c559fa89a7451db56a200d754e416edb51b9e888a41
MD5 b59edcaca03d36c5d30585f69cbdd5bf
BLAKE2b-256 fa9c4a57ca04ae47da6c9e0534497bb69fbaeb451ada412bc02576bac61f11a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 edf8d83c7369b18d4d42e9e2ccc52143bdbf27a326877bf3fc6fc56c78655372
MD5 a5d0d47db5f849094b74f2d02559ddc9
BLAKE2b-256 ce1e0152c33046c8dfc3d596022ff887063a1d6585df4e7f3e1c4707877968cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38c5ff0b9696fe4deec98e8135f33eeee49e302bcfa2ffcc4abe15cb1f8e8054
MD5 98a8a32163f6ff3e628a620b9f2f7af0
BLAKE2b-256 85c5da6d4f36411bd8d70bf2ffd07dfba58a66a3392ce6c618bcadbc202aa3a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dcf5ffd5a63b806de03629c2f25585e455aa245d6e0fd78e7a85dff79d16b6e7
MD5 886fe5951ad7b56aab8e8909677a4747
BLAKE2b-256 bc1537ec1980ced054d96bb9daa5569148401f775837bc1d4e03a7c6fe631fbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 f2d270c4eb15971eb5e2e87183470f7eafb1307d6df15253a6cff7c5649ffe04
MD5 275c1982a29348dfa0af49fd96efeb11
BLAKE2b-256 98e47ddf54f3b41315fa7ba71499804d45920cf3de6e14dc6b41b830ae0db150

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp38-none-win_amd64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 68b8cd5f6aceb56e5eb424830493210d478926e36951ccafe2dad15b440da167
MD5 31adc2ec2ef3bdfc342da396cf5e9a1b
BLAKE2b-256 eca3090cba3e78e035e208708f86b54b38ab40a35db3d0e100ddcf08c6cb607c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp38-none-win32.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 38975ba9b8b8bbe86ab9d384500b0555af6ede8bd328af77cc3d99484bd0e303
MD5 b6f1ac22178cff381f626aa2191c2389
BLAKE2b-256 87348a48330e17de8a15cae5d33f643db925a61bdb0d311295a7c173e51d9499

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp38-cp38-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6ad2ae302ec13c1610170f0953b6c7accf7b26384b0a3813987e16ec78b59982
MD5 d72ce039a5fe5c853cc3b8742b8cb1d4
BLAKE2b-256 9e174b4263daeb92b7f57c3e636d7c11db494f842fe52f182cea609f211b8ce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp38-cp38-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11727fd075f0c184ef7655659794fc060a138c9ff4d2c5ac66e0d067aa8526f0
MD5 74ed10904953ad11cc88525b2992b8b5
BLAKE2b-256 30e5d588fdfa5f11713e7da587ce52be62018fdb751cd62723a3edba3b963ba1

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8abd68d8d79da7b5316214c9b065c790538a3e0278b7bc278b5395a41330b6a
MD5 7f576a79e9f01d879d86f4f83ba6d45f
BLAKE2b-256 cc583e4532f487fb62846961b6d5330151d220597c09c3615d00eb93d6f0d3c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a46c344077da8709163c75441ab61b5833e5f83e2586c4d63ad525987032c314
MD5 9474f7e26e6fd484013ae0eaa241ec3e
BLAKE2b-256 75ec6250511131071fc8803c7b53d928d51353ba6db2c2cbde00f8e967c2bcac

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfe3ae2e73de00310835495166d16a8de27e49b846923e04f3462d100b964d2f
MD5 a97bab042fe8229beeed52f60f4a8b9f
BLAKE2b-256 ab95d49809ecb332ef1e3584cb048e41d961d83dbc9bc035b9e695ddc2c8665b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50c8462add6488c196925ceee73c11775bf7323c88dbf3be6591f49c5e179d71
MD5 7abf1d1ea429a6ae386a4898a47916cd
BLAKE2b-256 ae693416a967b8cd2d959b4925bf4318d1bd9fe15e7a98b65f982a4cd96bf270

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd08e245a7c2676887e548d7a86a909bdc167a3c582f10937f2f55e7216a7305
MD5 641afe4bf58d6c8237203df51c09bac5
BLAKE2b-256 53452a4eef939d6ddf43ec84a4ad4ac814c63cba91ede0c1b6baac69f1e05a66

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

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

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 885c668ad97c637a76b18d63d242cafe16629ed4912044c508a2a34e12c08892
MD5 c1828b7d1e9436f9a3e7d4ce60ef90e5
BLAKE2b-256 35124b8dfb296ed65bca4b4f287788197c120a984743d42c9d395c24ed0a8c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

File details

Details for the file python_calamine-0.3.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for python_calamine-0.3.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b37166dcf7d7706e0ca3cd6e21a138120f69f1697ea5c9e22b29daac36d02f1b
MD5 8e255ceb4e589c19052e610810ec28ec
BLAKE2b-256 ad452c20c8e90b263ff068a4f07de8b3453f133f5a3a7a3ef9c69f5820514fdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_calamine-0.3.1-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/python-calamine

Attestations:

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