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.11.1.tar.gz (1.1 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.11.1-cp314-cp314t-win_arm64.whl (3.6 MB view details)

Uploaded CPython 3.14tWindows ARM64

fragmentcolor-0.11.1-cp314-cp314t-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.14tWindows x86-64

fragmentcolor-0.11.1-cp314-cp314t-win32.whl (3.5 MB view details)

Uploaded CPython 3.14tWindows x86

fragmentcolor-0.11.1-cp314-cp314t-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fragmentcolor-0.11.1-cp314-cp314t-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

fragmentcolor-0.11.1-cp314-cp314t-musllinux_1_2_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

fragmentcolor-0.11.1-cp314-cp314t-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fragmentcolor-0.11.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

fragmentcolor-0.11.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

fragmentcolor-0.11.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

fragmentcolor-0.11.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

fragmentcolor-0.11.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fragmentcolor-0.11.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fragmentcolor-0.11.1-cp314-cp314t-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

fragmentcolor-0.11.1-cp314-cp314t-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

fragmentcolor-0.11.1-cp39-abi3-win_arm64.whl (3.6 MB view details)

Uploaded CPython 3.9+Windows ARM64

fragmentcolor-0.11.1-cp39-abi3-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.9+Windows x86-64

fragmentcolor-0.11.1-cp39-abi3-win32.whl (3.5 MB view details)

Uploaded CPython 3.9+Windows x86

fragmentcolor-0.11.1-cp39-abi3-musllinux_1_2_x86_64.whl (4.3 MB view details)

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

fragmentcolor-0.11.1-cp39-abi3-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

fragmentcolor-0.11.1-cp39-abi3-musllinux_1_2_armv7l.whl (4.3 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

fragmentcolor-0.11.1-cp39-abi3-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

fragmentcolor-0.11.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

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

fragmentcolor-0.11.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.0 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

fragmentcolor-0.11.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.5 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

fragmentcolor-0.11.1-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ i686

fragmentcolor-0.11.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.0 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

fragmentcolor-0.11.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

fragmentcolor-0.11.1-cp39-abi3-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

fragmentcolor-0.11.1-cp39-abi3-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1.tar.gz
Algorithm Hash digest
SHA256 595f750345256ee1b83a8dd5336e767c09a514dcd0f5ceec12d40f74242e74e3
MD5 8f40669d51a8b76bccf34b0a6291b9f6
BLAKE2b-256 da3c9212c6a86df1a69ad9581dacc38fecc5122b5a90697bce0d979104de4871

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f6cf9f5ca5328175e14ccb37193d6fb6a4c9bee89ae1045a5de037866c05394f
MD5 6fcad9eb00c5e17be6ccac435e89e3dd
BLAKE2b-256 d491bfb2e00266c9a5689cad8c35b9a77303dfb1a4896fe8753c5f1d57901e16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 46c5339103ab1a3b35f8b74f5fa1801e7e1c69ffd07b16b6a2e0a47f0083f816
MD5 7bd3fc90f997756365162d471582abaa
BLAKE2b-256 4ea13b78f8899f92ddcecc8890806a8e004dcfb55efd462753183df556de4cd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 983553c74af2981cde88f9f66e0b7f82dae42e1e0fabdea543311147a9b31e28
MD5 97fe5b0c595b0bb2783677ae3eccf34a
BLAKE2b-256 e35fffb389ff27685ae6a2705498550f7178e2e3cc5ed80df74a0caf35e0722f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 937009fcac61c3245dbcc1a5d5acd2792c7717b5571b72b86829825d27489de8
MD5 926cde1c0795220c8271c6cdf72a53f6
BLAKE2b-256 7f4e97f6e7b77351b22bb3ff0bda11ddb5392610d411924951f5e0eeec0def72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 760e00525d1e37dbd9dfe0a083d92aa5156f761ca6f4ca0fa041ac618cf11fb6
MD5 244b876582d93ab81d80dee1b3a44d74
BLAKE2b-256 faa802e6dfe4d944471d146fcd63a0699c0cc65e2516cae458d04009420150b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d715f740e52f1404b8c7c63230f50108db89bc338b4e591ad3f5bf24507f40fe
MD5 970f191de7932eebcbcbbdd900a9e4fa
BLAKE2b-256 3b1c9e051d5f0a02719f1c1e98a11fd31880cc7a2c3afca3685e918d49708fef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74aa6242233a2de5f9e07b0c7e1360a5f368a6d65f7a51cab117933cab0ba225
MD5 bad109828cbf91bce2b193cda9aad714
BLAKE2b-256 6abddb17553b23936d5dcaf20c0c786896aec8ffac0398f3fbdb23522c793318

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2439a22021aec461137acb95133a40f2329af28e4bcd620b73bb9f2010e57d32
MD5 9de7146d4a0e5bc5a36c3cdabb30ebee
BLAKE2b-256 c528804717c16766ec8425f17ecb34d13f87d6fa5ad4620bf02e28554842387a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82c90b4a471deb20ee761fdf002d5823c47f6dc6a614f515fc3a7a23fa4a10f8
MD5 b529613c2320d62a2118625313661267
BLAKE2b-256 b89376cd1d9406dd0f345fddd9923e10c5ab07d021883c8cde74aee3835d30d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e6e306285120fb48aa0a09b9c0270ccc7724d3cc276fed43e91481a946dfcb7
MD5 691f1a1051e56c1edffa2e449d93fabc
BLAKE2b-256 d531c8fa689528a9b2f77714c4612bd077f637c005dae668a1d99342b586b190

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1babce3f1e8a17d9d402a877a46e7ac8b68132a6c1967f99db4763a9c615d0a3
MD5 8d010de876c46fe8a927faec345a7da0
BLAKE2b-256 e2fa7618fd037b6e23a8a98f235e21845208361573a8dd0d471283b4b0dd627f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7458cbd4625d10d5a1df09ec698f85a7684fcb595b0956455cb3153675a990e
MD5 476862431f687206bd7a3aa0beabae90
BLAKE2b-256 88d206d14a20a99121d9a6d4a09e9b6d1c49d37ae1ed130b1d40285033e574d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f959f383c3405497ddd4de35e584dbbb7ec4091557349257626a58ce8508082f
MD5 7f03a9542d5f0eec0d05fffcc4bb2193
BLAKE2b-256 a8688bb638c63e177aabfe468b9efd4b50b15bbf8133c789c9374d2e075952a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b97a669eea9c9ede87acdc29f98236111c75341a72f3a2c297a95773b1c8ae0
MD5 bd51da5ecd9d2a239a53cc2237d22886
BLAKE2b-256 19f4e5ecec599b74eae308f42e817e44fbc3efa647908c61e99370483c9b1b1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b1017fe203df55f11b391543ef8a5149163eb333f58fc44b50a0840924dfc7ba
MD5 78732d8f65ec0e8b9d3cc7798e636314
BLAKE2b-256 7f438d7eac21ddef880437d3f18e0e0e8c01fca6c3d003234e21226c144dc662

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-win_arm64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.9+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 57a9f00a57c6b39b24ea81e723d4b79a980a49948e908eafdb8ae4f533a8d5c8
MD5 ed63a95f7ed298863984c93c91f7d4f2
BLAKE2b-256 90c8a7a39eae99bdeafb1b411db450e217d832c187698f4e9e5656bcd0bc2b6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 3f7bc15f87337da08e46c98abeb0e7f072fb017f2f2cc1839cdc45163d8b9193
MD5 009ba5a7dce0d8b0a25fc11ba7dabc50
BLAKE2b-256 bcacfa8cec555de5fd44caeb6d766951f6405ec3e92b657e9eecf2b1041b5ef7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-win32.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.9+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 3aabab09cf337332ec74b544d71c464a392f0cd7e4d056d562cf7b4139c584b5
MD5 60426e45b4887a3d9aecaf47bd00286e
BLAKE2b-256 2ef3ef567bc566453e2561c042d74b73fae502d16c5ea691fc40872ddca6b590

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5879f045e8dd3627ff2d99f4a662491cabd6b3f9bc5ab785ebb81a36f782c95e
MD5 108675edea1690eb2be8c562b57d5b5e
BLAKE2b-256 b2bd33d1fd05adae4340b4ca0b7550ab2a99ad3ad27e4df926303033b5811054

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ddf31e943f361d6e5eadaa31c5c8fd5f63db47d7422532587a0e9f0453229528
MD5 e725a9ab850aaee674838c318726dc80
BLAKE2b-256 a6f9927007e8315cd31bb1415a9d105c2755eddcf1a87a5db8b9e7346e7c7dd8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3053d3f440b22a5e622ed186f7d0e5508356736394d31908f5f46cf50d585684
MD5 011e949f8bce0b474284deb59205348b
BLAKE2b-256 028ab6bf22bb99f3f08d6a3b28686b96f358e4e4210a2474f538131a69e0d5ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d28cba6fbde2add716a8a9c9380be34ce55b90293003ea20177a0ee6581a8931
MD5 a41862262a90008b6043cafa5ca3fc0c
BLAKE2b-256 83a0ac6219039cc6e4d60289b9905134dadcf9fc0657f4abe6754b21340ea78c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 154706b2c5321a87425f0faed75c01f490de551d9c0bf38bd1c6f8d496644257
MD5 26371119632d9c5f1b9fee8d9fed2c94
BLAKE2b-256 d552bdbe8d2db089c00b8a9a12b8584d176f72660211da2013ac2715d8e80b3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc60003edbae5f221437835b588ce47fea9dbbd13fb1fc723551d179249f5d21
MD5 d414a483ecc95522266a9742f4704eee
BLAKE2b-256 af74641d506ffadc0b3adcb85dc5d8760cd115dd49c8bae7c15a6353fd7b399d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73cd3044c4fb7f3b8d3d8175b042aa69d41ee99554910ff7b763012888863728
MD5 ef874061dd3f9488e203ac701ca0151d
BLAKE2b-256 f5a3b2b0b9ff994ae870500ab130c7c6c875f0ee5ebd5e504a667db3115c7ac5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a254f59914a9b4a046a31d5e0cf5789129c0c0293ad42c3d274a5820258d12c8
MD5 ea6e470e6884c0eb24780aac15e2fb40
BLAKE2b-256 9ccf89bda23d5a6265e88952a23ebd95f00189065d0925fff77f76c481716d75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f96bb9b13a337782d06c914eba0d289c215b65e2bbb54e11c387f8784b5a3ec
MD5 cfa854a44ad439abf526eb3d041d1f96
BLAKE2b-256 cb31c0fb265c1e0c1e56f2c30b5b3cdf61a4c00c5c89e7c7582160a1d5446c97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b084ac4c73e380e908a6a7e29f18ed04d9f86f00d203d8af331dc1a9436a957e
MD5 25c73afe1c222cdb5ef7b2d93c6b8d6e
BLAKE2b-256 e1242fd3c025c7f1cd276cbf3934891cd1e3a516d88afd7ce20e3d01c62b1e82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2144077eddfedb79d74aea16d5c46fb3fcf594ffd713e924b67c8ee686a574a0
MD5 4ed4210ec44c6ad30691e1a869510c3e
BLAKE2b-256 06c841cdcb5fa6e34bd28627334440810e7ef9f0a713bb0717871a92f861fd72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fragmentcolor-0.11.1-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.11.1-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3adde6a95c41a3a261a3c9af2833b495b02ece47d9c091d3b16c16ccba1beda2
MD5 3d690d7a1cb1e089fe9c9c9b5b3ac63f
BLAKE2b-256 8acd82657b9574a46772122275d7fa47551674b91562d99ebd1858fe3c7ae31f

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