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.3.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.3-cp314-cp314t-win_arm64.whl (4.2 MB view details)

Uploaded CPython 3.14tWindows ARM64

fragmentcolor-0.12.3-cp314-cp314t-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

fragmentcolor-0.12.3-cp314-cp314t-win32.whl (4.1 MB view details)

Uploaded CPython 3.14tWindows x86

fragmentcolor-0.12.3-cp314-cp314t-musllinux_1_2_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fragmentcolor-0.12.3-cp314-cp314t-musllinux_1_2_i686.whl (5.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fragmentcolor-0.12.3-cp314-cp314t-musllinux_1_2_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

fragmentcolor-0.12.3-cp314-cp314t-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fragmentcolor-0.12.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

fragmentcolor-0.12.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

fragmentcolor-0.12.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

fragmentcolor-0.12.3-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

fragmentcolor-0.12.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fragmentcolor-0.12.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fragmentcolor-0.12.3-cp314-cp314t-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

fragmentcolor-0.12.3-cp314-cp314t-macosx_10_12_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

fragmentcolor-0.12.3-cp39-abi3-win_arm64.whl (4.3 MB view details)

Uploaded CPython 3.9+Windows ARM64

fragmentcolor-0.12.3-cp39-abi3-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.9+Windows x86-64

fragmentcolor-0.12.3-cp39-abi3-win32.whl (4.2 MB view details)

Uploaded CPython 3.9+Windows x86

fragmentcolor-0.12.3-cp39-abi3-musllinux_1_2_x86_64.whl (5.1 MB view details)

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

fragmentcolor-0.12.3-cp39-abi3-musllinux_1_2_i686.whl (5.2 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

fragmentcolor-0.12.3-cp39-abi3-musllinux_1_2_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

fragmentcolor-0.12.3-cp39-abi3-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

fragmentcolor-0.12.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

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

fragmentcolor-0.12.3-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

fragmentcolor-0.12.3-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

fragmentcolor-0.12.3-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ i686

fragmentcolor-0.12.3-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

fragmentcolor-0.12.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

fragmentcolor-0.12.3-cp39-abi3-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

fragmentcolor-0.12.3-cp39-abi3-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3.tar.gz
  • Upload date:
  • Size: 6.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3.tar.gz
Algorithm Hash digest
SHA256 9db9ae8f4aece7758c199f4d8b086590ec7e7a7500a68ed6a73036b60eea2030
MD5 d798160316d890e2ebdb1d4eddc23791
BLAKE2b-256 5cb6691a27de573c38b98bd8e02e33c9e538920de430638ca096fa50cb34cfb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 55e8ff0e966ab398122bc5ab9afe1d23ebcaf9478f73cbc2ee59575404d04495
MD5 89331f2120fdecc712034f42880d0506
BLAKE2b-256 d86e7376b25fc6835f740ef499f5c99d2fec99b0c0d255454d11cb8acdf591ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 faab4111fceafb43dfccc80e8cb4d24c3e2bddf518f243c4b9a5c029a74e0143
MD5 b4480ec8e1773cef8cbb7651dc296940
BLAKE2b-256 9b8403c4c5c5cbc16417c993464f40f09d8ade702331feb239c3793630691368

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6fc5f511b1dbcd2ffae467a50b8c6987bf855b0711c52433b31d1932e84159de
MD5 a5cd5ff3c5c8f9147e9940bb4e18f13e
BLAKE2b-256 4da0a672cad0ae2d8fd5f90b75c9463139e0a3675af9d5ad5f5a5145b1349f87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b0945f669f77a3f02acc82ebd39e499252a1c89c333021a861443f2b790f5ec
MD5 5aab4af498cd5b13827606144fcaa68e
BLAKE2b-256 427703d76cdcdf793ac6eb659b8590bf3c74d597faa502142d8bad71772fb204

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fce89a77c94c754923bc7d739b536c4cc3f521623cb454ad00ecc1c7b42490c6
MD5 16cac77b4fd6c3e21c42e160962b405b
BLAKE2b-256 5a038bf612d331971e59a33cd47b1452800f655d8384ad7f13a4e844fc4f0542

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1493c8bf5ad8879091f9a54845d5b019033380a3bc99b7bf6c7a588a1311e342
MD5 ac2014f733357472ea52af8bb4228ea5
BLAKE2b-256 da3d223bec5866e5765f2db562e31b1cb694e8f0d41326378e3fed67fbc6908e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06f58649a3cfc41926f3fba7630f2273140e04b29aad2713e2d618f61d89906f
MD5 f8ff940785242af49839bf6025e3c8c4
BLAKE2b-256 d85572e2781409f8330787028c084c978ad926489bb1df959056424280d41ef6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c64522f51e5c85ca7617892e7e2bfcbf1103d31fa7373221a394b9bcbcb6875
MD5 345a121ff93de84897e51f6bd1d26742
BLAKE2b-256 1c2ee0677ac11e6a9ea0d242e828052ca1ef8304b08d858f1dc41aeba4240405

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5af3e2a319b62b94de69d4b9f6ab1832459283ef813d645baf8db06897dd64d5
MD5 240d114d4cc85ea5d5e7110759e40926
BLAKE2b-256 a1b2e068f050fcc9b86adaef68a6c93491c4006c58cc8a0e501622095d281b16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 edfc3a6c4d771e25f11402084514ad1dda91fd8b4da61e61973db28ee354cfc3
MD5 6e9768f98ee2a6e09dc6ee5b86e40f0a
BLAKE2b-256 4911a5f2b45fa55b69171b2ce6bd900631bb697048d3596d32844876a168645c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e434ea51666d9d8308312868ac32da1b0bbf57eefe57fdb2fccfae770f345195
MD5 a7cd5c6ff9939fb05f6147d01136b28a
BLAKE2b-256 790c1488af864b7ff117fca14964e4998f0ff9d858f0ed05174a5528c33755ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d44f3692a8b5d9e5b58500a5481521cddbcca4580799300ddb30588ea3ee7249
MD5 385a4564dee8040156bd5fa523502c3f
BLAKE2b-256 94a8f2736a07135062f9160e4045a1717a096db178028201279889b3070893a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af5c8813490466b32af7f17cbce51ec75b135f454883c0e29d621a6c9c4b96d9
MD5 e1864ea7e2fd816da50b203f8d7d634e
BLAKE2b-256 90d62ec418d634495791c457effdcf397d563f84b138e9acd3d7fa99fa856c5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8ec5dcdc2bdcec3900f868e5418b65a109184214c127c241147f64674d85c4d
MD5 080262c8315977175fc546f69d3d55f2
BLAKE2b-256 f9406e120c1711479f923d064801ad0de4b749d3a303fd9eb7a291236dbb478a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f954fd957bbd23179b9fbfa7a89f5475a020076237cd546d8d01668eddbc1339
MD5 383628d2b4ef75005d1a76e7752327a3
BLAKE2b-256 7b860b8db748fbd53fd0373804f7db5ee69cc157de588e83f79390a2770dd8ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-win_arm64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 b2c5c1e43432d895f37b33c8d67b68ef97630bf82c5be99153e098768a9adf3e
MD5 2c6925bc918cefc99652783664961980
BLAKE2b-256 cba82ac92017f5bcf87ff67eb887b97efeb09fa538edfa79dd8ed10bdadcbd24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 51d6bb434da0c5acee4a44bfd5eff1c1e160e5b2ea73975134ddbc2ec552e1e9
MD5 722829b02c2f4ce3ba7137ee8acf561a
BLAKE2b-256 896efd439dc8d5d69302b6faccff84b11e1211446acfb46bf5821b67f652cfc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-win32.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.9+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 14eb9c3c27b2d08f194fad4f86ce7240f3417017ea3dbcc5dccc7c898b48b73e
MD5 5e3e7da1e5fb80a34ea39cf38b9ea28c
BLAKE2b-256 4366c3ffebc354ddd88ff121aa4db5ff106e941fa3b74e15d19a7592d7c07581

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e523ba720a0c605bed6855a3cd42e5cb24a946b77c8cf67ec2506112e393f115
MD5 15b2d2832e1fbb0dfd7998afce10a17e
BLAKE2b-256 990b05350d790cd1ae663536915f04d6a9389ec05ee57d0661e19dac3c5d79b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e1c946ae5fa22887679def4f36b52ec3d3e0b5d9d908c7511fbe0630241bbc3
MD5 c555ae7f0bd3953ea72c83c50a5bef8c
BLAKE2b-256 a435d2534cf6cd16986b53b01ffeb824c42e57e2efaed9dd08261d7f9cb2eb6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d021d301b855ead76b81cae1aa8f7102f5611e2e80eaa92011d3639c2172d28
MD5 cb733e362f81f59d659a795da034455c
BLAKE2b-256 7346ce7fa7efa37d1016e503f2178508ed374481090ed73cc7f0199d0240c490

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b9afb83dad465dedbda9a6803578c92671315d94fdbbf011d65faba600f92f3
MD5 3c57f765056b18c7c0d3896aa0d7d5c1
BLAKE2b-256 357d7b6a57c468ff5a195a40dc7a1dfd0c19b1ffca537dba9000769d83f0b2c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7107146734c1a72a36ec5a66f246717bb601d0b6ffc46e418e6c8444441ead80
MD5 232bd29283e6d6aaa602c01af1caed2c
BLAKE2b-256 f5d79efbcbc4f7018e02d2c191b69f7dd33d70e2ddd2bc66c54e8e29fe8dea18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20bbc8b617c76befb8c5a5e5891a1d3b9271b8a3ba58585813a000236e3ad852
MD5 23a796c36070947ed4ed075a0772295e
BLAKE2b-256 87fb26e8a8a97bc98390ba4132c506fa192139f2f8f370d1cf790329aff2392c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6136f2bd18dfc09b810e1692f5cf63807346b7295e59b8193fa92520883e2f2f
MD5 32ff962f42dd4cb77e09bda35b3263fc
BLAKE2b-256 8853d790ff43a1ac9d5542f4b8773458378f11e359d06d72ba9fec112c75f692

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c1878ebe7d5a4caf2a1ee9287fa35cd3ac093d041ea30dfa970d2eb2c7be69d
MD5 57b405ed3d254efac3818f3716a738df
BLAKE2b-256 c269edbed2ac025a70a8e8b3ef9ee93a448e7a48987750de879deb6e3516647d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd72b6d077862b58c0a61d15e5110d90858dd15d4c9eadef0e5963545c4338fd
MD5 efe9e22b67b314ab5d8070ed086439e1
BLAKE2b-256 4914caf351da51dde1b4e5f8587ae35745664dedf583f51adb0a94c12bcfc006

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a134be616ce9b379dc4aef21b6dc51d7566c68d0b970c677a3ff5930c57c6f2
MD5 1a4645143112f5830f76aa6dbfa0bf96
BLAKE2b-256 2c9087a8374b4d9e528242e8b5599bf83f64c605bc5fec9deb4b3bb97e133b54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea97a08169d54772d7f80453b6a61ef8ff8c6229bf5b2fd16af18cc6a58a72b8
MD5 ee89b3a64f23db51367431ed75a03458
BLAKE2b-256 397b63b47297f04f63719ecfca8c15f8ae36b58e08f5f969a98ae03aa2010d83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.12.3-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.3-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b8458caed8e0699e80ea49d30a440f25fb5c1d43b0d0c5549259e808a8f9791
MD5 9d422ff7512444850c56bc9ec760ff2a
BLAKE2b-256 5f2d1e706a7b30587bd6a721605cc17f7c10385356cdf1ed762ba93cbc60e491

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