Skip to main content

Read reMarkable update images

Project description

remarkable_update_image on PyPI

reMarkable Update Image

Read a reMarkable update image as a block device.

Known Issues

  • Will report checksum errors for Directory inode, even though they are fine
  • Will report checksum errors for extent headers, even though they are fine

Usage

from ext4 import Volume
from remarkable_update_image import UpdateImage

image = UpdateImage("path/to/update/file.signed")

# Extract raw ext4 image
with open("image.ext4", "wb") as f:
    f.write(image.read())

# Extract specific file
volume = Volume(image)
inode = volume.inode_at("/etc/version")
with open("version", "wb") as f:
    f.write(inode.open().read())

Building

Dependencies:

  • curl
  • protoc
  • python
  • python-build
  • python-pip
  • python-pipx
  • python-venv
  • python-wheel
  • python-setuptools
make # Build wheel and sdist packages in dist/
make wheel # Build wheel package in dist/
make sdist # Build sdist package in dist/
make test # Run unit tests
make install # Build wheel and install it with pipx or pip install --user

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

remarkable_update_image-1.4.tar.gz (11.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

remarkable_update_image-1.4-py3-none-any.whl (12.1 kB view details)

Uploaded Python 3

remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_x86_64.whl (442.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_riscv64.whl (421.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_ppc64le.whl (465.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_i686.whl (458.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_armv7l.whl (362.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_aarch64.whl (401.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_x86_64.whl (436.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (420.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_ppc64le.whl (454.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ppc64le

remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl (367.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARMv7lmanylinux: glibc 2.35+ ARMv7l

remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_aarch64.whl (392.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_x86_64.whl (435.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_riscv64.whl (417.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_ppc64le.whl (460.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_i686.whl (456.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_armv7l.whl (372.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_aarch64.whl (396.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_x86_64.whl (428.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (414.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_ppc64le.whl (447.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ppc64le

remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_i686.whl (449.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ i686

remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl (374.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARMv7lmanylinux: glibc 2.35+ ARMv7l

remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_aarch64.whl (385.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_x86_64.whl (431.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_riscv64.whl (412.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_ppc64le.whl (455.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_i686.whl (453.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_armv7l.whl (367.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_aarch64.whl (392.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_x86_64.whl (425.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (409.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_ppc64le.whl (443.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ppc64le

remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_i686.whl (443.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ i686

remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl (373.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARMv7lmanylinux: glibc 2.35+ ARMv7l

remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_aarch64.whl (381.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_x86_64.whl (385.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_riscv64.whl (370.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_ppc64le.whl (427.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_i686.whl (404.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_armv7l.whl (320.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_aarch64.whl (356.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_x86_64.whl (380.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (368.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_ppc64le.whl (410.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ppc64le

remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_i686.whl (399.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ i686

remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl (327.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARMv7lmanylinux: glibc 2.35+ ARMv7l

remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_aarch64.whl (349.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

File details

Details for the file remarkable_update_image-1.4.tar.gz.

File metadata

  • Download URL: remarkable_update_image-1.4.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for remarkable_update_image-1.4.tar.gz
Algorithm Hash digest
SHA256 73c4def9371a2a9cc058d05edabd5e1159f6766ae2539810cade80cd9a7fcbb3
MD5 ef33598e6b70229722db8cd89ff837ee
BLAKE2b-256 c09f568cdf367fea146c720c2474bab9f34be0a83f5d6d38c56a77ff476244d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4.tar.gz:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 6d4ee6f00825dad4d96cfe421e446f0737a93ed2421bceca05f02a5652811287
MD5 1f823370fbce8d73ad35178e3b05627f
BLAKE2b-256 23ea350de169bc9d7f2cc39c4ec48c4ee731be07ac66791882d7296b27182bdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-py3-none-any.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b296f3f1ccb0fb8f53df2b8f20f9f9b955873629766a568244f97e5db4ac7869
MD5 71348193f47995d58bb0a1bc18552604
BLAKE2b-256 fc6695a6763cb11d0fd0a62ed7f7fa82ee7b2dd5589e46161cd189fc33fd99d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 48aa745320eac42716606849402199839d2d764c6b27bf96152574168736df80
MD5 115c093509d26fd40cfe6c318ad99b45
BLAKE2b-256 fe4a0349ee45720924e59ffa6551c7e64e5f6546e24dc478cb4137dbe7a3c06b

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1b49fcbdd54a475d221a8ae005831ba15c891ea7748ee59cac093ec7ee732fde
MD5 ec01c619a73168dc2fa5797ee4873e0b
BLAKE2b-256 b445eb7b8f148e428954d31ad87da93c4614ac805b559e3013cc81774daa535c

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e53980a855b29d05ac13bdf345984595bbcddfc3e046eb27a8795f2c34a7e5a
MD5 be60f92d2edbfa334622fbbc3c826958
BLAKE2b-256 3535a62cac86910f26c51e80315015630c7e1e075a133a921a6a869cd9977954

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 36ebf11f05224e1b9c757934708c49ad15aeaee9a2228babd08f03f3354192fa
MD5 7dcf8b622785501badba830f46dc2a28
BLAKE2b-256 ecc033a3c7737fe11170bfb86908a94fb4412582998fbed66c82d96bbb4a22d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b8e4362c7afbbe2801db72e6eb3940da9edc880ff1ee6290b23026949351481
MD5 f5324a6da84df3c25693b522f2156881
BLAKE2b-256 72be3fb28a802d209d2d3a0a1a78e31701664a5e49d78acf52b4079a44878e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1945f8b8e6a660b10f245545f401e116e5732c915a8212b972de294f24528dea
MD5 03b1f79011235291e62e4ed4fd69dc2b
BLAKE2b-256 fcf3be95b536fff6a764516baffddf3d2f5f69191f18c541d038d61e9de37eeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_x86_64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d39d2057e133b67d4ea230fdc5494bf374928ccec63bb8ce59e5a7e7ff2f9f64
MD5 753fe8367d9bad9f5f471b170f6fd025
BLAKE2b-256 568110c83b52a038d881ec9b4868129c90f82bccd9792726bf9902877efcc514

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 8ba9441efed232420563be30d9485e7c566e0896ddd7cc6d923071a91179c908
MD5 6bb202dbb5cc3966456deb2f50551024
BLAKE2b-256 4b5c891d6c93cf7311a12a5306cc1eed99b97c8745856cf9a7bf8dc127c23e1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_ppc64le.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl
Algorithm Hash digest
SHA256 e6cbe52ccf1074161884a4f9e31c0c37b47f1e0efc8e61d803e9b5b01153894d
MD5 3602786d8ea0f1925e3e3aed7b95c99e
BLAKE2b-256 cbfadaea3cf3939268fd0c2235b4f2987c348a51df62e15887d70d1707d739ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 47bbe0cde1355eaa3713253789dc56d82e9ea93ce06bbdaf38b6688f44eb5da9
MD5 3da045f50bc33dbcb1c4b452789873ee
BLAKE2b-256 3206174471166827c7a10427184b752e7069274952dc9c2800b669f0f59a2fef

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp314-cp314-manylinux_2_34_aarch64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b05541515470a770dada2e5b65f870bcfb27e237447c47fbcd4f7ec6274995a
MD5 2c19348be339e8f2ab13e418562eb35d
BLAKE2b-256 46cde71ce6af6c8451b820e7f5008fcae34d1cbf20ac690821b4b245f2b037b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 12559c1f43653ae98820ea6952808c87bd6a639aaaede989744a05d4a50cd294
MD5 0e4f1ed93571877dc6d0cea41aaf9eac
BLAKE2b-256 04fc934892ce59f1b7c97480db52259ddb09b92335eb0be03017b64895b13e4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 60d70425385053faf52ba6d7d1e097cf747f4c718e4960ecccccee4fc27b0ad8
MD5 fee01bfb06a70273bc9a3e1447cd9cec
BLAKE2b-256 3cd175f81299d88a3c497947487ac4418aaa2a19749397d57d66938fa9ab2d85

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58f784113a320d8489b174a39080758a5727474b8d201044eb4f08506a367ce6
MD5 783d71be15697b1718c897b524807c4f
BLAKE2b-256 84d53370a5e7df2dbb63db13e80e73f9ab4178e1b1c53c5dfcfe14abe14808cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cfca26b8f111b150f89595122c0a9f017e60c9fc1190fa4a24ccd4015450c6a7
MD5 631bb061bae5094eca12b0b0b30c02a0
BLAKE2b-256 12b672f92baa5c0134affe598505b23eecedfe3e5b24512d94646639aba83d49

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00e77ae506bd2c195f12031357ec445954e561331def2457220a904f18a7b15d
MD5 beb5d0fe5183abaf45d1a409afd7df3c
BLAKE2b-256 4a3a5a37ab1e9897a1e09e7ac1831d78c39f2dd2e3b5459500394ef41291376f

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 63db3a861e457846336bd03861e99f6bfdd9c671b225acadba894e219a555fbe
MD5 498f8b75c8db0029e702ec06aa8eb635
BLAKE2b-256 db6b085ed7a2a7f889782cf87182aa89e9d9e9f164224ddf6ceb7db301284898

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_x86_64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d7f1db22cd29a651d5f1cd7b3310cdaf8135c69441c781bd4b01a94c496360d0
MD5 7ac625ee8e6027e85d2243a4626671ea
BLAKE2b-256 b2a0949bf064bc9af4674a867100d938b24c11a9e485971c95f1aa7cae4b087f

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 abfad5bd609d6a2d28504153ced628c57f0e2c860e7e6eb3680a3c24a1010146
MD5 63e11212f277b47fe1fabbba7cf15956
BLAKE2b-256 38a0135d008e9ac7ed7d49bd72e04c69f61a3ae300735681ebbba2b5a31ebd05

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_ppc64le.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 a6dc4030803b2d77990517c7aadc405aa3bd195114f22c2c443de790244b4896
MD5 fe32d496f281b8b9a346f403241e6486
BLAKE2b-256 56cd0a11931c3bcb5c623923541369c68f13a796484781be78cd99c17fcf2d30

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_i686.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl
Algorithm Hash digest
SHA256 9095f7b65942b4f51a58f5dc63a62c8d73a052b0d8f4a9d697a17fe08f10e742
MD5 ed66dc75514d5212deb5380bf21f4fce
BLAKE2b-256 08d8e80dc63da45fce7ff94a4b40f407e140e06a17e3c421dfb9fdb42f9e43b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 1f78c35f0d3b880c9eca73fc0b1146d4fb6c4accbcda8ead8d2bcfa7e7cee017
MD5 836fb7aceb15ef7765fde4b0a39bef64
BLAKE2b-256 1a64e7a0088eeaf6c4d7435feb216553783ace50e9c0f05c7a44c98135990d2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp313-cp313-manylinux_2_34_aarch64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 695fb46d3b71806246fcf7afa4ebf3a2f4c168c55258844bd01a224fd843fe1b
MD5 2df039cb65749fc6e80a7b3a4c7c5513
BLAKE2b-256 f5c57c2170552c56955609c7d79c03d8b5d81899b9e78baaedad75340781fbfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 85667ac526392e1f9fca6bf3f7f22eb77704982799ab708effe5486cc9c80b6c
MD5 4eb80c911d6ed6d979af8b62f45c536c
BLAKE2b-256 f5b8e64941b901002c65804b54690f632601726daf438ce613037491d575eefa

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e9135bf4325ad6a3b22d2ee289e5615c2269015500219180ebf010c2b94b95a3
MD5 3812a98f35554489ea92e180d734fe05
BLAKE2b-256 1ed8085915a61196e2aa9a0d1a7c72273b5f0cd1a4483c0d6dac805fa1220f61

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f595678b500df320c7257fd43477b1402f32a1ca785d973ace9cc737cd50016
MD5 26f49f042007f4294825208c5e862d89
BLAKE2b-256 951c0bdbc6b1b881ac98f03fbb6c32f13c7457073f61cb125c3413ffacb2fa8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 effc95315f9ca91942f0ed6a5b85e19a0f852eca48d83e8f0847a20b99ebd535
MD5 4b1a6d5fe6ba3b3e856b771d5db00af2
BLAKE2b-256 a70bec127d118446f9b42c6aa006962ddfe50564a618f88af3ccef47d5b909d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c98d998673602d3ff4dfe3d08df667741c6216d74f8213a033c153f68b39352
MD5 dc7a3a229c6e83ad104678c4148ecba2
BLAKE2b-256 2f454dd9fb76429d2a45f668d50d3eacec05ef4e1e4b222ceeb51c101046c82c

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ad807d8072d14a3b5999b5ef78368e5d46fe2eabb1dbe08579a249f845dce5fa
MD5 70558fd5b0f5d31cd11c4a06565d57a8
BLAKE2b-256 ab2cbfda0415f6b73faa98651349e29316c38a4d74225422a878a567947cda46

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_x86_64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 294faa3de5578edece2dc3b028f39f9939f9f8dff9ff9cb274005f7d8b92fd1b
MD5 e5efe4cba39c92e42003c1f338664fda
BLAKE2b-256 eaeb7180772797a42621d2dc785ed5cb709b89d66b61053003035356d03027ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 2ab775fe709fbe5c61ce6111fad257e9c8134d9a641761fd2da60e766b23d8b0
MD5 82354ee67046f6d0af2724bf4d18280b
BLAKE2b-256 75c05beb0cb039cc04022ec23a7f2d910b7440f4f8029b0fe4a8a79b25219185

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_ppc64le.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 98bc4f55781b032df3e8d34206af35b0a4c598b8ce0300ed517bef0107d6d82d
MD5 78d5b388c75058027cc3b545207b976c
BLAKE2b-256 107b1720ed9241502fcea1de1984a74354eb7de7025954e6da13261573480529

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_i686.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl
Algorithm Hash digest
SHA256 a3bc8675e7c4c1825c76592918e9ccba044682dbb05eec4eff8963e422ce16c2
MD5 0ad601e5f5fdf27d4b0cbf5b4e76c590
BLAKE2b-256 ccc81b1d46d700b5960ae0d944d3c891078f53d37d5d106d31862054f0e33d33

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 b65310e4394fca447d0f605aa5fb075513e0bb2c2b1f3f87b6253b7c0496c2f8
MD5 3a1b3b2d8dff6108433b5dffeb326860
BLAKE2b-256 e5eac35f488f9412901f096fd09d67bec138de4f2073deb0c10665622749b25c

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp312-cp312-manylinux_2_34_aarch64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff5d8edc13ed6c9f2713e295439c6f06e76ed6e3790e1e0ff3dfb30552a1217f
MD5 aafdc888d411204037d364103df2ca82
BLAKE2b-256 4ef82d40d4239b0ed4ec82e63f20ca7d8c708a16f5282c445962437701abe4bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0753f93d1d395af7c794cbef0d50543c290f21283ea34a3759b5d8f49c19236c
MD5 3004349922fe5b4c7fe92997d77126d4
BLAKE2b-256 ee2670bca30275171ddc54a36ecb8fa773dec09bbe27e90e330cea60342eb449

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 aa1e5bec4f2c74c12acbbd4415120ec278114e1328a4cb8a0eed6ea035543187
MD5 7e8fe8d9343b015443c6f573ed8e998f
BLAKE2b-256 4338aebac0c147563bff8c57cc3ffed99ee69e4f154bc5c2b5b3c57e333be040

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0ccd1dbc0ed5ee3f593661b3932e7e189075fd93efe9736729ef27b28549829
MD5 e55558045d4ef0043be62961933b7422
BLAKE2b-256 896fd503e5504e2e5a690e72a6b6f980a63935b14ee830a981045b8c26f3143a

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba278d7d5e411fe3f22922a2a578da25ae457905759825387c70d07d90b03829
MD5 54d009e1761e6d9c9a23d590bd03127e
BLAKE2b-256 a72cc2997cb59bfc3f953ef1371276a3188b44d5b1bd97501ac14a7c49a82405

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f65c55b4406a97979c9dd6af8c9e092ef550e8d14a2c9778bb7a702f62ce2ac
MD5 9f105c77c1c4f4251ccb5638c5c0e7dc
BLAKE2b-256 69f25f18bc63c12961bfb3eea1b2cd3f2eb3d7c0dc2f5238bd02c9d24dceebe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 0f74687ada86a80f40cd1ef8bac04d2daa7e37f7881031a3881281b72e8f5b26
MD5 3c0478111274cd67284b9bde8549f31b
BLAKE2b-256 7db2124a65b44c88dadf52c4a9b750689152925f418edeed79d7670fe9e1a883

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_x86_64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b4d70163e2c5bc0216057a7d682cc5ade538c2a6f89ad32b54f272aafa567bf5
MD5 ac2ccaf464900f4b9a7509b6b208b053
BLAKE2b-256 daa173d864f00426d9c2834266859a33f4cf31cf9dd8d87878e0f0b0799b4650

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 04908c35b9b4ed0ddeb365d4e551149513c9c3848400b046699fb39982d621ef
MD5 96f62e1c86b8f47f0b75c86735aea11c
BLAKE2b-256 be3aae17a8ed51dcbdecfde049ad38b439a4e9c136436b0fe0364e61f94d23bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_ppc64le.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 90b7c9c4a2004e5d3d3650f71c210fee95c43cb13e215f407a46193f8c4a87ca
MD5 2cf1b8cd53a891c10e44b5744b030696
BLAKE2b-256 fa3d960cfcc64f49dfc0ab1148f8c61b67d27e3e74143726e5152363df622305

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_i686.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl
Algorithm Hash digest
SHA256 843b8ff57465c8e2fcb0d1dc41547cd63a7346b9cb5140f64b8fd16716eb42ca
MD5 de5f8dde84c8a9b36587e29185fad5ad
BLAKE2b-256 7df543bf4a3055d84642a4535b393981b7c5db70c6be0df7fbfc46c1e5e4ab50

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_armv7l.manylinux_2_35_armv7l.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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

File details

Details for the file remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 ccd338fd04b819533c3a96cbaef13a7bfed00c94a53632f78173e85d7c15238f
MD5 d3f143acba75bc9d713305307189c8e3
BLAKE2b-256 78eae3aedbf8d4a5b39500cdb0b7c9da269b57c69b0ed039dc279d48d9f6535f

See more details on using hashes here.

Provenance

The following attestation bundles were made for remarkable_update_image-1.4-cp311-cp311-manylinux_2_34_aarch64.whl:

Publisher: build.yml on Eeems/remarkable-update-image

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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page