Skip to main content

Easy cross-platform GPU Rendering for Javascript, Python, Swift and Kotlin

Project description

FragmentColor for Python

FragmentColor is a cross‑platform GPU programming library implemented in Rust and wgpu, with Python bindings via PyO3.

This README is specific to the PyPI package. For Rust usage, see the repository README.md. For JavaScript, see README_JS.md.

Install

pip install fragmentcolor rendercanvas glfw

Quick start

from fragmentcolor import Renderer, Shader, Pass
from rendercanvas.auto import RenderCanvas, loop

# Initializes a renderer and a target compatible with the given canvas
canvas = RenderCanvas(size=(800, 600))
renderer = Renderer()
target = renderer.create_target(canvas)

# You can pass the shader as a source string, a file path, a registry slug,
# or an https URL pointing at a .wgsl file.
circle = Shader("./path/to/circle.wgsl")
triangle = Shader("https://fragmentcolor.org/shaders/sdf2d/circle.wgsl")
shader = Shader("""
struct VertexOutput {
    @builtin(position) coords: vec4<f32>,
}

struct MyStruct {
    my_field: vec3<f32>,
}

@group(0) @binding(0)
var<uniform> my_struct: MyStruct;

@group(0) @binding(1)
var<uniform> my_vec2: vec2<f32>;

@vertex
fn vs_main(@builtin(vertex_index) in_vertex_index: u32) -> VertexOutput {
    const vertices = array(
        vec2( -1., -1.),
        vec2(  3., -1.),
        vec2( -1.,  3.)
    );
    return VertexOutput(vec4<f32>(vertices[in_vertex_index], 0.0, 1.0));
}

@fragment
fn fs_main() -> @location(0) vec4<f32> {
    return vec4<f32>(my_struct.my_field, 1.0);
}
""")

# The library binds and updates the uniforms automatically
shader.set("my_struct.my_field", [0.1, 0.8, 0.9])
shader.set("my_vec2", [1.0, 1.0])

# One shader is all you need to render
renderer.render(shader, target)

# But you can also combine multiple shaders in a render Pass
rpass = Pass("single pass")
rpass.add_shader(circle)
rpass.add_shader(triangle)
rpass.add_shader(shader)
renderer.render(rpass, target)

# Finally, you can render a list of passes in order. No extra type needed.
passes = [rpass, Pass("GUI pass")]
renderer.render(passes, target)

# To animate, simply update the uniforms in a loop
@canvas.request_draw
def animate():
    circle.set("position", [0.0, 0.0])
    renderer.render(passes, target)

loop.run()

Python binding (local dev)

# Quick run helper: build wheel into dist/, create venv, and run an example
./run_py main      # or: ./run_py multiobject | ./run_py headless

# Manual alternative
pipx install maturin
maturin develop
pip install glfw rendercanvas
python examples/python/main.py

Documentation & website

  • Docs source of truth lives in docs/api and is referenced from code via #[lsp_doc].
  • Examples on method pages are sliced from the healthcheck scripts; no filesystem reads in docs.
  • Doc examples follow async + pollster patterns on the Rust side and are converted to Python automatically.

Platform support

Platform support is aligned with upstream wgpu:

API Windows Linux/Android macOS/iOS Web (wasm)
Vulkan 🌋
Metal
DX12
OpenGL 🆗 (GL 3.3+) 🆗 (GL ES 3.0+) 📐 🆗 (WebGL2)
WebGPU

✅ = First Class Support
🆗 = Downlevel/Best Effort Support
📐 = Requires the ANGLE translation layer (GL ES 3.0 only)
🌋 = Requires the MoltenVK translation layer

Limitations (planned features)

  • See the ROADMAP and CHANGELOG on the repository for planned features and known limitations.

Note on generation: this README_PY.md is generated from this template (README_PY.tpl.md) and the repository README.md examples by the build script. Do not edit the generated README_PY.md directly.

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

fragmentcolor-0.12.2.tar.gz (6.4 MB view details)

Uploaded Source

Built Distributions

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

fragmentcolor-0.12.2-cp314-cp314t-win_arm64.whl (4.1 MB view details)

Uploaded CPython 3.14tWindows ARM64

fragmentcolor-0.12.2-cp314-cp314t-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

fragmentcolor-0.12.2-cp314-cp314t-win32.whl (4.0 MB view details)

Uploaded CPython 3.14tWindows x86

fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fragmentcolor-0.12.2-cp314-cp314t-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

fragmentcolor-0.12.2-cp314-cp314t-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

fragmentcolor-0.12.2-cp39-abi3-win_arm64.whl (4.1 MB view details)

Uploaded CPython 3.9+Windows ARM64

fragmentcolor-0.12.2-cp39-abi3-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.9+Windows x86-64

fragmentcolor-0.12.2-cp39-abi3-win32.whl (4.0 MB view details)

Uploaded CPython 3.9+Windows x86

fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ x86-64

fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.6 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.1 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ i686

fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.6 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

fragmentcolor-0.12.2-cp39-abi3-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

fragmentcolor-0.12.2-cp39-abi3-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

Details for the file fragmentcolor-0.12.2.tar.gz.

File metadata

  • Download URL: fragmentcolor-0.12.2.tar.gz
  • Upload date:
  • Size: 6.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2.tar.gz
Algorithm Hash digest
SHA256 905c8865beadf9bda2d859b55e4debf33cc5d94366c4817a19f31c5a38ad9312
MD5 2ef4a0758fc8f4aca555178344f4beaa
BLAKE2b-256 e18ac3bcb083a0fd7eae9d16aa5dc0b3c5e2be8b34c941fb6e8810d7e97d5d6e

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 43fb915eb25fe4efa5a0f2bba46d685435e8fc058cced52d5e4a1ab27ae2f88c
MD5 a7584d0f198ffd0d5475f2e8753633ec
BLAKE2b-256 06ab9e9cba799d787e710da6f6c3de86f7c6b540ae5e3b89239037750cdf26b7

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5403f3da44e8d0196fdf9739aa1173aa54c15bb5ab08cc7eaf2942f2c4cfead0
MD5 ab788420b6ddc0220a93974d1de070bd
BLAKE2b-256 7790b96d5ce0e1c5e8413586b4ed8fde388944abe0fef747a4dad27e4f81fb34

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 414dec1154553655a05d130454d616c71de28ccac139f12da8dc6c019f91748b
MD5 70acd269eae073ebfa1e19423daf6496
BLAKE2b-256 f14262e92a93608a10d82389699494db232114af807779270f5b50437c28a791

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fbdbd56a18cd940cb617b45ad7e3aa1554d21aa94c1f52c7662b9831f51db17
MD5 980ebb810a9ec51f28bba16bdfb96588
BLAKE2b-256 69c2dd86647f62b16b25c64146b2129cfc49e81f4de9df8cf698eb9d7e06c360

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29e71d3fea3662d8a307418716ca902f58d8b546d9e4da55e1e5ead2243e29b9
MD5 db56ab97b2656431eb51d91a811fcb27
BLAKE2b-256 00b360b2696aafcb3228608ee9ee028e0fe5e0f2e4feb15eb28cefdd7f6c3029

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8cb3ed658e1cd88f2a0279920380f125e01b50a7c1bf3d357832f39061ccf506
MD5 ccb3b8afc4230b94607508c078b2d302
BLAKE2b-256 bb5c171ad699cd1148f7f9d93c5c050cfe963fa321dce7e1315d638a99469922

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f38b9d08658d26bf519be639bb125601b8f9cd8fd79ca71bb9af4366bacead3
MD5 1c22523e421aa723c232ec1006a4a060
BLAKE2b-256 1bceb4169406fa2734d300ab410fb95b6fc5932e3064247bd09f8bf3eaf52c5c

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fc59c5b879ccc7976196b3d5b87f156588ad761f85e2707fd36cc1e56510cd6
MD5 fa0c88577cab3176291a3d4156b0a817
BLAKE2b-256 4020fd961dfdd192bfc1edff02db0a838a77542d2b15b055af8f1cdef06f6a4b

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d93e9a761ad5a031880f4e7148224380168150d4e6501f96d1793a606cdec38
MD5 8e656e3a5f347984908c715296078bc1
BLAKE2b-256 72adbc38ba298ffd493f9589bc58cfdec89fc5b444bcb7c17d24509668368c6a

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a95c55c3965451da03ea4eb4640b62c2ace51fc35bbf0fdcefb8d689fc3d1749
MD5 e7434111bfff1d4e5e4aab3f4600065b
BLAKE2b-256 74857f3baddfa257dfa2ec87d4980d597b97a6ef7406212fd6706807f8cb7db4

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb99c083c05388d46dc8e96885298b65f3d2168c68ac561205a867684ed8d397
MD5 aea704cab16a73b244bb9470d770d471
BLAKE2b-256 86e68fcf0365a8b15fcc1c54337a6f0ee5d215538f65def396d54c083ae9b53f

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ebe8299e6882cedb8a2f8c795dff67eec69c590c366e7ee26438f0892345666
MD5 1c78b9f282a52a8a84805ab30d230254
BLAKE2b-256 45a44322d31c21715ba24dc25a7f3d3f8c78f55a4738b1cb83cfdb3dfb55b68e

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11abad0fa82c681ae0b342f9218de0c57ab5ae72f97d3bc3778431498cf8ccd3
MD5 70521d117cb067e2892719c865bb90d2
BLAKE2b-256 0b6786f91a658f6aceee20872d5435be6fe2d910a0b1b8dbbb41f7e9d2ffc293

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f0340a45f38639d01d77b9a05cc74177f9a499a6f924c8e655827bf99836684
MD5 25ec5c1bc0955c6484d818cca8b6252b
BLAKE2b-256 d852aff232a90d1daa9d55f0dd66cb53cbad2901534570dfdb4b0c160e50a2ae

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de698d96b1e7fd353a51481c055609016cbe4d56c929095c1684779329e861b1
MD5 16459bc24c71a1b8b773756d9c56d6d2
BLAKE2b-256 5590cf6d9f8821e365f2d043bf53f42d6524b6d03d0cc8d989f7ac4798635bec

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-win_arm64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-win_arm64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 7393b31c18247776424a6075bc1e453f12eb17e745cdfa854839382a89b2d72c
MD5 8f7a7568d851ea938c08aa367a585aaf
BLAKE2b-256 0bf353e9e9cd504a6bfc9f7938ab9fc0be0ca39bfde205370ab0373e581ee06e

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 92ceb20ae5e705a7442e7251d23f8b1694c15eda0068aaa26c303ac2d365ed4d
MD5 8a6e3e2855143e825c0fbd1335a28069
BLAKE2b-256 0f997f6b46b6feb99aae4dc0ef9c7e0dbe1855ee3f40c91dc4fc681d7932b956

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-win32.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-win32.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 e2acd2a15c0b13dbb3cd62a47e4ec8b854dfab0b5b356d7d63ba8f689a9bde3b
MD5 0cd124f034937d1cd8fc3428d4768922
BLAKE2b-256 6e7eb1027d74cf3cd04a98e9cd0a69dfff83bfa2d5ca0c19e9008eec2e383400

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ea784dd2d7f3f32bd8dd563d8d9c73f63f18aa9a0a31baaf3183b7281787e4b
MD5 663775ab66236f576acebf82958262bc
BLAKE2b-256 002cf92ea08e1ec710bf1980bfa8fc79e81905b9489a91f7c703774461ac5823

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 288d2999d98b6e4614b35788ee5077808356b1f2a48a8bae68451860db8a834a
MD5 a14c5cf59f65fe5f83dd9a9f81405c38
BLAKE2b-256 dbf210660e469b02f633cf4acebd8beba3867f04db3b61367c5e22839f414be2

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ac3626140bec5bba4824eb10651eda4183af8a7423cf1f808570ec44512d503
MD5 7a0cebf0f6ed633127489e4941b81e89
BLAKE2b-256 2b70992a0b4505b9e96668ce6344c045f9d9f097acd3b842ef3e143fad7dd7e6

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89c92611608d7c142c0f171e7055bc8baa40eab658fbdd65ea2465e20dd716e6
MD5 961a8c198541be6eb4856ad536da5c41
BLAKE2b-256 83933b077d4e4b1ebee08e0a9a53a68dc4a71e7f1f464af7c5a7ca44807e7fe5

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac3c001d6464e6c8d1870e734f3d6f1711caba8720eda23736e4368500aa3325
MD5 32bef76c237b8b41d643c3f272a6b858
BLAKE2b-256 b38b585665c7c9b81546bf4654f02c75cc2197b390ce4d2110c21fa7e4210c7d

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 baee4a70bc6c9791734500ca25ba786a9b7add89727edbd1c3cff6a3246bebf7
MD5 45bfbf9367c1c90e046acac166408e6d
BLAKE2b-256 689289ac38664a54fa6ff48df4de0db8d4d451aa8790dcb39bc393b3d031fde2

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa0936cfcaaf77039a1a13a2d82d3f358be20eaee30635d196e5dc22e2d7a274
MD5 aced9d972b475b41552da1c7c7e661db
BLAKE2b-256 89e065b4c9168ae8656963a171d063b5c09a5e40ba49532f28f659169257142e

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b6946538c90a4f56fc1452894a66a491a74ef30cb2e0eef79896d4fb49bd3a7
MD5 f9950374ddcd1e85fc5b0706cf77c589
BLAKE2b-256 b5a4e59e26ef00722f3b6672c77479ae6e2cb4d257b8d15b6fae9fa8c2c318ac

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4a4f709b670fd58182b83e175135e8e0a3a05784d7f090acea41d7d69a601cc2
MD5 976d18a10515ec4050924c26b3623b48
BLAKE2b-256 b08da53f564394f202271b951f91dfb3ecf68abd957ad052b9d7f7bde317df5a

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab34856c1b326ce2d484453fa650b6421c44f3466124a59c9defd67965ebeb35
MD5 b4facef3a555b2668090a58ecdeefbf5
BLAKE2b-256 6fc53b886c6c3a9751aad2f54948f94ff0c9d984775c3d5e980d78190a11eb1f

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a7110f13eade54b46f5ba39da1126c8876107977d508b0bbf8e47cc58ea6384
MD5 862d574fbe34a1bb1976e626c9a6122c
BLAKE2b-256 633622f4fe0dff26a3a440c2c9c933ad11529fd625b4a6dd38dae6f319deb0ec

See more details on using hashes here.

File details

Details for the file fragmentcolor-0.12.2-cp39-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: fragmentcolor-0.12.2-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fragmentcolor-0.12.2-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc3735c0e919fa0bb39b109a5721d48c75875ae29e6390bd417c537497cac9e4
MD5 8e37dc80fed6022db43f49e9581d45f8
BLAKE2b-256 83c0ef5ea85a765a7cec72f1ec8af2f3cc8f15a9c559e1441cdc5bcc65e57a68

See more details on using hashes here.

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