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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d9a3c2596ba82bb2f7c87190c72d5062c1c28c07536efa657d8075f89878439a
MD5 92d2154fc6008aff63eb341124412596
BLAKE2b-256 460215d8792914d1ed57fc467a1270ee19aa8ce2ec8412bc591ad88013a41da8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 682579774a5265c498e304826c8e8fbb073b89822b67f6c54823fc40010c77e0
MD5 69d9aa66bbf4c27c66412b5fd1745d34
BLAKE2b-256 ee39d14927738d9b7c4f568058656b62160441b77946e0b306bbc2a41b3a8e77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c42ee6c5b861afed12328a5e0dde6b9805242ee605b5bdd2f371ac6e0dadc1bf
MD5 5c09f89ec468dd1c691d771b8506d38b
BLAKE2b-256 7709397db64c39ec474828a9b19d9dc164669713b4ed9dd5e8f6035a686fea35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bd4ba3f9d83e7c168c30cf146fc775a068c6f02fb5fc508cf58a750367db6e9
MD5 8701a94b3ec736049efcc46cba67d9b5
BLAKE2b-256 948fecf82a48ac3f9d2ca8c785a3d279a0714d69226fd70df88f9eb0898869c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1619e823b0ec55c888f99f47ba8d300d7af8107e35bd31819135a7553ffca9af
MD5 569945e363a83ff0ebca39d65cf2bcf9
BLAKE2b-256 2a9efd1eb71f37f6be439d6814d83b272fd2b493e41efc541292cdf59bdc84b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 05b7b46672e2ed2c0eb170e995c60a54bce0b40bc83bbda21da2548a5ec8544a
MD5 7f14963db1920e0eedb15caa40bb6bca
BLAKE2b-256 ccd34213b4919f8ff47882c07005dcb1565047317ab97eaa21198465f65b8dcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ccb90ac5dd6a020ee82f77965fd93e7c58fd69692cff682f2a298f265f87a66b
MD5 b8f26d74533147428ca17f3ce77f5362
BLAKE2b-256 5401b4b197bd5c6b35aefcc2370ea99719632df03e905ae0d7a1184f795437ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ec4842b2217c25784257b5e041dfbc2894b27e88d2268223509ea5cbe236cdb
MD5 fcf7401d47c26e42f4f37916729fc675
BLAKE2b-256 5fe964af1e21186da2195f7717c4bc5df480fce5c8fc3651f85b2dc1cd886ac2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db913c3357279238b62a423103e4ca91ae00e146ab525be136a47ad5bf9f0fc6
MD5 87ddb28e676c2fb9c1027d16d47e2739
BLAKE2b-256 dcdd8962c77a0d9f1275e474af4be11af6e4bb7fca64b435a8454bf71d2a4bad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae0ed1ede351828b86a12e1a24424ec7d2c500411f703b565947cfec2333a7ac
MD5 9e05a6db36974766bf0df804b673c839
BLAKE2b-256 54e537819b3c276e0cf1fae6a1e517c5c59631e826dc8f5113223ad859567218

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ebe20e617c8ebdba9b8d2151c76ea9d81cb1042e9eb48bd1a34390c80518015f
MD5 075aad34ee82c4ddef3bc144ac6136ac
BLAKE2b-256 84a03f028579f8088129db0f91ce542c338b1cc283d00c625a10908cd1dbb6b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 125e6ee26d86b539e8b92e379626a7f8b002631bf2ffe8b2a62ba1d0eec9c473
MD5 610a0987a2f62fd2d27744905c93615b
BLAKE2b-256 3046bfa9a45ec3fcb37d510af1071cc6472f40a902446eed66f4dc1d7e346400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 081eb3b72f374436d86864e879c9b5b3408be1e9957d9a6e3d4421cc09045809
MD5 ae2a2daca93ab0de55bd60969053868f
BLAKE2b-256 a626ac02a439d69ad176233ab0af67b22e1f031c6c66f2ff696391aa5bc43d19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dfc56efd7e245ec18d7ec9cf3726fed4862241ea9c1ee315e51ad1c0294c6e3
MD5 26d9806e2755e1e073d76f513d3da011
BLAKE2b-256 c8c426d5f84b85748f912605b51174e93381973a7d7278ad285499313a1cc9fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 060b06d5dc9516c5b1397e5c78e90a57b78a22ce02ca941bd19683017932999e
MD5 391d72c7cf7afc3ad5a7884dd9699575
BLAKE2b-256 0f56d9b1ce7637a181bee390df307138a912af29e3dbb2636997e8d60b10cf3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d2305478f2b611dcd236af774d2dac3dd9d1715691e94768bf2feb2dedbaa4cd
MD5 5d580e90e1fb96d0031255d9ca57aaca
BLAKE2b-256 448312e385aeb85135a268245d3f6e9d49cabb2ed5308a525375e8e7025d5ace

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be251880a1349749efd5fbbb1ce478b39ea29b250dceb9fbfd39001cec3700e4
MD5 099a2d1afb3f16e8e8eac96851dbb181
BLAKE2b-256 e029cf1b7b15ab41c02a4e06fee0f8ece77bf8c97e7585e98bea25a496614455

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c461becfd63b861630c15e60a25bcf8493546acd274b4cc33a33b8c911789bbe
MD5 9b9a0bf8381073411151adec3748ebb7
BLAKE2b-256 67c0f3ff5d8ed62a8c86baccf93e6638ada72a40eee2024c51882fe9946e565c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce68758ec169ac4a60756ef12852b5ef69b941689427e0da15277865ad5db4a9
MD5 f42de398705ce33448b9f89f7f6b3be8
BLAKE2b-256 2adfcfeb4fe73ec6400be71d3a62634c9082bc161e7f4fe00878902f9d256308

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pixelgen_pixelator_core-0.1.0rc2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d01fa6d77927910b0f80c9faeeb91f4b28819c003005fe4f7393358a5d3b5f1
MD5 eaa081c6f7413b9712f58ef4f94674cc
BLAKE2b-256 1f7b3ff372d18c5953c30f1c578974c5fd7134734a2aff05940b7ae007f6d0e3

See more details on using hashes here.

Provenance

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