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.2rc1-cp313-cp313-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pixelgen_pixelator_core-0.1.2rc1-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.2rc1-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.2rc1-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp312-cp312-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pixelgen_pixelator_core-0.1.2rc1-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.2rc1-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.2rc1-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp311-cp311-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pixelgen_pixelator_core-0.1.2rc1-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.2rc1-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.2rc1-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp310-cp310-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pixelgen_pixelator_core-0.1.2rc1-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.2rc1-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.2rc1-cp310-cp310-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d4419e25fc8f76a591d8ed4a9a0d171c6071cb7f5210dab3f50b3e5221b3a09b
MD5 9eb00dc4862d8a7f1fb80cff03ec8d39
BLAKE2b-256 80806f3c3bc300799bd8750ac2fa6c59771220ffdbcee5420f19f38d291133bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 458e6f137cb1b20d8b5f152d394ebf3d2e188bbd56a2b4d38e91ff6e9ab84a87
MD5 33da1737a33c47c9d16fa098dec6a7c6
BLAKE2b-256 89060c093e9611fea50fd33c1bc1ed210c0c3823abec836a5060c7e354928149

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ceac86a08cddaad2d380455cef151bcd379e0e2e208fcdd3c3700cc38a524e1
MD5 131ce6520112d30bf1632d7e151c1a87
BLAKE2b-256 fecc096e30f36ffd02b1e6a3a521dabcd9e284094699c8754c80d4657e15dc4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2f3588b349e4dc9299c96089559fbb4aa1101a864c382a361b69e242642345c
MD5 16cb51ddadaa3cdf866280d7df44af7a
BLAKE2b-256 fe876f9a2e1a7e6023f6d4afa765ff6a7c893d8a9bc4543f083934733c3ac690

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 666b11ee3e1dc1a579e1f24bcfdbc2cede1e2df2a25360da4b3743ebc262ca4f
MD5 9318290183fb4a4c50cf43008bf5167f
BLAKE2b-256 7f4902767595eb6f35999235766684be79a00bc4a7d48eb702f08cdd27f70b59

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 90cf6d82e56571ba264abbfaa3eb877e7a11a8d58569c5ccba56ecd2e72c5446
MD5 7c62f29ad1e966a7ee79c4c9cdd7a14e
BLAKE2b-256 569d39f2a70feda415d25f09a20f4ab592aa066ecb33e655915be24d96288e73

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bde06dceee15c3f17cb45dcbe79c83de7eb6851189b6d841c38be913ec6caa9f
MD5 1273a7e08505c886ad5de270e99cc4a4
BLAKE2b-256 a80ae39ee2c32c2f7742dbbdbf1c5bd86ccc4b4725145a9def7bf2cdb9915d49

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9cad6a4c85a44b516bcdc05c96b25b815df56e82b57b7809ee1374b348e4553
MD5 27cf332b7ec53d09b76b7f32f27f99a0
BLAKE2b-256 a6e8f5d1c86fda1d540d133df4156ef9c3c51ddb96ccaa10cc0f5d0f3aef7161

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 263edaa0b70f0dc9540105cc02cb05c4e5ba590bb46efeac0cf5d3e91f45c4d5
MD5 c99007b619a635f8ed13e27a934a961f
BLAKE2b-256 58bcf0a089d365eaeb289cb62eb9511d3bc60db9f2ecde99982a6105f52c8fc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dfcb495e6348e14e303c7efef8b33368004495d6f25c1ed226ce630dea04f2ad
MD5 aec3019cd02c2f446ea5bc658338aee7
BLAKE2b-256 a4176ee83774c18105bb6979dc8e0472cb2ad9a5f64cd395cd10f67f238a3627

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0fe9fb056ab9bb2249783a48af73bac01bb552f68a0a7bda3ad2032d7b7525f0
MD5 221ae0d93e9aae0795b00f36af353b14
BLAKE2b-256 b31d1516b1bef6b1b3b94c17c8e42953d6dd2e718b2fed197bac146320ba29d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb432381434e57ea25578ba7885a84da490658bcfc08fd8a449ac91880ae6682
MD5 0c5bfac0a14a30327878739f29a10215
BLAKE2b-256 e03f1452c74bcde3f80804bdd89c5ebee5f3a09f7d722ef77aaa2b36554b095b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d1dfc8966bfd4c58989b6d6d41ef0194ae024f3521b96b99c5b5b5b355b9e9b2
MD5 8ed9829d3a119d002abaf840be60ccd3
BLAKE2b-256 f53b6cf3225df4a26e00a116b0e0feb5ec99c54aa365b34441e54d97e6ca7bb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91dea2ca5d0661da4997dfc1711382f9a46c97ce8996e129eaa55b67aadc563d
MD5 3825656f7e40a8521b919397a317e889
BLAKE2b-256 df4d96c23865919376bfddf9539d4421b13354b151f7766502967ebcf8a9ad29

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c4a869acf485722dac8daffb61a8d8643acb000e9dcb049a9c413b0cb03662c
MD5 83bd301675cc261434960859853cf7a9
BLAKE2b-256 e2f9b3518deb4b1e4670654f22ae8d8ae302281578c7dfb094f8e2ae023b1ccd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 87c848c42b604a94e655e99c16518d6dcf6fa2204bc65d9ab31e114b462ce20a
MD5 da4e2976402dec1911408543c3b03cb7
BLAKE2b-256 3f771c83054c3ad8513094b23ad47929b11a3d6f650aa107aedcb5365d5b87d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ca3660a1a0fe407cdcc971e50f49ec0f5e8bf93eeb8094ddfbeecb2941f15b5
MD5 6be05164e32e6ad40d924f2e91caaf86
BLAKE2b-256 145dbc6be71954dcc7b8a8f88c88cebb9dd1883f0e4c9cba0423e765f08fc083

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b372840144c9bae09513e21d40331ee2191635160f7b267db0fe20633abd6fa
MD5 0809c3a76fe3a56a0c2b9f62d1fc488f
BLAKE2b-256 ebc28da11076a833a8d2d24e46b6c8906e194927de3e1a25f523038375ff846e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 140ea20463d5fc201e41695f6d64c3268e8025ab985be4ba0e2d5eb4fc2e161f
MD5 e7a9feab4e2b6ffad64de0019f2429d1
BLAKE2b-256 9c3fbd35410e52883326afee1a101e8cb28ac5b1579a4f6078aff05f174c9932

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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.2rc1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.2rc1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ae0f6d3c2eb51b8b84c3d165e1889ef2046c5daa5ee8ee2001a40c09f7d3948
MD5 90744eeaf4a981c172189cf12e86fa95
BLAKE2b-256 3b0ea2b0ce061dac4e00d28df75e221a6c42bf0a2339843a6922c8ac2bc0e4cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pixelgen_pixelator_core-0.1.2rc1-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