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

Uploaded CPython 3.13Windows x86-64

pixelgen_pixelator_core-0.1.0rc3-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.0rc3-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.0rc3-cp313-cp313-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.0rc3-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.0rc3-cp312-cp312-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pixelgen_pixelator_core-0.1.0rc3-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.0rc3-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.0rc3-cp312-cp312-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.0rc3-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.0rc3-cp311-cp311-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pixelgen_pixelator_core-0.1.0rc3-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.0rc3-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.0rc3-cp311-cp311-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.0rc3-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.0rc3-cp310-cp310-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pixelgen_pixelator_core-0.1.0rc3-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.0rc3-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.0rc3-cp310-cp310-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pixelgen_pixelator_core-0.1.0rc3-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.0rc3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f8c2adafef6965b353dfda55713472fa71d1c890701e30f2cdfaaa7c96bf2bc5
MD5 eacc90de62a121dd9ba26a5ce2446858
BLAKE2b-256 bb2773a6ed0c0d07f7b4087d4a57ed2a770ca13367c721c58c513f56171d7177

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0cc4ae9f36bd1fb8754d6d74c3f1ac73f7c4ff1a0fba7877ab5a88bc8be7dad
MD5 ea8d794a27f9a36db5060cecb97da79b
BLAKE2b-256 4a6678e5b050caeafb2bc6bae8ffaa01bd870263549562683a6b1a01f91966c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6dce16044b803698b0099a614a4f17f8343d7ea79f9bb0617029539cc783ec89
MD5 157b47a548f040eeff006ba394734bd0
BLAKE2b-256 0fcaf8f408132413a57557df36ec48182892dbd4a58eed0df857a86553177481

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c015c5ad98df2fc72a5ec0d08fbde3b0487e5be985fef0906f72717563651349
MD5 90c885b3cf720029c610721c4110e148
BLAKE2b-256 f55c01e23b6b2dfeaa3037d084e16266f8bbf258113c8b4fd70aab62d88fb5bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a4f402804509f19e78aace87e0f767d3e8c4634445c2eea61d5ee4b041c7918
MD5 90bce33f224e57475dc5cfa732ec8ed2
BLAKE2b-256 ed7fb4c7349a7c05dae80484a5cc9b05708456cc9536eae69736ea8093f8cdd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8341c0864e3b32e98685474a2cc79a3e75fc6fee7f7cd73bcde5c52b01596a9d
MD5 44e1a28a5d596bb543a0ebe89e54efc5
BLAKE2b-256 850c65ccbe7e219af5c45375ae876fc697088e95566bc68196c3fcb3daaf7b97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e549e7d2cd1f1982ddfb421174b166a70ae1cb9d5ea11d3ca130e6fb649e862
MD5 526fee5583afaf65a631b84b8a2fa36b
BLAKE2b-256 f515ee0b9779c5cf7b7c5632acec2da1177a99452c62fdf3a7145d3a0f190abf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b669e2eb1596c9c62c4cb97119aa5bdffac004cf86b2b369b4a456b7448b1e78
MD5 5a7a7bb103ba48ec203c16587c14989d
BLAKE2b-256 e0c27d82b800eb3859708fb882f311882dd61bfc511825c202c8001902084ecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b68bb5f107398f0ac84492734dea1230390c98f287cab957443d39757a617f31
MD5 6231f8e37ec1a24aaa05c99ff4924359
BLAKE2b-256 35027a2109f69bad54fa69bf5e1ef648ec13a831e2b9239a94187b7b280a2107

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 852ea570e9422f22f77217d1f59b30cf7b9c795793db1df8cb222854dbee02d9
MD5 8f3f250fd8cd5e5791b33a553ada1c9e
BLAKE2b-256 8ae83d579979a55e0760e229d1622386d1b36c4ecc40f83fcc0c01a4f96a8805

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cb31fa8c2786c2a0d15d3d99551c147e1aa0b0c9ae9864b63170eb5f9db565e1
MD5 a49e3fce36f4915b502321ae03f1e34b
BLAKE2b-256 cb584af137471e821ab33ae42b1b3f7dfe6db54d2632d65c3f73fedfaff6e50a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23bee6b34b8258641062fc1fdf6d3b4937316a0b55219a4f73005ad5c448e0fd
MD5 de2c0a49219bf835cb5a18b1b920d3b2
BLAKE2b-256 fb6011cfa1bb0171ef71b3b42d1483751f9da953d281caf1d302554722416947

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e4cfb635ccfd3ef5a26f3996c384b8a2b3af8ce0aa7f30d53110ca15dffaa36
MD5 ce3e4bd6f1151e8420b7063a364d9de1
BLAKE2b-256 5da56726ce8c8d9bc8091f6350aa0dfa2460de07b0764dd7a3bca01f4b00748a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 786cadc3f749950b68d90aa436b3684303d1b022f054bdfc9a2595edae386e59
MD5 2849483c1d3f4bd177ec2c8a623231d5
BLAKE2b-256 1297d275b8bd2390a58c44debc1ab6e4a32fca948796c24027040023e05c331b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a5ba2239018d7f63ee02268b0ed819b6c06c04fa201f1f6fb6bd680b0f0351d9
MD5 84f5d2ffaf321af53612f30ca11a6aca
BLAKE2b-256 3182b58f2e24afa6cd0d8034cb7feb2583ae74485d507454fafd40f79c1f7432

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 87611974fba942d3608578858c57f20fb2135ee6209dc2abf47544acc0f89f60
MD5 9247d6d2b2de3b44d835e1d6c4f33f6e
BLAKE2b-256 04b32dda7019b36fbb859fffbf6982076876d296b915203d3499ab37c7dee95e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50f104589dd852f8a4c92fea21162dc445224eb99980888185fe6aedb714feb5
MD5 cfee052e75d691312a9c6b779c344e9e
BLAKE2b-256 dc2474a413a3dfd3f5add03f9bac407ee308b3f3225463a432db9eff5e2eae0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04dfcbabae5b7304d61c8cc49decf9910e49af04cfc43d154da43aef2445e1f1
MD5 0b15e01deff921d6a7bcc7bcda3afc46
BLAKE2b-256 d4cfc3b4a7ba6caf6733664720eddd37bb02f8c1da3e8604535a2a1c77e44a73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55f55240dda9c29a268f7a884eee7eee2b524319483758648c76f5c171ec7f0e
MD5 4c93eaaab530ec3b97944783b741dc8f
BLAKE2b-256 35c7a2c0f235660207ca9bfa9d77acef861dcf778eed0480116240dd271947ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59353d26d7a0b728d23cd6ddd996212f006f41d85eece39dcd4ea6a0bc9593fe
MD5 cae7b5057c546b954924d97a2e658fa3
BLAKE2b-256 06665d64bc59c86f30f08a74651c930d0cf39fd9b11a4940b30fb8d2e4b63cbe

See more details on using hashes here.

Provenance

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