Skip to main content

Ising Monte Carlo: Metropolis, Gibbs, Wolff, Swendsen-Wang, parallel tempering, Houdayer ICM

Project description

PeaPods

CI PyPI crates.io docs.rs docs License: MIT arXiv

A Python library for simulating Ising spin systems with modern Monte Carlo methods. The core simulation loop is written in Rust (via PyO3) for performance, with a thin Python wrapper for ease of use. Currently focused on spin glass simulation, where the combination of parallel tempering, replica cluster moves, and overlap statistics is of particular interest.

Features

  • Ising ferromagnets and spin glasses on periodic Bravais lattices (hypercubic, triangular, or any custom neighbor offsets)
  • Arbitrary, bimodal (±J), or Gaussian coupling distributions
  • Multiple replicas with overlap statistics for spin glass order parameters

The following algorithms are currently supported:

Quickstart

Run simulations directly from the terminal:

# 2D ferromagnet with cluster updates and parallel tempering
peapods simulate --shape 32 32 --temp-min 1.5 --temp-max 3.0 \
    --n-sweeps 5000 --cluster-interval 1 --pt-interval 1 --n-replicas 2

# 3D spin glass with Houdayer ICM
peapods simulate --shape 8 8 8 --couplings bimodal \
    --temp-min 0.8 --temp-max 1.4 --n-temps 24 --n-sweeps 10000 \
    --pt-interval 1 --overlap-cluster-update-interval 1 --n-replicas 4

# Save full results to .npz
peapods simulate --shape 16 16 --temp-min 1.5 --temp-max 3.0 \
    --n-sweeps 5000 --pt-interval 1 --n-replicas 2 -o results.npz

For full control over geometry and parameters, use the Python API directly:

import numpy as np
from peapods import Ising

# Triangular lattice ferromagnet (T_c = 4/ln(3) ≈ 3.641)
tri = Ising((32, 32), temperatures=np.linspace(3.0, 4.2, 32),
            n_replicas=2, neighbor_offsets=[[1, 0], [0, 1], [1, -1]])
tri.sample(n_sweeps=5000, sweep_mode="metropolis",
           cluster_update_interval=1, pt_interval=1)
print(tri.binder_cumulant)

For a more complete example, check out examples/energy_vs_temperature.py.

Installation

We recommend uv for package management. Bare pip works too (if you don't mind using a worse management tool).

uv venv
source .venv/bin/activate
uv pip install peapods

Pre-built wheels are available for Linux (x86_64, aarch64), macOS (Intel, Apple Silicon), and Windows (x86_64).

Building from source

Requires a Rust toolchain and maturin:

uv pip install maturin numpy
maturin develop --release

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

peapods-0.2.0.tar.gz (225.9 kB view details)

Uploaded Source

Built Distributions

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

peapods-0.2.0-cp313-cp313-win_amd64.whl (425.9 kB view details)

Uploaded CPython 3.13Windows x86-64

peapods-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (656.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

peapods-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

peapods-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (552.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

peapods-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (567.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

peapods-0.2.0-cp312-cp312-win_amd64.whl (426.4 kB view details)

Uploaded CPython 3.12Windows x86-64

peapods-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (656.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

peapods-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

peapods-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (552.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

peapods-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (567.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

peapods-0.2.0-cp311-cp311-win_amd64.whl (426.6 kB view details)

Uploaded CPython 3.11Windows x86-64

peapods-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (657.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

peapods-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (613.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

peapods-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (554.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

peapods-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (570.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

peapods-0.2.0-cp310-cp310-win_amd64.whl (426.4 kB view details)

Uploaded CPython 3.10Windows x86-64

peapods-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (657.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

peapods-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (613.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

peapods-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (555.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

peapods-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (570.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for peapods-0.2.0.tar.gz
Algorithm Hash digest
SHA256 19172887c657b1a844f0bff7fbbf3a98d2d7f4ba04fd46e316b87982648ac131
MD5 a0fa53cd0983bd8b49258768dc86b727
BLAKE2b-256 46fa276db83a49285d00ed7c2e37f7cef372f1bdd38373e2ec70083f13b6fbe4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

  • Download URL: peapods-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 425.9 kB
  • 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 peapods-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 17e222cd1c3b7d829484ee45e8e41170677c64e859682a112d6578dbedb0d665
MD5 b9886ab63586b8a83c3f2f4eda674ae3
BLAKE2b-256 43a31b2602573af95714821cf4d6bcde8ad68a4f4ea91117ef14086a6531e98a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02fc263923d65f4ac30bbb72281908b62ce17ce93fedd3ba46475dabb4a90918
MD5 320e87d23a7927edeff0b4fab6c67f98
BLAKE2b-256 27d8e6228a0bdb84ab3c6cbd1410930ef750be60ed6521046c628ee78d0dfc63

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48841cdbc920c751ef5a6f6db8dc7e1dd186887afa621d71730f2e12910793fd
MD5 b4fc432b58e70752147132cf1756f471
BLAKE2b-256 19dc825bf4b037d2ff26e0a537333765df3b16c7a3823aec40ce161ecf2dfa81

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec48ed5ea90b46326d10751b02000b571d03864d2dd0601392106d23c92ba953
MD5 41d836f08a8b06396859aab46951295f
BLAKE2b-256 dbf9f3aa1e1cc3debdf18038d282d078de55c114a4d686df64e2067a23c0d9aa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a814c9531a6a1a2deb9a4a89fcc1af9f396b7b86c30305df9a9a4b6e85948dd
MD5 61b60d799be67fe89dc4b4a44930efe3
BLAKE2b-256 76498e6d44d8bbb53241514e5c38455123eddc07ed04e50d19bac7dbb2e65e1e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

  • Download URL: peapods-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 426.4 kB
  • 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 peapods-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b9e506c75a0dd3cc97b857198829cd81fc213df5e8545f87e2a7e065c24cf78f
MD5 872966a5f28a22e6d742c136a02d7469
BLAKE2b-256 342782a1dd9e5cc095e1f30056375d32194daf3b2e6db8b7e481ec182f260acb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55ba71d3a54654198ae9d515e9b03531104201580c3d8bbadc64e02c70bb8ab4
MD5 cca58841726daab485a0a48f7305fb8f
BLAKE2b-256 0a8c068a18f71ba469495958bde511d0cda05bdaf623b0a16e84fa1859e1aa89

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d0f9e375ffc4246ebaa7dd1b3d647207f09fce675bf4c855d7bffc5757110b0
MD5 4bce1a7cdd196cee6ffbd853e8ed1838
BLAKE2b-256 e2b8bb36c1abd6d61281efc03c64138ad9d7e63b606caac5eb8a635baf6d3be5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2f577a6d79fbe0cede902efa851ba3be9d15876a2f245a35e4a40cd9a66c5e8
MD5 dc62c64a569cbc2a558ab93286ffed7e
BLAKE2b-256 de902260743c6cf8cb3905c363ec2ad599355aea2b88ea034f41be9764866fe9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85c64095ac5a32245a7c918ab4bd3f9f7e49791379f03338d17a1835f0b1f210
MD5 e0110ec8f650051540e032b3ccea9b26
BLAKE2b-256 7270437569707c5fd902910bf8a4c35c6a77f4b3f8cace06c6525844926c9ff9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

  • Download URL: peapods-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 426.6 kB
  • 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 peapods-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 53ea206e2141e49ce9ed4f7f6a5f3fda4c236c78d72056594d5f1eb398624f6e
MD5 490d3877b8ca64a7e1e6c0e1fdbce963
BLAKE2b-256 37c6947c094e36c22b3d01826a880aeebb888227b660e655c1ee355db78e7ac0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7497ae012c94e6f4376cc9c9b22b6ab5e77fcc9d96e0fd206c5c67da404950ad
MD5 66a52403f3d11815d85cd0fd45a3a8be
BLAKE2b-256 f1e7ae3f2da68a97c82cfe5a8d0dd74e72c9eab46e27416b5acdb33a048f7cbd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0685b31e166f0875cf6007a439c8550ede2ded45c6fc8a5ff8faafa65651c407
MD5 6eb19e384acd61cfee60973c0c29ccf2
BLAKE2b-256 34af02e8facbd88aff910f0867f1f538e9429f741309d39b5aaac60230b104b1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f51e869abb91278e7942626ec8d8ab3efcb32faf680aa4d111b4d06f372b7e4b
MD5 0d67004a1dec179b4f786f8ac7daccaa
BLAKE2b-256 8e23a2451dab6c9677b221832579ace93fbbe0637c4992775edb7ab676ce66a9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5890293989db5857209023e85becaadf54f0803bddcf0aedb56e17737dbfc3a
MD5 c2c4e7a2e510c884f8544ed039998d03
BLAKE2b-256 c4d6cb8957b5030d338bf673ee81c858d63fc0577870c629ac311eeb9b12e4b5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

  • Download URL: peapods-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 426.4 kB
  • 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 peapods-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 05df1dff7be289834bbd6b1b06abf092ad427afa0f92deb219a8af6f5f262b87
MD5 630e28f9e3af29c311ef66831a475135
BLAKE2b-256 5fa794c12c70a7dd9f5ad378446ff4148fa074362a2a5b016231bfdd426d9a7c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09df4352c0826d475b439401af94d5ef0eed8972eccf8c83cfb5d8d5879a23a1
MD5 c7992771233788b1e564a4bbf14f73f9
BLAKE2b-256 76f85fce4c343649c5729bd56d4ff5d0f1407ef3b20169ba442344e2fea4a6fe

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 618109540b2095fce82822b6102d5e1219878e998daf60d68b3763151177671b
MD5 e0c2d3583a1b591763d696f771984410
BLAKE2b-256 47296df685a0298be994a431142e8482776e16f487c67a2fa56662bac0f45426

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b5b415698819feb8e0fdd32ef8e1e109ce790a59dde48e56e98ab33adab6003
MD5 ca8d1900bcbc37c6548fc73bc6766e8f
BLAKE2b-256 b4e43f6ab0e174e41ab8c05059c0fc6bfaf2b50dff843c7cc62259a8266c6e30

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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

File details

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

File metadata

File hashes

Hashes for peapods-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 005d2317986224252f5b0bb3f3e7db80f3c3c45a877b27573018d695635b0bb2
MD5 3f8308ba227678335ebfeab212ce2a89
BLAKE2b-256 6fbbe5528a3ae65eb46d76f8cb9faf6de107b474e94af02190bdadb372d68db8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on PeaBrane/peapods

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