Skip to main content

Python bindings for performance critical parts of pixelator

Project description

pixelator_core_py

Python versions

Python bindings for pixelator-core, exposing Rust implementations of graph statistics and community detection algorithms for fast execution from Python.

Features

  • Compute graph-level statistics.
  • Run community detection with:
    • Fast Label Propagation (FLP)
    • Leiden
    • Hybrid FLP + Leiden flow (run_hybrid_community_detection)

NB: for the sake of memory efficiency, all these bindings read and write the data from and to parquet files.

Requirements

  • Python 3.10+
  • Rust toolchain (for building from source)
  • maturin (installed automatically when using uv)

CI currently builds wheels for Linux, macOS, and Windows across Python 3.10-3.13.

Installation

Option 1: Local development install (recommended in this repo)

cd packages/python_bindings
uv sync --extra dev --no-install-project
uv run maturin develop
uv sync --refresh --extra dev

This builds and installs pixelator_core into your project uv environment.

Option 2: Build a wheel and install it

cd packages/python_bindings
maturin build --release --out dist/
pip install dist/*.whl

Quickstart

from pixelator_core import (
    find_graph_statistics,
    run_label_propagation,
    run_leiden,
    run_hybrid_community_detection,
)

parquet_file = "./edgelist.parquet"

# 1) Inspect the graph
n_nodes, n_edges, n_components, frac_lcc = find_graph_statistics(parquet_file)
print(n_nodes, n_edges, n_components, frac_lcc)

# 2) Run hybrid graph workflow and write filtered edge list
(
    output_file,
    pre_recovery_stats,
    post_flp_stats,
    post_recovery_stats,
) = run_hybrid_community_detection(
    parquet_file=parquet_file,
    resolution=1.0,
    output="./filtered_edge_list.parquet",
    flp_epochs=1,
    randomness=0.1,
    seed=42,
    max_iteration=None,
    multiplet_recovery=True,
)
print("Filtered edge list written to:", output_file)
print("Pre recovery nodes:", pre_recovery_stats.node_count)

Input and Output

  • Input is expected to be an edge-list Parquet file compatible with pixelator-core.
  • run_label_propagation and run_leiden produce node-partition Parquet outputs.
  • run_hybrid_community_detection produces a filtered edge-list Parquet output.
  • Output paths are optional; defaults are used when omitted.

Logging

The module initializes Rust logging via pyo3-log when imported. Configure Python logging in your application to surface logs.

Troubleshooting

  • Build fails with compiler/toolchain errors:
    • Ensure Rust is installed and up to date (rustup update).
  • Bindings not updated after build
    • Reinstall in the active environment with uv run maturin develop --release.
    • Run uv sync --reinstall-package pixelgen-pixelator-core
  • Architecture mismatch (especially on macOS):
    • Ensure Python interpreter architecture matches your target wheel/build.

Development

From the repository root, run Python binding tests with:

bash scripts/test-python-bindings.sh

For a manual build-only flow in packages/python_bindings:

cd packages/python_bindings
uv sync --extra dev --no-install-project
uv run maturin develop
uv sync --refresh --extra dev

License

This package is part of the pixelator-core repository and follows the same license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

pixelgen_pixelator_core-0.1.1-cp313-cp313-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pixelgen_pixelator_core-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pixelgen_pixelator_core-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pixelgen_pixelator_core-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pixelgen_pixelator_core-0.1.1-cp312-cp312-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pixelgen_pixelator_core-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pixelgen_pixelator_core-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pixelgen_pixelator_core-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pixelgen_pixelator_core-0.1.1-cp311-cp311-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pixelgen_pixelator_core-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pixelgen_pixelator_core-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pixelgen_pixelator_core-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pixelgen_pixelator_core-0.1.1-cp310-cp310-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pixelgen_pixelator_core-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pixelgen_pixelator_core-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pixelgen_pixelator_core-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 00ea6fd00fcfa3ffb0c69d203cb168dbba626b3586fa3cc92629f85759fe903b
MD5 d0931a9928c30fb980d7f760ea5e7b5a
BLAKE2b-256 04fd070f791d48f44f79f10299076a35a40f152140efe3ebdb92c558a50e112c

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb8c6cfcde0d1767afe397e9e45e61bb61fa53cea107adf31e246991747de13d
MD5 b423d73197a62451104eb1fe7b23ccca
BLAKE2b-256 b58aaa29503f705f1b266b12a5caf9a8117a8edd5c507ecf17cf07b06bf803cc

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d863d018b79b8f5b5d1acb543d731dbd81aa22b8579a5b39e9fda60003181e32
MD5 c70cd99284a345adac73e23f8500293b
BLAKE2b-256 a50b676a897af69d015b83f21353cac6d0138b0ce7d4ae585dafd56ee340f6dd

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba1104e561de8df9c5de8db75aed81d1d18792714fb610d8b497f54680d7244c
MD5 5dc606d24d468ea7fc035236d10afe27
BLAKE2b-256 eeadd7d846ccc3d3939688f0580acfed774382fb6fb3aecbceaea3980faed8f2

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6574fcbfdf8274706359293f35a719084c9708fe1fec61ca3b27a122a1803111
MD5 2ec0723de919b8163696d151c64ca2c8
BLAKE2b-256 b3dddcacca7433c6160152786ff42725bfa8c8d2fc3ae1aeeea137c4be73c174

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 24bc70997a4d49547cdcc65bc46b401acbc28e6463a9e033e3b5f922abfa1fef
MD5 4d1707d9437b26dfb1d279c907de3e75
BLAKE2b-256 f0bbe6642f680793f5eead9fe8ac89dfc0e68b76e4a0e596b2531e3ca768701f

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be1a14d452038209bea642f240e5ea1385a791cf31ce88d41daeebcc0972f112
MD5 e495f040dc6acd15c847581020bbcfbc
BLAKE2b-256 744ade31e64d70a1ff37932d6ef84387d55e4893a04856953b85bfa169b3e91c

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4beff2e5ee2357190310ec93d5c2e6045a0d0ad6308b3174c76be15d642690c
MD5 e041fb08a25ad2980db4c0bc88b32740
BLAKE2b-256 1154e48f9465001330f51613557d0f447215838ff2c46e76a9b40330b5499fe8

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80518dd45d053739a3736fa956e734f0cb946a55ad460db0d8c2673538d76269
MD5 81a61a2fd0921c9a412bddc6d195aa11
BLAKE2b-256 090022a88a86e04da37faacb39a47833f2fae49485ae6d9cd3bfec4c4112c3e9

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eddc655d3132b76d995acf7b2a685baf57872c3f1527a1ae92644818da86d4fa
MD5 67531e8a4c2c8e2dcc6b6b888d049507
BLAKE2b-256 1d6c7442f87ebeb33f669941f4dbe93451ed660289970ddd151f54c419a4411a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c8cb37b4571c1f7cfc112c8a74d8d8c288372e0e9f4c1d9cf4681f69f6371145
MD5 2aa6dbf974fe0a1796d1af854d12c04e
BLAKE2b-256 615e9606d25d5c3a7a3f274ef10d3fae1030b4c389b44f9182e2f05d3fa6f0e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.1-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8b25ec349e8873aeedb630fb46ff4fd080b7f0d295d8be8cb4b51d93255dbf8
MD5 a77770965125cd49a81934b75bf21145
BLAKE2b-256 5b3b6109d514c50fb706ba3204044a01cd00aa0d9f72a8ec27427da33bd5ade5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 efa14fc2b879b167dbf7bf965930b6a7b9222c69e486a2d7ef09f53a691e196c
MD5 247c5c59d6571f955895a6ba11797cdb
BLAKE2b-256 81e22166873d8d7503c090afc4e17f9e0b3bc61d3d211b3619f9b5b076b6b5f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ca5878b4370d0ca836cd4d0bc504aa6f54109466a0692f7777990b2ae9e300b
MD5 468ebb4dbab7377c90df683856f41f6a
BLAKE2b-256 f0bfa6d55b29fa34b8839115657e34674f1741b12e4671a1b7b3244f254be13b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f73ee1bb2e7b3b4a3f359ab30700e6da11715d81f2d8a5b5a41873e11e6eafd1
MD5 184d6781047c9c30ecea9ca909ad18f7
BLAKE2b-256 75bd6e8a93aa4809f01516ad9b8a4b128021c5ec874fb1fca44302dcea08b7fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5afe3c7d94a688e31649338df7f257a299269087826bc12146b387b7934668c2
MD5 8e313ebdbd00e52da3b261f108e7dfa9
BLAKE2b-256 dd64a9c1f4039c6490e5db9b01e8331371da380b4eae2ca0b54b7547dbec7c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.1-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44a57afff175ee4162512f02d6da587df06b03696e1f0fc31891e1b77c366a7e
MD5 da90444d2931bceee0800b884373c804
BLAKE2b-256 472b2d9d7c6d9a94841f7138402d90ed727ce7994b4fef3006108a3b19067051

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02178380a478d8cb71f9e533616f08b60c499d5e665806b729236ed6a193f44d
MD5 4a064a4ae051e84ce1049b992b3c325d
BLAKE2b-256 94ac532c8013f01ad8ecabc3f65aafdce5c163cba240ccab11f29bf1580d17d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8142c80633733bb95de8e0861dd82a260ac089c7b7cc04bc8b37b51ff7714ee3
MD5 d58900621cd401b5965813f7a94237ab
BLAKE2b-256 6fa14a6dc0cadc45b0609a98ac51911bf6103315c74f057013013136e1b05944

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

File details

Details for the file pixelgen_pixelator_core-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d17620543d6abe6d119f8619abe139e350cbd2cd6d3a015e316df9a20bd32c5
MD5 ac930c130a1c30b6bdf67a1f28290394
BLAKE2b-256 24d91ca99645400bfcf8c387a5730c3708cf5de3a6e7396d4e2c5ad28f7417f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on PixelgenTechnologies/pixelator-core

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page