Skip to main content

Python bindings for the imgal image processing and algorithm library.

Project description

pyimgal

The pyimgal package provides the Python bindings for the imgal image algorithm and processing library. Visit imgal.org for more information.

Installation

pyimgal from PyPI

You can install the pyimgal package from PyPI with:

pip install pyimgal

The pyimgal package supports the following architectures for Python 3.9, 3.10, 3.11, 3.12, and 3.13:

Operating System Architecture
Linux amd64, aarch64
macOS intel, arm64
Windows amd64

Alternatively, you can install pyimagal from source by building the imgal_python repository. See the next section for instructions.

Build pyimgal from source

To build the pyimgal Python package from source, use the maturin build tool (this requires the Rust toolchain to build the imgal core library). If you're using uv to manage your Python virtual environments (venv) add maturin to your environment and run the maturin develop --release command in the imgal_python directory of the imgal repository with your selected venv activated:

$ source ~/path/to/myenv/.venv/bin/activate
$ (myenv) cd imgal_python
$ maturin develop --release

Alternatively, if you're using conda or mamba you can do the following:

$ cd imgal_python
$ mamba activate myenv
(myenv) $ mamba install maturin
...
(myenv) $ maturin develop --release

This will install pyimgal in the currently active Python environment.

Usage

Using pyimgal

Once imgal_python has been installed in a compatible Python environment, imgal will be available to import. The example below demonstrates how to obtain a colocalization z-score (i.e. colocalization and anti-colocalization strength) using the Spatially Adaptive Colocalization Analysis (SACA) framework. The two number values after the channels are threshold values for channels a and b respectively.

Note: This example assumes you have 3D data (row, col, ch) to perform colocalization analysis and the tifffile package in your environment.

import imgal.colocalization as coloc
from tifffile import imread

# load some data
image = imread("path/to/data.tif")

# slice channels to perform colocalization analysis
ch_a = image[:, :, 0]
ch_b = image[:, :, 1]

# compute colocalization z-score with SACA 2D
zscore = coloc.saca_2d(ch_a, ch_b, 525, 400)

# apply Bonferroni correction and compute significant pixel mask
mask = coloc.saca_significance_mask(z_score)

Documentation

Each function in imgal is documented and published on docs.rs.

License

Imgal is a dual-licensed project with your choice of:

Project details


Download files

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

Source Distribution

pyimgal-0.2.0.tar.gz (63.8 kB view details)

Uploaded Source

Built Distributions

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

pyimgal-0.2.0-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

pyimgal-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyimgal-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyimgal-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyimgal-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyimgal-0.2.0-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pyimgal-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyimgal-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyimgal-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyimgal-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyimgal-0.2.0-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

pyimgal-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyimgal-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyimgal-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyimgal-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyimgal-0.2.0-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

pyimgal-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyimgal-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyimgal-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyimgal-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pyimgal-0.2.0-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

pyimgal-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyimgal-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyimgal-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyimgal-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file pyimgal-0.2.0.tar.gz.

File metadata

  • Download URL: pyimgal-0.2.0.tar.gz
  • Upload date:
  • Size: 63.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyimgal-0.2.0.tar.gz
Algorithm Hash digest
SHA256 91704adc3bd99eee4fc4866c5554811ed0288ad9c17d651c690053f729617fc1
MD5 6ed6cfb2dff81db16bbd86b8e01cb268
BLAKE2b-256 6da266e5ee8a3cc4a47b2d94bc6e1137485a436b355ef595470a4cab7df073cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0.tar.gz:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyimgal-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyimgal-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3125722e0fd909721e95e83d4aeca015d489b6d01df79a56f8c76e08ef44d925
MD5 624f14bfa5e6ba4c6857ef6f6655716c
BLAKE2b-256 5227100c3d9a63ea5c10f654d70052c06ac3ddd6d04a704f7dba8a20ee5a76b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 444349da36cce95ffb1e839424be40128e12b6873bb04b7dac9cef5cbfabe3a7
MD5 0adf1f83730a1aaf135a5c3dccce12e7
BLAKE2b-256 11cf6f145f3781aa22b93941c01947f09776a74aea625f33d6c22bc1bd550cb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed407918e0f95342a00a404710938f77db3df731aac0894340611010e383835d
MD5 3c6a7a1aaa24c55378f70651cf677369
BLAKE2b-256 162110fcab1499a46a2952b67d00edf321613cf7ffaa2799799d2153463ab7dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e2cad78bbcf4748544064d0f5c22df99f6444d40e85bf157afdde939264d5a5
MD5 95ea317a9b55daf01d7f37be0fdae2b0
BLAKE2b-256 2fd067b6988947f9ea459a884868f3a14fe7b0502b88b750e6a33d0e8f0d4a5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c86d580fcbe43f979390ae078bd08d6bb001e19b6e096440fc99da04b0ab91b2
MD5 3f76cc1b2c77994d4cd041eabc7f4830
BLAKE2b-256 9f0118dcd03e8ceab349e0316934b25f725c40aff331b0dfe516551248eb9b4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyimgal-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyimgal-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 72f7450c7f1ed479f4742aa8aaaf10a01b6893fd847c7f576c708191d9603366
MD5 f368f6a32360ceb4000afe1829f612cb
BLAKE2b-256 c7c6daa733c54cb0a306583fb9a455578816545ac0567be3069547329c9b53ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44803da20106e4aaa239a0469beaf7512c119f05a993bd1d1c091f5f92dae79e
MD5 0f9d78a45934d12c6ba697a3baa1a670
BLAKE2b-256 aa2802536e7a1ea8793f19500832587731faf05bb0687e749aba71d5dab22d02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4907520c55098051376a19f78ae699f3d8392708b22fbfbc4a6e6e005b413cf3
MD5 7689fb8032386f9f93447dc3c36b6ecd
BLAKE2b-256 285298830a2b858c0f480637500d0f7fd2e7256b440626ec71cafdaaa0cf4b68

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ad12a0665814b3dbb92a3ad1753aeedb553cdf8ec4883914d64001fde7626e8
MD5 5747cb2615b7a2a57f622ba15200cb77
BLAKE2b-256 c1227c5535825df36ce4f9454cb1705ef857fdcb1c7d73c023e92025d6f0b970

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94461089937296fd7c08ca1a5f7f930fd6c0121e1bf7cf6ad3f50cda79bda0bd
MD5 ef38de7698392f03a3511bf7c9586bec
BLAKE2b-256 f5451c8353a9ddaae88101426297e72f439bb2fdb590da677443175ee2b8c924

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyimgal-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyimgal-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8ff1671410ff237af6f2eea9d13c531a8c350434d1a01811b31c7194ce52170
MD5 ac91a460f458d8af0ecfbffcdd18a772
BLAKE2b-256 b7039fef32bf84703b4fcfa6e6b8505621affe444026344a73aae587ba4c25bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4937ef9fd1987f720cb0154b76e819e81d0aa14d48cb3063e2c3b4a3d1fdaafd
MD5 5a3d8f097abf9f699e3ae98aefe8e832
BLAKE2b-256 aa9ec75365090ecc0d0d3d66bed1a34a8ee3819d26de1939350b4eecde32d3f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6db4bc02aa6f707a03a5c084e2ebfe8c06797e65a085f624de7bcd4c8958cd90
MD5 1832bd04b817d125fbe8355a0052ab7a
BLAKE2b-256 7a59176f343b42bb6b318796aa2cbd67c00e0281a6f734ff32e292e73d0ea3dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa60cb593498eeec5f31b475d7f251ff57a7b6752950f721e37252dd2e31d8c5
MD5 88e61f58cffd5eeba207689fb4fd4fd8
BLAKE2b-256 84500c793bed58f7d0cf19fb17fce0889ca450b67ee75d76f468259df7318a9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e687f562d8f0dd8cd29cea68e6d1c67675f921893d0cb3dc5f21f819724d867
MD5 926170f1c4bfea48963b1970de4bf519
BLAKE2b-256 df11062f686d5f72b9aac78c70722394bf57f94d5c4a53cb8f414ff832a4ebbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyimgal-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyimgal-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5206567513e1d5d987eae47117609d076a1c35542a708006fb08cf0393d1d3ad
MD5 da0c966126b13f228c5b9f45a854643b
BLAKE2b-256 562b8bc50843611861e895bf47c60bf99da2f39c345bc2592c52e6adbc923238

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e19842c5a6942725da5a4675833f7fccff6399951370cdc9e3b8956c9218b5f
MD5 80662cfc77538c3d2170deef1306fd4a
BLAKE2b-256 7407fea937d380b596fa3c7278a5736ca4519209f550eaff64867a4eb2424274

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7110d9e0914f4161eebe279998e2fa066e546a7c0e7af0c67beb9425a8b966f2
MD5 cdff7de6e86d215fb3130da2fa5efc97
BLAKE2b-256 300c057e57f8260fe15193bcf0f0fe64d62197690484ff9756ae6e6574a9fb31

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ef76dae400ee28a3b12f671893aae108590202ccd78e4c91c7c8bfd50963df7
MD5 4cf64704c133bf726fc2855a65509349
BLAKE2b-256 f9d08477b746d94eab1412c0d984a76373e19079b59e5451c7a47fc1d7a59ff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8764027062e77c24abdbaf469fe6fa64a76536cd86a8bd6d4ac79ba9973dd3ee
MD5 575e1abb12fda50861be7cd45a8b8e46
BLAKE2b-256 4136e1a09ddaf1b7104a3c0dea39f67b64b9dae2990e6d2636927cceb6e7f04f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyimgal-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyimgal-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5699b603d572eac19092bff92da6d3aeac503a4c96a9d5ddfd8b01b909fbd397
MD5 d561fe40a0664ecbac829523a6e1c2e2
BLAKE2b-256 1d157f376638777704276df417184c55513881b48c5374bec5cdc09f3263a08d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp39-cp39-win_amd64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c0d177dc35b809c1f5ea9578dfd02c01c9b4e2a54b85335e5e46da8d1a2d165
MD5 c1744cf4a39793986f548a1440685b70
BLAKE2b-256 010066d2a5bad5ec8a574b822c499ff8f251d57772c755bee3c65f2ad0841a9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ec8a0f3e9d5431345155a8d9d417f84a05db7e1fcb261367060b82ab2daed88
MD5 d66b855be55812c5ddaf1a655462319a
BLAKE2b-256 c65f1eb55564953b8c4d4d675eb9fe50d0e206802bfe6f9917f6c286e10c9165

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ca00057e5a3ce4c8c894279416379e08e07d449ee7f24ae7ee887355a62baed
MD5 a27d9fe0deaf8b30ff3e044dae2a370c
BLAKE2b-256 b9e6358e4799e93b911cebdd9d51365baf1c28dc12791fcd3ea576e4cd36e911

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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

File details

Details for the file pyimgal-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyimgal-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b762e80e06cee87309bcc09263a5532301e66ec76d544a9c62be7dbd021979e
MD5 1f666e64cfd3707ef61ba7fe7cf2cf0e
BLAKE2b-256 bab3f678bf163957db89eaecf66c65a658dc2e7104eb39a74e2ad9884c6c3b23

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyimgal-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: release-pypi.yml on imgal-sc/imgal

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