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.

Development

You'll need rust installed.

# clone this repo or your fork
git clone git@github.com:dimastbk/python-calamine.git
cd python-calamine
# create a new virtual env
python3 -m venv env
source env/bin/activate
# install dev dependencies and install python-calamine
pip install -e .[dev]
# lint code
pre-commit run --all-files
# test code
pytest

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

Uploaded Source

Built Distributions

python_calamine-0.4.0-pp310-pypy310_pp73-win_amd64.whl (694.0 kB view details)

Uploaded PyPyWindows x86-64

python_calamine-0.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

python_calamine-0.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

python_calamine-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (889.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

python_calamine-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (875.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

python_calamine-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (931.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

python_calamine-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (816.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

python_calamine-0.4.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (835.2 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

python_calamine-0.4.0-pp39-pypy39_pp73-win_amd64.whl (693.9 kB view details)

Uploaded PyPyWindows x86-64

python_calamine-0.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

python_calamine-0.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

python_calamine-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (889.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

python_calamine-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (876.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

python_calamine-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (932.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

python_calamine-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (815.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

python_calamine-0.4.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (835.3 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

python_calamine-0.4.0-cp313-cp313-win_arm64.whl (670.3 kB view details)

Uploaded CPython 3.13Windows ARM64

python_calamine-0.4.0-cp313-cp313-win_amd64.whl (695.0 kB view details)

Uploaded CPython 3.13Windows x86-64

python_calamine-0.4.0-cp313-cp313-win32.whl (665.3 kB view details)

Uploaded CPython 3.13Windows x86

python_calamine-0.4.0-cp313-cp313-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

python_calamine-0.4.0-cp313-cp313-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

python_calamine-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (886.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

python_calamine-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (926.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

python_calamine-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

python_calamine-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

python_calamine-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (874.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

python_calamine-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (929.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

python_calamine-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (805.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_calamine-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (826.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

python_calamine-0.4.0-cp312-cp312-win_arm64.whl (670.7 kB view details)

Uploaded CPython 3.12Windows ARM64

python_calamine-0.4.0-cp312-cp312-win_amd64.whl (695.4 kB view details)

Uploaded CPython 3.12Windows x86-64

python_calamine-0.4.0-cp312-cp312-win32.whl (665.5 kB view details)

Uploaded CPython 3.12Windows x86

python_calamine-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

python_calamine-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

python_calamine-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (887.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

python_calamine-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (926.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

python_calamine-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

python_calamine-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

python_calamine-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (875.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

python_calamine-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (929.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

python_calamine-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (805.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_calamine-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (826.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

python_calamine-0.4.0-cp311-cp311-win_arm64.whl (671.8 kB view details)

Uploaded CPython 3.11Windows ARM64

python_calamine-0.4.0-cp311-cp311-win_amd64.whl (692.5 kB view details)

Uploaded CPython 3.11Windows x86-64

python_calamine-0.4.0-cp311-cp311-win32.whl (663.9 kB view details)

Uploaded CPython 3.11Windows x86

python_calamine-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

python_calamine-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

python_calamine-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (888.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

python_calamine-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (925.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

python_calamine-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

python_calamine-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (878.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

python_calamine-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (875.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

python_calamine-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (930.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

python_calamine-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (812.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_calamine-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (833.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

python_calamine-0.4.0-cp310-cp310-win_amd64.whl (692.4 kB view details)

Uploaded CPython 3.10Windows x86-64

python_calamine-0.4.0-cp310-cp310-win32.whl (664.0 kB view details)

Uploaded CPython 3.10Windows x86

python_calamine-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

python_calamine-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

python_calamine-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (887.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

python_calamine-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (924.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

python_calamine-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

python_calamine-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (878.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

python_calamine-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (874.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

python_calamine-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (929.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

python_calamine-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (812.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

python_calamine-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (832.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

python_calamine-0.4.0-cp39-cp39-win_amd64.whl (692.6 kB view details)

Uploaded CPython 3.9Windows x86-64

python_calamine-0.4.0-cp39-cp39-win32.whl (664.0 kB view details)

Uploaded CPython 3.9Windows x86

python_calamine-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

python_calamine-0.4.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

python_calamine-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (888.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

python_calamine-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (925.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

python_calamine-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

python_calamine-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (878.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

python_calamine-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (875.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

python_calamine-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (930.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

python_calamine-0.4.0-cp39-cp39-macosx_11_0_arm64.whl (812.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

python_calamine-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl (833.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

python_calamine-0.4.0-cp38-cp38-win_amd64.whl (692.7 kB view details)

Uploaded CPython 3.8Windows x86-64

python_calamine-0.4.0-cp38-cp38-win32.whl (664.2 kB view details)

Uploaded CPython 3.8Windows x86

python_calamine-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

python_calamine-0.4.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

python_calamine-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (888.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

python_calamine-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (926.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

python_calamine-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

python_calamine-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (879.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

python_calamine-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (875.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

python_calamine-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (931.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

python_calamine-0.4.0-cp38-cp38-macosx_11_0_arm64.whl (813.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

python_calamine-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl (834.0 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: python_calamine-0.4.0.tar.gz
  • Upload date:
  • Size: 127.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for python_calamine-0.4.0.tar.gz
Algorithm Hash digest
SHA256 94afcbae3fec36d2d7475095a59d4dc6fae45829968c743cb799ebae269d7bbf
MD5 8ad1583a8ca3d5f8e60019ba73ff821e
BLAKE2b-256 cc03269f96535705b2f18c8977fa58e76763b4e4727a9b3ae277a9468c8ffe05

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b370998567de0cd7a36a8ac73acabefea8397ad2d9aad3cf245b5d35f74cb990
MD5 32765584383ca38db28763cb2f9b29d3
BLAKE2b-256 7499835a9cd3ed503cb51fd15039b6404c536d201a6f3d16a6e069ce1079c5e4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9d981efa53ddfd8733555ad4c9368c8c1254bd8d1e162c93b8d341ead6acc5a9
MD5 8324f5901464791c1e2af70a9cb493c3
BLAKE2b-256 9b4bee4ac45d500bd2ae189f84adf3338dbd32579fa2198a05ad180666578575

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7dc1755cd0b10ce5e2d80e77e9f19c13ed405b354178c3547ba5a11d34fce6ea
MD5 fc62065e2e7eca96912dce8c31f792ba
BLAKE2b-256 7bb444f560b0ab4dcb49845f5c5361641885f8dc2b7e9b35fbf59242191c2eeb

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f04fb24e70ab4403fc367b9b779eaa3bf61c140908d9115ddfe1e221372d5d4
MD5 84ace4b7dcd46fcbc84e7726bac9d6f4
BLAKE2b-256 4be9fabdd376713409e6ae6a8fee41293304798d794a64c9d407ba90f765f3d4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 494c5dd1dcee25935ff9d7a9eef6b0f629266d1670aef3ee5e0d38370dcb3352
MD5 e5491d0898279042e24fdc0a83dbbe4a
BLAKE2b-256 9f7b597470e5349056a1dd7b0e3a7e838da53cba9186771ca5501a264446f4ad

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 49dce56dbd1efc024b63b913595f1a9bef6f66a6467aefad7dcd548654fedb5b
MD5 6364129946fd159a1f8b37e03dcd7e3e
BLAKE2b-256 808ecc09cc14276662cea1f161a20bdce46d8bfd409e84027a0a0515a00b63f5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c10bb42e0d0810368e78ee9359902f999a1f09bcc2391b060f91f981f75ae21
MD5 3535a76215c57b42ea592110efd9d797
BLAKE2b-256 db626062945b8d5fc73d0a0c44b25ee5f4037cc32d62b57688a0d0ca6763006d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f9a44015de9e19a876babf707dc55708881930024220c8ae926ea0255f705fe
MD5 678353494875b1d220f9675bf844b2f2
BLAKE2b-256 a18c120a1128ff422dba43d6f2d1d19520bca95abf1e5135bbe3b84a782d3927

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9f0908cf2b12b7271b6309a0def56fff9ae4628fa9a4c2eea148717605b7a8c8
MD5 a19f8960591dab2db13646cb00265c7e
BLAKE2b-256 70bbb42279197ea4dbd514ec6eaa1587b6bf396539f7e0c1b2d87ce1c7543175

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 703c905e2a50049099f91a5dff6fe47df88e50003d0152a1ab9c0581ed44489f
MD5 59437d3b5ce15530df775d701407a2da
BLAKE2b-256 c59281e57dd920f072627d2be39875558a1b8f35db0b54ad0deb4b63a3e521f8

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d311df409e091c9664290b017f5d8d36365c354a87b103a333ae110238206c0f
MD5 5119f51871e0fb50cfa9a42353cc3d09
BLAKE2b-256 ba8c73d13cb477b9e8cd1815d6dbf687a1a9ca702f2ee3433ddbfbd7d15b6b89

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f62da1115fd7a103e013f151bcbde3c07dde398a55eccb2d66b0d1e95a010bb
MD5 65e5ea990c29fc651c17f103218ae5e0
BLAKE2b-256 c35dfe17ca00b257e5fe92c38b7d6083c2e1995e916190f0af604d1912fad744

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78fe6a871b5234db52fb328dab866ef112162e29f8ca193e11a2bdcad3dfa3a2
MD5 5ac46238f887141f4e79a7c32496732d
BLAKE2b-256 6a669a155483587d2db6a4f69cb3a5d9c83963a4db82c7e1cf7f335a486a8d78

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a623372781849d664a4c9116334c22336caed0fd58a1b065b4865c01af29f5de
MD5 7c0afadd10e3cf14a980de68a3f83467
BLAKE2b-256 4744da2782e6429afe7bf9361b931d5a7aa91aa9d82992243a015179d5da1b0e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bafea0e6ae20156a5bb20abfa6b7ba2c8c8716cf8f7afbf365b2133be4bd0ec4
MD5 3bbdd8c3b558a92ef33da47e57a18e66
BLAKE2b-256 81a4cbc5e0027c6fb6e23f9b84d1485425be63ae5d1300d574b004e916792c60

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c076627f5532d1b40cb48ee80af2f625a9c6f58b24dad776406c7f1c3c339b41
MD5 faf93e31d2e410817be95f5e1f2431f6
BLAKE2b-256 cec75634fc5b2c555eefd2221715588877a55b0a785ba2b06bb763fd963681a8

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3f9bdf570023138ee4090a51b1e34786978d6e649852ccc3b83ac9729f125ca2
MD5 8abe303ebc5e2b1207fef35f28661d32
BLAKE2b-256 9026f72c2b2fe70f2901abb41fcdf8249181133ddd72b9392cfb63d030393b3e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ec081b874e78f4dbcbe70804644281366814289956755575a5871f725592d4e
MD5 ef43e7d6efdd85bdafd5631e44c191d3
BLAKE2b-256 cb0b26337e0a0e2b335c1d6225bda8de259a21fea129a06009c1471deda28e1f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c7e98c7e531bafdf719414d0c428f25f933a82640fb92e6e84864a85e758aecc
MD5 aadeb544fbcbb63aed7132312f29f6c8
BLAKE2b-256 04dbecee6e5d6ed4f3725312580a83c4cb1758c9060aa08bf2d8512d3396cea1

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 18375eb3ac1362fcbf3a9fcad0672d8dc054001247bc52f063e0054a3e01a8d1
MD5 61beb79fa802bfad8602c7201511a38b
BLAKE2b-256 751987b42fe975f8952754562785a545f6d2eec17c353befdf33a8e16c046ce0

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f81518d4b49c47054cb1861badf5bcef44b0a49959968fb2e9c9cb89645c76af
MD5 5bd96dbffe77cfa9afc9afd6b7b3a67d
BLAKE2b-256 7c6b71e30ee568ce1ea6676be66f1a42c6397946859effc471cc102922fb4792

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eabc9dc770f753c4227aacedd8390056937e67af0bf65d6696c584d3054f1287
MD5 3b6d5aa39c5b1f6d7fb267f845258b3a
BLAKE2b-256 5a5d3b8c46ccc62d020858bc52f2d792208910eb68682c6ebf8d6706593d7a88

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4072bf9dcb8ec49f5b92688bd960b5d0e03e4826d227bbd66478a6f6b0aea06
MD5 2212884548678831481ae6d3bd2f2bd2
BLAKE2b-256 c493360cf58b8e24f760a3d4643423389dbc37bdca8b6fdda75ffc664ce622b5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e47891d9d62e3015448749ddb2ba60ab583a651d0fca9a3a1794936942ad7d5d
MD5 649e82f32476aa2611ee5c62a99c2a7e
BLAKE2b-256 64240eeb583eb5d44f674ca9f7a846c665e33190431386d7c9f6d08ec9f09d3c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e127d3b78d511d4f6fbdfed02fe666d83a722d73e27dd64d1718be9efafbabfe
MD5 2e7f921d31a315901112f30708eba4ac
BLAKE2b-256 5612e6b589293314a5d10b2c309411542424ebefb77430cc715d7601d80349ae

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aca67cb447ba8dcefa4d5a1131d1cfdd1e0d0a0f0c6470655ce9ad37b7cfa228
MD5 a7d292760b727482c0067b4f951ab072
BLAKE2b-256 4652033b902fb11f9b4bb59fa18621acbf5eaf4ecb0bce878d34fcb0020229df

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a4bcf36dc77674892616b66cffba432f5fd62df3e0adb0487ec245036b50041
MD5 58417abef17023ed7f856957e33e9386
BLAKE2b-256 66cf73241714800bddb277f827c4683f579b81915406bf7dc643dc185cef7eb2

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aca7e019f42ca16806fef53e3028fa158005c0e68eabda577c3f3c2bea9735fd
MD5 07e3550ada39819cecf5ada6058f5519
BLAKE2b-256 15b1d7d0dbbd0469db0fc628b1b9ee3a8f3b698391279f0d7aea96e2018a3863

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8d6b2d2ae73acf91343f02756bdcb2fa6117db4eaf5cfab75ce50dfb54525ee
MD5 461b730c6903e9d5c0ea3eb065a7315b
BLAKE2b-256 5a10f78218ccdc5bb5591a37d582c7e8723121d0fbe8196c5a4089110ec02f22

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 43a0f15e0b60c75a71b21a012b911d5d6f5fa052afad2a8edbc728af43af0fcf
MD5 3ca68ca4b5c4b25f4a120306efef3f0c
BLAKE2b-256 2066d37412ad854480ce32f50d9f74f2a2f88b1b8a6fbc32f70aabf3211ae89e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b193c89ffcc146019475cd121c552b23348411e19c04dedf5c766a20db64399a
MD5 f617ae9a7a2cc05ce4e1ec8a8933410d
BLAKE2b-256 5ef27fdfada13f80db12356853cf08697ff4e38800a1809c2bdd26ee60962e7a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4c2a1e3a0db4d6de4587999a21cc35845648c84fba81c03dd6f3072c690888e4
MD5 1d62a4a3c097984c2e9778bb2fd73ca1
BLAKE2b-256 16dee8a071c0adfda73285d891898a24f6e99338328c404f497ff5b0e6bc3d45

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 85b547cb1c5b692a0c2406678d666dbc1cec65a714046104683fe4f504a1721d
MD5 62b6f5eb2e5583a138d3187ea08f50cf
BLAKE2b-256 655240d7e08ae0ddba331cdc9f7fb3e92972f8f38d7afbd00228158ff6d1fceb

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bd2c0fc2b5eabd08ceac8a2935bffa88dbc6116db971aa8c3f244bad3fd0f644
MD5 c3f4247bd9ae71a327d68c55a0e62791
BLAKE2b-256 64fafc758ca37701d354a6bc7d63118699f1c73788a1f2e1b44d720824992764

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbe2a0ccb4d003635888eea83a995ff56b0748c8c76fc71923544f5a4a7d4cd7
MD5 63ab59be20f9934af52dae3d86011872
BLAKE2b-256 cc6e989e56e6f073fc0981a74ba7a393881eb351bb143e5486aa629b5e5d6a8b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf813425918fd68f3e991ef7c4b5015be0a1a95fc4a8ab7e73c016ef1b881bb4
MD5 58e054ac848c3868f70fc3b50eb26ce7
BLAKE2b-256 f0815ea8792a2e9ab5e2a05872db3a4d3ed3538ad5af1861282c789e2f13a8cf

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d792d304ee232ab01598e1d3ab22e074a32c2511476b5fb4f16f4222d9c2a265
MD5 65213ca4e7a46feb07092615a96b6712
BLAKE2b-256 f96dc7ac35f5c7125e8bd07eb36773f300fda20dd2da635eae78a8cebb0b6ab7

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f23e6214dbf9b29065a5dcfd6a6c674dd0e251407298c9138611c907d53423ff
MD5 2829dc66570948f1723ea21b02701a8c
BLAKE2b-256 47d23269367303f6c0488cf1bfebded3f9fe968d118a988222e04c9b2636bf2e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65cfef345386ae86f7720f1be93495a40fd7e7feabb8caa1df5025d7fbc58a1f
MD5 c9bb465cf6659563ecfd2987e3d214a5
BLAKE2b-256 004cf87d17d996f647030a40bfd124fe45fe893c002bee35ae6aca9910a923ae

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7b3bb5f0d910b9b03c240987560f843256626fd443279759df4e91b717826d2
MD5 843506c270d97dc2fdaa447c1a934cb0
BLAKE2b-256 5d922c9bd64277c6fe4be695d7d5a803b38d953ec8565037486be7506642c27c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf80178f5d1b0ee2ccfffb8549c50855f6249e930664adc5807f4d0d6c2b269c
MD5 02305c858eaefdc672dce5a3560bb439
BLAKE2b-256 763f789955bbc77831c639890758f945eb2b25d6358065edf00da6751226cf31

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 74bca5d44a73acf3dcfa5370820797fcfd225c8c71abcddea987c5b4f5077e98
MD5 3d710e316ea528df228990bc98e96d19
BLAKE2b-256 6360f951513aaaa470b3a38a87d65eca45e0a02bc329b47864f5a17db563f746

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 54622e35ec7c3b6f07d119da49aa821731c185e951918f152c2dbf3bec1e15d6
MD5 8e202930f21f507c8c89699adb5be5e7
BLAKE2b-256 941c3105d19fbab6b66874ce8831652caedd73b23b72e88ce18addf8ceca8c12

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a8543f69afac2213c0257bb56215b03dadd11763064a9d6b19786f27d1bef586
MD5 4028ff9d95d5f80eafa53f0918541fdb
BLAKE2b-256 7ce31c6cd9fd499083bea6ff1c30033ee8215b9f64e862babf5be170cacae190

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 04f4e32ee16814fc1fafc49300be8eeb280d94878461634768b51497e1444bd6
MD5 3a6a117fbda00de6491591eb1db1a74c
BLAKE2b-256 33959d7b8fe8b32d99a6c79534df3132cfe40e9df4a0f5204048bf5e66ddbd93

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1b2cfb7ced1a7c80befa0cfddfe4aae65663eb4d63c4ae484b9b7a80ebe1b528
MD5 348b354c913c78ee4ddac45e0f364746
BLAKE2b-256 809674c38bcf6b6825d5180c0e147b85be8c52dbfba11848b1e98ba358e32a64

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2cc45b8e76ee331f6ea88ca23677be0b7a05b502cd4423ba2c2bc8dad53af1be
MD5 cd5d722083f89246dcf096e9546adf1f
BLAKE2b-256 64da137239027bf253aabe7063450950085ec9abd827d0cbc5170f585f38f464

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9951b8e4cafb3e1623bb5dfc31a18d38ef43589275f9657e99dfcbe4c8c4b33e
MD5 325dab70d9a12555210368e6a29da49d
BLAKE2b-256 7903b4c056b468908d87a3de94389166e0f4dba725a70bc39e03bc039ba96f6b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a831345ee42615f0dfcb0ed60a3b1601d2f946d4166edae64fd9a6f9bbd57fc1
MD5 caaae4a099b829ba37f4f28a24714d40
BLAKE2b-256 543fe69ab97c7734fb850fba2f506b775912fd59f04e17488582c8fbf52dbc72

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e405b87a8cd1e90a994e570705898634f105442029f25bab7da658ee9cbaa771
MD5 ced7f2b3af953cc03b8661f319d7f1ec
BLAKE2b-256 a4dcf8c956e15bac9d5d1e05cd1b907ae780e40522d2fd103c8c6e2f21dff4ed

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4480af7babcc2f919c638a554b06b7b145d9ab3da47fd696d68c2fc6f67f9541
MD5 4506e66a5e0dbb3de32fa593ea92de8a
BLAKE2b-256 f4f048bfae6802eb360028ca6c15e9edf42243aadd0006b6ac3e9edb41a57119

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c686e491634934f059553d55f77ac67ca4c235452d5b444f98fe79b3579f1ea5
MD5 88fab1c6862b4ace4606222957ef514c
BLAKE2b-256 3d922fc911431733739d4e7a633cefa903fa49a6b7a61e8765bad29a4a7c47b1

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a6619fe3b5c9633ed8b178684605f8076c9d8d85b29ade15f7a7713fcfdee2d0
MD5 b37dc3c25d1d01c7426aee311d6a1cc9
BLAKE2b-256 864fb9092f7c970894054083656953184e44cb2dadff8852425e950d4ca419af

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 258d04230bebbbafa370a15838049d912d6a0a2c4da128943d8160ca4b6db58e
MD5 5f1447687e14e03ca3ae11df93724870
BLAKE2b-256 f61aa681f1d2f28164552e91ef47bcde6708098aa64a5f5fe3952f22362d340a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1687f8c4d7852920c7b4e398072f183f88dd273baf5153391edc88b7454b8c0
MD5 c1a37676044551f58fea01df094c9c8b
BLAKE2b-256 d4a5bcd82326d0ff1ab5889e7a5e13c868b483fc56398e143aae8e93149ba43b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e457d1e07acb2798b72e70bd4e88f07cd486ca5129a19fadc6aa19a2cd4e76e8
MD5 42f817b385d557adf6f4e9e8c13ad3d8
BLAKE2b-256 6af5fdfeccd7d66e5c9c834288df6a657858a046d94a6e4cd624418cb5bb96dd

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f06415096bcd9218b6c15d39ee2006ec0f32282e3d08605391d2a8a52187f9ca
MD5 c9a25c2681af9453cdd0a1243fab8943
BLAKE2b-256 5260d7aaa39977ab401de33ae975dd704805ec9c76117f0fe3a53e45b718822c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a5a58bbfcad9c1192dada189e367ed46e72037fcaec585e970fa919b92e07a57
MD5 67ed785c972acfff165b233b3b54e588
BLAKE2b-256 9503ae56667a2a2eb273eea5f754212454c7073f8abe8e0fdca0edfbe5c0cf37

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3d61957c10d37e6bf508fafdf52e6bb3112db8196e30bca8bc4b4560db2cc5f5
MD5 117aa03025f127e69d160b9e18192f04
BLAKE2b-256 25a12b8282ec4acdf1879f9d46d84a6907843d2a331639719a2cfc90356345b5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f90f85e04c281d96c6dc5551176fc4e32c95257c3a2d384a947b3e68275c7d6
MD5 4ec1c88fd0b971941c38dec889ad5722
BLAKE2b-256 4087a104c11b320d3fb7f1997d97207addce0fe5e1d41e5fd2e8adb0fb8b1325

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e58cd89154fd1b5ef77c609f63dce108d390ece5a5f3225ca3ebedc8d343e9d5
MD5 ab83ba8c94ae4ed550a243a8f0c3debc
BLAKE2b-256 d11d8a9c7d491d31db1def335f4d90b85ea29940d84c59a27a88a442b840fda7

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58c2c4440982ec6db64c826136661f84f84bc0d8ee0cdd64a38128cd217797eb
MD5 0d9f25845fed81a0529d8d77b369e3f8
BLAKE2b-256 9c610068297ec0000b2c0755a608c8068a1070b8193675d2ff603d390291aa45

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7abb10367aea435ca473b9b698636db912f2ab164f19a6c9675710ed926f33ac
MD5 fb2cc838ffeb39d3de7f313533d38f08
BLAKE2b-256 4bf6be5e35263ceec21e77810d7900235124a9a83fd3c0afbbbb79da658d535c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35be298f69006e86b0311a538c1c9694ce3012237c33572d3dfe2bea6b5b9820
MD5 8bb008e78f1ec6cdbbf6629cdc59291d
BLAKE2b-256 ff71dc00e6d9187044d15c85cd0875d8aba2b3e0d3051ceabd47d859f40f69c8

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5f8408b01d8097b2e662d0205ca09695788fb5f3492ade27de4ad4160cb6bd4
MD5 f4d98d06073c580e069331d5362b42d9
BLAKE2b-256 8ca59580de7758950b39c5048787909b639771c92ad6ea7f909a48dca1dbc6fe

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12e350e5967bf3206a8b472d9b6c348ff37ae791dba1a1715e076b2c39328557
MD5 5ffa8cb2550d4eeb02170ec9e7e3e149
BLAKE2b-256 2d7628c704d875046cc1ca92d8c6e680f6bc38d83735397fee821929691fd57f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06011f11fd8d2dbfe0bc9bd8bd135c191aafe66f2d0c9eecf0ae3cb38f42f888
MD5 d66c175b3a476657982f7749bdd63877
BLAKE2b-256 8e06885c73fd472cb76af4c4650174a7c11b77a8bc40585044bc445ac694e5e6

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c80cfe589bd8dc027a38925f71b70f34151b762c974d9ea3de180d76f2740072
MD5 baa27da1bcb641575cde537f71d6e83f
BLAKE2b-256 a4e2fcbcf63a7174e151830a4522a5331f70bea9317953dcf8f139cc5a8523ca

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: python_calamine-0.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 664.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for python_calamine-0.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b65c99650946912ce601d67f519e771bce93ba2cdd2511b1a0e40aa287f273ca
MD5 1d742c8d163abe622d3271dbecc58cb9
BLAKE2b-256 d41feade71d18121c160335eec2759191aca0324d40c0b7ebca851688677192b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6943e5856d759902b0cbf4314a09f0f09fda4c4450071ca2d16fc427983e8720
MD5 5ef5bb5e94427ac2601df727ecd9fda4
BLAKE2b-256 371b23e8c005dcf7c993cea857fa1b4170e3f9bb594e72f6142b750b3f768151

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 07252575340301cd62db505820179f299dc703ab4fb11221df3b9183c4c740a4
MD5 706a85e07e4b3650052a74c07cd38c21
BLAKE2b-256 87d368dbc7a66fba3bb3aa5115ac442c2bfefd5c971b3369ae3320cf7ed02ca1

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42da196f7c7b4ad603fd380c87c479c141e7f9ada4c98c03e9b3e1b18178c8b0
MD5 0726f898aa77dee28b0ec064fd08e2f8
BLAKE2b-256 3ae8a51614110b1f6211a65085d3ee57ee332a69813c41469a9a7ed700b01f04

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9538133b3bf2a7ffbb8e2ae0c45b915e2d6f412043623a09a20d5274fc8e69c8
MD5 f5dcfb1d7b87830834ced7174752e083
BLAKE2b-256 370db8c53c3e22d052a782a642666ab09aa4bf5e87f45ea7ff5a8dddc1a52b71

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2cc3edd08656ba0aaf01df0c0c49e6089a3164286de8c78739794eeeaf05d77
MD5 8537cfee3b0d82bb59408d6c0383db83
BLAKE2b-256 c61101b1d463d165a4c6fc0ab0d85c2d3f58989e1571ea08c5e50fb1e69fad17

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f951ff667b2e3ae2e18f9abd0893d7c309aad2d9f3d0272f273d73c4f9965c4e
MD5 8601028311915ed818760d8ba7c0ccff
BLAKE2b-256 061f50a30bc290b6cf611611bdfad3fc4feb8cbaf5ab391f5b9c8d9fd717ec3e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 513d3494f5dcebb9cfac3b075431c6d6e83ffb8827593fcbf5efb5b4161acf21
MD5 c0de3036b5bbe7a19874ea1c07de6e8f
BLAKE2b-256 76007a30eda6407de405fc41f952abba647f267e29113ef869964a8209daecfb

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 65a30c6fca7f0e5ef4f45ed30b61108a358049268aa3cd0d8b168fec77c6db00
MD5 4a047f679344a6ea0685c1d6e1365f4d
BLAKE2b-256 d8752d8adf138c22c05ff5f7c1b09c37dc30ef46009e96be4beae867dad6e567

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a283f538a404080eb6bd2e1108d9696c16238e98edc94ec6e7762ba1f1d83351
MD5 c73c941e19b49aa9056e6cb9810bfa22
BLAKE2b-256 08311ca460cbe65bebb0de7e784a5ee64a9652b2abb6a57dba9aea0ae3fbdd00

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ed314602023b05a9637d78b53ea112df151751b72b1ae4249e6acadf106daf7
MD5 cafd8604c9e8c107f2c351a80e8bc1f7
BLAKE2b-256 eef4fc9f5b96f2f3555b479004c7fc9fa52996339808935333a45aa88cc253b5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dad42188a948fe057eb524ae68d12bef5d388d9b31f9efcbf3aae0ed8ccb2538
MD5 46fafb7411e381d559053cab83e7e089
BLAKE2b-256 58619317d9f3f6f5b0154340683572b2cb667c8afa8083140d62659e7d1ab3a6

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_calamine-0.4.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: python_calamine-0.4.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 664.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for python_calamine-0.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7e859cdbf0089c09b1cfc097951bfdb2867aaae727737e13c7c2f2209974d320
MD5 031ed8db5f8848f4044d953894df2da3
BLAKE2b-256 c1ada5778758e7bf54faca2def878a37b36e3e88b1ab66d84e7ec670afa0b2b7

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0ccfe7198de140c93a0d07ca84d10bc4d07fa6628c3e48a765287307b1083af3
MD5 13a5f5321da146e3391df947118b2472
BLAKE2b-256 dd15e48eff0995042a8b60e7d2454b004a136cfc6b0e28edcd9d4e1f02da2b06

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 24fd78cab78c9fff3db34c326a14d776d9d97376d4ec03fb413adc36e50f9d5a
MD5 16dca0eac4f798ae5082fb2afe32c160
BLAKE2b-256 95743bf083951d2230ee9ae7e2b2ae1926f645958473a6b7ed3d53e185ee7f8a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01a8a75f428882ea9636f5d8dd2282f0e69616c6c2e054342996dd5363acc1b1
MD5 3debfb9ebec17ad3b20b4bb70388988c
BLAKE2b-256 77d8f440e51c0372488df91e7a7ff9285050a28a6cbb88d4069831f85daa0166

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e34062474d353bfff3b44bc3d0aa1230ed97bebfed34d3168447b3e24fdcedfd
MD5 bc7e8c444435351d92bde9ac425d7d3c
BLAKE2b-256 ef6fce025bfe3699de84bae91595ffc7e150d24dec45087784ae94c02ff7b4b8

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d76694000cd2e46de36a3963a2f2bb3abd9d4a949cab7cce877faa51a5249e11
MD5 7793ff96df9cb1361e729a8f0907fd45
BLAKE2b-256 5982d304c6f6bc12fc448db9aac58feec7a8efe10c8a2e94a0b93f636398ce82

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51cb79689bed1f8a6a331381034101fc32aafa5b73afc22873672ea957659ef4
MD5 9caa1dcd9f4ace530268f720ba2d243e
BLAKE2b-256 1d7c5d49bf0e3e36c3240af668401c19508c52801e153c10cf3f9b73a41b4801

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad3c7123dc92169f1d856e9a1652815115bc0c9d5299200fc598ef3993b0f845
MD5 6958e54b510e91e415913c0ea5cce9fc
BLAKE2b-256 69012e58c7efcecec11d051736bb32f5f6774e26dd0d688467834841e751a880

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cbf3ee6452fbefa2857053c58913058e152ecdddd90f69b923d9d7920db1cbd4
MD5 42541263d4fa04dfcbd035104060bb65
BLAKE2b-256 031ca7f40de7e21e29cadc4b14556f5cdf035b8ccc05aa5bbd60662222e7030f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe32075cb329f765a10fd1ee7fd0e0012cd5e65856132710812af6aff1652447
MD5 1598d771ccac0b11f7f09f4b4455d8bb
BLAKE2b-256 de0aa823655096ee52a6e09ac19f7e743ec887be17c60bbbf3f71395c9c82bfb

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for python_calamine-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 19443389894fc1bce068409591e6926d4a4f7402fdef8d4012dd4ac7837d7dfd
MD5 437fe372f3c9f51cef45079c9b931482
BLAKE2b-256 700a7d6051719ba13a832358c7cbe603ae0459c3c843af69b68d16d00c7d59c5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/python-calamine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page