Skip to main content

Converts images and videos into a format suitable for ComputerCraft, based on sanjuuni.

Project description

python-sanjuuni

Converts images and videos into a format suitable for ComputerCraft, based on sanjuuni.

Usage

Import this library using import:

import sanjuuni

You may call initOpenCL before doing any conversion to use GPU acceleration via OpenCL if available. Note that OpenCL is not currently built by default, but power users may recompile the module to link in OpenCL.

Image conversion generally has four (or five including source decoding) steps:

  1. Load the raw pixel data into an RGBImage instance.
  2. Generate an optimized palette using a reducePalette function.
  3. Convert the image to an indexed image using thresholdImage or a ditherImage function.
  4. Generate the final output using one of the make* functions.

Alternatively, using CIELab color space for more optimal color accuracy:

  1. Load the raw pixel data into an RGBImage instance.
  2. Convert the image into Lab space with makeLabImage.
  3. Generate an optimized palette using a reducePalette function.
  4. Convert the image to an indexed image using thresholdImage or a ditherImage function.
  5. Convert the palette back into RGB space with convertLabPalette.
  6. Generate the final output using one of the make* functions.

For example, to generate a Lua script using Lab color, k-means quantization and Floyd-Steinberg dithering, operating on a BGRA buffer of pixels:

img = sanjuuni.makeRGBImage(pixels, width, height, 'bgra')
lab = sanjuuni.makeLabImage(img)
labPalette = sanjuuni.reducePalette_kMeans(lab)
idxImg = sanjuuni.ditherImage_floydSteinberg(lab, labPalette)
palette = sanjuuni.convertLabPalette(labPalette)
luaFile = sanjuuni.makeLuaFile(idxImg, palette)

Note that this module does not have any built-in image decoding capabilities; use other modules to decode files if necessary.

See the typing file sanjuuni/__init__.pyi for complete documentation on the available functions.

License

python-sanjuuni is licensed under the GPLv2 license (or later at your choice).

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

sanjuuni-0.1.1.tar.gz (51.7 kB view details)

Uploaded Source

Built Distributions

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

sanjuuni-0.1.1-cp314-cp314t-win_arm64.whl (73.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

sanjuuni-0.1.1-cp314-cp314t-win_amd64.whl (76.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

sanjuuni-0.1.1-cp314-cp314t-win32.whl (71.7 kB view details)

Uploaded CPython 3.14tWindows x86

sanjuuni-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

sanjuuni-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

sanjuuni-0.1.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (884.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

sanjuuni-0.1.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (855.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

sanjuuni-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl (103.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

sanjuuni-0.1.1-cp314-cp314t-macosx_10_15_x86_64.whl (105.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

sanjuuni-0.1.1-cp314-cp314-win_arm64.whl (73.8 kB view details)

Uploaded CPython 3.14Windows ARM64

sanjuuni-0.1.1-cp314-cp314-win_amd64.whl (76.8 kB view details)

Uploaded CPython 3.14Windows x86-64

sanjuuni-0.1.1-cp314-cp314-win32.whl (71.6 kB view details)

Uploaded CPython 3.14Windows x86

sanjuuni-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

sanjuuni-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sanjuuni-0.1.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (882.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

sanjuuni-0.1.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (854.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

sanjuuni-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (103.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sanjuuni-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl (105.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

sanjuuni-0.1.1-cp313-cp313-win_arm64.whl (71.3 kB view details)

Uploaded CPython 3.13Windows ARM64

sanjuuni-0.1.1-cp313-cp313-win_amd64.whl (74.7 kB view details)

Uploaded CPython 3.13Windows x86-64

sanjuuni-0.1.1-cp313-cp313-win32.whl (69.6 kB view details)

Uploaded CPython 3.13Windows x86

sanjuuni-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sanjuuni-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sanjuuni-0.1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (882.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

sanjuuni-0.1.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (854.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

sanjuuni-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (103.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sanjuuni-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl (105.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

sanjuuni-0.1.1-cp312-cp312-win_arm64.whl (71.3 kB view details)

Uploaded CPython 3.12Windows ARM64

sanjuuni-0.1.1-cp312-cp312-win_amd64.whl (74.7 kB view details)

Uploaded CPython 3.12Windows x86-64

sanjuuni-0.1.1-cp312-cp312-win32.whl (69.6 kB view details)

Uploaded CPython 3.12Windows x86

sanjuuni-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sanjuuni-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sanjuuni-0.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (882.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

sanjuuni-0.1.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (854.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

sanjuuni-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (103.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sanjuuni-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl (105.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

File details

Details for the file sanjuuni-0.1.1.tar.gz.

File metadata

  • Download URL: sanjuuni-0.1.1.tar.gz
  • Upload date:
  • Size: 51.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1.tar.gz
Algorithm Hash digest
SHA256 11c76d4ababbe83a19ca39428af997547374ee675d0e93962bc4e88147d4fc75
MD5 5087952f5ae6ec02ca033913d937c531
BLAKE2b-256 68b94ca9c6100614aa3f5401cff67dffa4bc4fee290e5992bfb55caccbb12e04

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1.tar.gz:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: sanjuuni-0.1.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 73.9 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ad4b96986d2df2746d3f07b96ed7e9f486f55d6116f2257982f4e995c76e4a2e
MD5 c352984f7f87ce82ff041a16cfa534f3
BLAKE2b-256 b2ecadb19e06b56d14890f09ae3207c4623d849a1c61b197f7ba6d8032ca53c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314t-win_arm64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: sanjuuni-0.1.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 76.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 86bf3a03d847e6cc45ca993c524ec792a6ad39bacf9895ff482acc6e9813c10a
MD5 d0920803e179ac27b7c583badd2c553c
BLAKE2b-256 27e20fc8711d0f04ca6fedb558d7c45b1191307b24b3ce263abf5d65eccf5372

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314t-win_amd64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: sanjuuni-0.1.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 71.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ec81872b3f6bfae5bfe548cda59d3d172ab1b1732587fbfa69e8462226383bd5
MD5 546a5cc878af6979df451c077347cd76
BLAKE2b-256 f0a916e873efd19a40e302ee802a5ac099bea17a1ba50bc9e289b815be58087e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314t-win32.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79df25de01d2e11bfb8d626742bbdb5b9c5d2ad3b26e6b9377bc3d7ba851a012
MD5 1cc76bb2bc5392aa67501b22e95aa3c0
BLAKE2b-256 9c6eac78e6fe0357785d7cc7341decdfbccce4d8555ac088ddd56ee4bb63fd2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 febc9e28d5d0a9f4c034b387afe60c23710aae1d49df48fb826d31079d832947
MD5 8cf2bb652b5f54f758adddedfbd5666b
BLAKE2b-256 8e36ee36630e331fcbec4422fe0e8c8d09f08478fb82f39681be58e7408afd66

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9427e87151180ea82ab7781b48cd5d7e2c3e137f8c5534757eceab9d4bb1fe76
MD5 4ccc557a6328cc9c4fd4a499ef73460f
BLAKE2b-256 d1a69e05c4132051041c1733bf1c4e5c2d0845231339902d653351fca049b43f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0130e58c3f3a684d80936292b91195980abe02f5f04e55d821af1ef8ce9e9fc1
MD5 479b31e08513c209b9108cd9ea7ca369
BLAKE2b-256 676d4f698c47c7000f81f0aefb6ae7543e45a22f15c1287999bbc8a603e24698

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91714208aa2117a2e5ab76775d953d719bdc390ba599848d0c5367412d798546
MD5 d2f3bb4601418e8a7c05f6d126231954
BLAKE2b-256 7eafc6892e3898a84d53cdbcdc5d6962630c2461f3bf9c6aebde998633bc39a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6b71c41b979867ff68a3bd8a69dd06b2a9e6e2d831e66f683750fe2f15813bcb
MD5 d2a432b4ceea895c930fb6fd699482f6
BLAKE2b-256 c21f7e8de26f3df756dd93a745d3a93aff637fe5cd2f8a5de0da625ceecd9395

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: sanjuuni-0.1.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 73.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ae59d6a45fd198c52d4a4ee3fa57a596334a00a7e7de6f83c9e7dd8cf50fbe9b
MD5 1dc0c0ccb20b5e3428daed05b658941e
BLAKE2b-256 5b4aa4b44579bfb41670beda283dd7a1ebc68f668c8a5b367d21dc9b96aec30f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314-win_arm64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: sanjuuni-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 76.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 386b5e706ce62f03a0253eb00ce67af0e953f71d30fbdbad7aea1f9f78888894
MD5 fa6389a229f7f040c4f927e6ccffbb48
BLAKE2b-256 6000921ecd8ae7c20b41f3750efc8595da07d436bc9366726d018a6ea7638567

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314-win_amd64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: sanjuuni-0.1.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 71.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 06133d62c1a0d77044df31fe9501608df9114721aca26ef2ce0bcb3f81aa6e9d
MD5 d01010375dd599e8d331df63c0cfb083
BLAKE2b-256 906382e486a694bad12dd399ae4b99dbded3a5215236199ec9c257b2a71b6f8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314-win32.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f56e3ce638b8e2e6c416ddac1afe949ac6a4a95a2cf37ef7fca74f60affae9b
MD5 d52f4a1b3c2dd641c980af2eedcfdf31
BLAKE2b-256 f635d7494470f5b482cda0ab5ade7dc2fe47c0b1adc3b85e8e7e29698230ff26

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70fb9035b9ee20272304dad7a3105812c0509a0b611bd9c05f3c376ce3a90bef
MD5 71f694fa65fba1f5227f862e4be62b08
BLAKE2b-256 e9e66502b5894b03463e36fba20638229e1e0fb56011730b06f8bd91936281e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 169f98d64ddd572f3a8b63562af51421815293eb2c39fca6128d555fb9a5c830
MD5 20050f9018c8d1f26d03baa02c226fdc
BLAKE2b-256 65a5ccf53a7a45a86823653548ba33dd9c5c3516156de0b1edd6a707e0bc097f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c025f03d66da8fa8ab5de19f935ebce27b68108a829545dfe7b8811a501f0c9d
MD5 aac4f7f1405f7b887120895521c4b650
BLAKE2b-256 d10eeec46681c382e95b21f9a4139f899cd1e71e27636a489adc203e29978b6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7f314fcd3f6b4db8eae52e38e95d0fda390f8b82fb31a6448ba1c07b4a2b348
MD5 5e4370b22a880aee562b8bec8d922d03
BLAKE2b-256 7664dc9c64d066054bc7f9f7df0ff6e3f5118ed5ee26d2f6b60c8dcd3bb74c08

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0eebb7e5668afad1b6c1d29f1458706dd0efaa8d176bb38571fc3fcfe000c8b9
MD5 033338c6ffad219b88431688701bd5d6
BLAKE2b-256 7a52a58d763b06d5da52581e8b91d11cc07071504c83532c373e5baecd9d9ea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: sanjuuni-0.1.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 71.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 56aff4fc52c0cc930d80799a81771fdfdb8e3f44bacd3ec7d6da525ceec66809
MD5 87c1f81fbc18c86f1e60650d8de7ec28
BLAKE2b-256 dd718a77dacd51e8da9ccc45e223a0ff2e587be1ce222a2da04cec4ba5bea4f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp313-cp313-win_arm64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sanjuuni-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 74.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 de559f4427bcb6bb22a6989152d9e4437d87f38bdfc7b0b4ae02a9152cac8712
MD5 8f53b87a1bc7f8cab0e29af2d160f81e
BLAKE2b-256 122d13c16a0e5d1764742b958d92594905ae76e4793684ec2289f5bfe28358d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: sanjuuni-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 69.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 105c92fa81e741f7219caeac852452654f0cdce739a963ae428905da2f7bab30
MD5 a2319fa90f51b2b1521acf789785c554
BLAKE2b-256 95d2776efdcc18c58c69ce27b6a2e903e5e49534d81b0a8906484a731b938177

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp313-cp313-win32.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94f5d49f8be07dddde0e1b4fbb0a404eb933278ba6b2009911880eef534ad4d4
MD5 91d5887b5804318022b408d024fb0d67
BLAKE2b-256 07a5ce1681ebbc11fb7ab4d62b65161ea09c9c0558d10e7da971fb7f414ed912

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87d62cf3073aea37ac20ba70a40ffe5816d693d4416fb5be9c7c6a429ea49ae8
MD5 02bc9cec9c884e01bed246b01319c8d7
BLAKE2b-256 ab40ec77d93b6a5a25647e35ae312f1d9799c4229929514fb04fccae1f4ca66b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3835c4533c32f692e43b74f70203336a5a9dc6f81e16b3fbc8c2921e284c7580
MD5 28ddfa80c4f33013f4dd71c56680e2a0
BLAKE2b-256 a9a64bbed1d51a748b4c2f982d6a211e0195c1557a75399963a02a0bf3f269ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e722f594ed3c2e1e5478a05bc5c2756fac855c68f4dc9e61d62fbd9014ef9e6
MD5 fd2dd290bc39c968a38daece97af35c5
BLAKE2b-256 355a2bd6c8488d604a707235db7384807542b1601dd347e905ae1e9524cf93c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0580e5cac0127ba1a2602c691d716e8bcdabc616fd40d048a2c79ad1375948ab
MD5 f326cf305a4627e512481e899345691c
BLAKE2b-256 cd2d4d5d183f5eb7adc6768ebb9a3f3faf56a8676f0e4a8d4d3607c63b0fec84

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3e0372be79f6b046934d0b533ebf1c4551935482dbbd4769b4cdb83b6dd6df8c
MD5 2697d7f31e85a53f6688818ccab3fcf5
BLAKE2b-256 92034b02ec18b424d2d7fe4e82d5ddbe2d8491cfb541f2eb87c9e28debc4c068

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: sanjuuni-0.1.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 71.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 15eb3506d92f3995fd2a53378ddb7774c09862e43c276ac74e70e65c3bf68c52
MD5 beeb5c0e35343f9ee7e0cce7ddd0a104
BLAKE2b-256 3628adf7814be005af1db45b60ed59a4cd7f2a19ece2b92f2e4bb87048232fca

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp312-cp312-win_arm64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sanjuuni-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 74.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f76205351452e68c44a651a491089878ab298daef04af3170ef0f19481dcf329
MD5 199b1ea06208d9ec0fffad243d80082a
BLAKE2b-256 7752573d0c6fa8dca72e171e23d4bb261223d849254a9d40783c5092c86c7040

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: sanjuuni-0.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 69.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sanjuuni-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7ac22f8b93791ae47e38b048a2d53e56ec31524d23f7c1aef8adb3e2fd2a8e4f
MD5 b2beb5d968ab6578a300354551d92433
BLAKE2b-256 cb1c1a60f7880333b56dc53339667b58e8392155d7a6f614b82abae7e7b2ecad

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp312-cp312-win32.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bcada807bbab7661346eb516d9af070a872e6e25ae79e7a9c6c050c8dd2bffa
MD5 d550e5c0a0e8781bc0bf6df8dd4ad14b
BLAKE2b-256 a641140dcfcf45bd09bea95a99bd8c7d1bab9dd9272061abb1ed336bb35f001a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f96e45d6aef8dee20ed7f528f7d21a9db11a44dc10b3098bcad37fb8198c342
MD5 e3c9cc13f549a3bc8e5f32855dbf6214
BLAKE2b-256 25a9e0cb40e592406eff76446801390ca3eea133b3409129683a5f34a1a98bc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02ad2047892685d7adb8eb1f55a66a5eaff631e82e4e729156b112622f32c8a5
MD5 83f5309542f3aabdaeb81b98494b7fbc
BLAKE2b-256 8db474dcf3b2fca7c5abfd7d77090fd3762b9bf3fbb2173137f243047553e6a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce8aed6a734807734a86f0d9bf2cc53e23b9b8ca76a23ac75b2075cb9110c4cd
MD5 d62fe677567346e9bdeabd4949aa55f4
BLAKE2b-256 a24402657f997a2a738c2180799f1d0ba2d239c4ecef5bf60d670c7d561c54b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46656558bdd5bf170d0b2974f37cd82f79382dd8efc0f7645ca4296c6fe580f0
MD5 8859ba9ea61c6c3710e167753cdbb01a
BLAKE2b-256 af99421bc96eeadeabb1834034a15dbf670959e9126f152d1f0911755a968686

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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

File details

Details for the file sanjuuni-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sanjuuni-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 69b0a9c1144ba1fc3064b38524ee40c1efa7719adfcd169900db51b2d3e3fa6d
MD5 f412a51f375565e91396b231f13933f0
BLAKE2b-256 8e886ef3c8a9c7998250752f3511225cc27d3aa3dcbc455f724be0aedd37c1ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for sanjuuni-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on MCJack123/python-sanjuuni

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