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 run maturin develop --release

This builds and installs pixelator_core_py into your active Python 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_py 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",
    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 pixelator-core-py
  • Architecture mismatch (especially on macOS):
    • Ensure Python interpreter architecture matches your target wheel/build.

Development

From the repository root, general build commands are documented in the main README.md. For Python bindings specifically:

cd packages/python_bindings
uv run maturin develop --release

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

Uploaded CPython 3.13Windows x86-64

pixelgen_pixelator_core-0.1.0rc1-cp313-cp313-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pixelgen_pixelator_core-0.1.0rc1-cp313-cp313-manylinux_2_28_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pixelgen_pixelator_core-0.1.0rc1-cp313-cp313-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.0rc1-cp313-cp313-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pixelgen_pixelator_core-0.1.0rc1-cp312-cp312-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pixelgen_pixelator_core-0.1.0rc1-cp312-cp312-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pixelgen_pixelator_core-0.1.0rc1-cp312-cp312-manylinux_2_28_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pixelgen_pixelator_core-0.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.0rc1-cp312-cp312-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pixelgen_pixelator_core-0.1.0rc1-cp311-cp311-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pixelgen_pixelator_core-0.1.0rc1-cp311-cp311-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pixelgen_pixelator_core-0.1.0rc1-cp311-cp311-manylinux_2_28_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pixelgen_pixelator_core-0.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.0rc1-cp311-cp311-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pixelgen_pixelator_core-0.1.0rc1-cp310-cp310-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pixelgen_pixelator_core-0.1.0rc1-cp310-cp310-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pixelgen_pixelator_core-0.1.0rc1-cp310-cp310-manylinux_2_28_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pixelgen_pixelator_core-0.1.0rc1-cp310-cp310-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.0rc1-cp310-cp310-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file pixelgen_pixelator_core-0.1.0rc1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 722ff13dd680076f11f27dbcca35436739150d605992e99fdcfa59c837d09573
MD5 ec9d84b799d2b5be85dcdb7024cd4235
BLAKE2b-256 29eefee2026812228a1d3efb4a4153d239c17cb114312af648745440287b307e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad09abdd3283b85a25f86751c3bd5e8b02795c2b3e3d1cb7a8a11b52ccb01e2e
MD5 29378a2ff7d5f811590026c5a087fbcf
BLAKE2b-256 06bdc66e0dc7bd90ce3c16bfae93603b388a4c3ac38e36fa1d6bba099c2be12f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f4bec450c46634901aef76b6d3d49fb31cb89ea3a09234b18af3788ba482b10
MD5 fd674fb62d052f43bc614053332c5ea5
BLAKE2b-256 c16cad091af3737cf6ce02c2d2c4a36a1fc0d7b0b9f9c1b819a43efc262a5cf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca608bfcf2f74e5e4eda830b960d364a963410ba6c5a443d525224ef6e969941
MD5 0a86eca2ab19c5d92f5c17d516780d8b
BLAKE2b-256 e1a0b9efba65e99ac6e8326f9efeee96601c70f16162c4bac409a62588135597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f4c748abab8dfaa8955d256bfb4d7f523cb9a4e0ae3cf58390081ff0cf4f8550
MD5 6d37c1114d5df57943b31cabc2b5fd11
BLAKE2b-256 c5a4c47a5848e0de50ed09778514c9878159553023f3dc08576e1ace03da6382

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 55cffa5d617b512d7070e3f125c6befb37b6d7a8fe37dfb321a2591fcb54c820
MD5 c8b72ce6f3d3b2592f04de29a87baf40
BLAKE2b-256 a9beab119f34090adcd6341f330ae7cc7ad5d9a72496e733bdfb2e2585b32398

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a4464660ad24ed58ed5e03dfc2cde3f3e70eccdc37bf5eedc425ae1d9d565bc8
MD5 5af946dc526ac8b6a0840afefcca9e17
BLAKE2b-256 f5ca606f02bdbcaf40a9c6bc7058c116fc0d23d8da8562abeedca3b734a3348a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a08cd5cc82ef30d2393c8099bb7fa354e9e714ce7aa15a103285c158a1b1fef8
MD5 90ee15c2c276a583946ad589111d0cba
BLAKE2b-256 7841fa40c13617e948fd3fe04c0135c66f2b37ba681c280acdbc53f93b5d1636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d58377a6b71cf46b978777b91d44c5b3b9abdd807172ccf45f0b476b27f5faad
MD5 92d07d1376aeafdef131a83f2df3f9b0
BLAKE2b-256 97931ad4d4d5ba55249e92433e5e451b64581a3ba3ce6fc80869bbf220b7bf02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 22cf4b832b59a4e86441ef6516e43247e364554353590eb42038a97039a9eaf1
MD5 06907abd0096207a63ad693534ad1c08
BLAKE2b-256 77c466fcb1b8dad4976548cf418d38478a76cf4484e8cb6f4ab9deb4369f4266

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 365dded8f209c1676f0bddf6d384031f7f7f82d30283ae6190a08a971f31751c
MD5 d9a588d41c0bbe14f5d4de92d0aa6e1f
BLAKE2b-256 9da12c363db954ae77d043a67d6119ce096954d1b53ac5016e10c9a8a32bfc70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c5f36060835d2787d76fa2539b223a5f96792979a55e4a04a96017eb80d355e
MD5 7b80df233c71c89507438363e2c360cc
BLAKE2b-256 f26b7fbad862e33e84df3cd558de5e77b64b0d5a897878d49b278221f8c0ef9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58ffa08d17d98e869f0adc7fc9899c5f702d11a8acc72bb1a80239d5aad7438f
MD5 afc046fba97f4f4c78130901a448ef4d
BLAKE2b-256 a04d11ccee16b93dd45f068298349fd2a299c4a53ce80a6c436a823d85b98450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a398c849cab71edb7a7fbe8e243d2f7d376178fdef2889a6baa66f14d5d910d2
MD5 ae1062e768dfadd70b0de3af0681aa47
BLAKE2b-256 ad0a0c624f23b8189a94059f3e51f4a1b4ea2687964112fc124a2f527b75abb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2af379cd98f04fe46f267c30d87cfb47975fc10049c37b0855f4a33e66aeafa5
MD5 ea1997a498e18341b291a626e8b37fc0
BLAKE2b-256 c77ed8adcc3ac20cc4e7a5c4c8c47e75aa473b104687d4fd14f5c4075b362f0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dc17f900e72560fa4e9178837aa006778f33e363c17f4c6eb6e631920f5e2ba9
MD5 01ab86dcaca0781eb1314dbf22529d7a
BLAKE2b-256 22016f565a87ca52929d44791444a340e8d3e3f21280d64edefdee69209e5db0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7360817e40dce85579c24a574c2b42c93812300edbfdcc6b066934eb8d4eb643
MD5 8080d7561a688f1323899608eff692e8
BLAKE2b-256 c6a926ca534db93162b411b8fa1ac5c7f03283253b35d43e6e166c786f386a57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ddc9827a86ceeaeb0afe852fb50260870d27f69c72825f33ffc60fbb7c2b4674
MD5 f2367b18670240e5b8665c32e80e3b57
BLAKE2b-256 8bebd048ff79e79fb65c98f9b7ee77e45255eaa64d1114366605553c23db8d8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5440054c19a24b5a8c568f31a8821642a682d5741fca171d92339d7134d997c2
MD5 79efc6318f1de3aae95a9e6d09d32bbc
BLAKE2b-256 9b70d462a12c91210a9edc8ecc36fa85afdc31c2bbf42acb769d125550d8ae56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72525121f6ee7b0be3a65ce0d97ad915f0c5a029485ad772828a971c10fd0051
MD5 7a14250f2ca451dceb39c4015b28dc6b
BLAKE2b-256 2322b02efe8b949577fc76a872ff23cee30c9475b23ad264d7d13b5c33c760d2

See more details on using hashes here.

Provenance

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