Ising Monte Carlo: Metropolis, Gibbs, Wolff, Swendsen-Wang, parallel tempering, Houdayer ICM
Project description
PeaPods
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:
- Single-spin flips (Metropolis and Gibbs sampling)
- Swendsen-Wang cluster updates
- Wolff cluster updates
- Parallel tempering
- Houdayer isoenergetic cluster move (replica cluster move for spin glasses)
- Jörg move (stochastic overlap cluster move)
- CMR move (Chayes-Machta-Redner blue-bond overlap cluster move)
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19172887c657b1a844f0bff7fbbf3a98d2d7f4ba04fd46e316b87982648ac131
|
|
| MD5 |
a0fa53cd0983bd8b49258768dc86b727
|
|
| BLAKE2b-256 |
46fa276db83a49285d00ed7c2e37f7cef372f1bdd38373e2ec70083f13b6fbe4
|
Provenance
The following attestation bundles were made for peapods-0.2.0.tar.gz:
Publisher:
release.yml on PeaBrane/peapods
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0.tar.gz -
Subject digest:
19172887c657b1a844f0bff7fbbf3a98d2d7f4ba04fd46e316b87982648ac131 - Sigstore transparency entry: 1107000204
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17e222cd1c3b7d829484ee45e8e41170677c64e859682a112d6578dbedb0d665
|
|
| MD5 |
b9886ab63586b8a83c3f2f4eda674ae3
|
|
| BLAKE2b-256 |
43a31b2602573af95714821cf4d6bcde8ad68a4f4ea91117ef14086a6531e98a
|
Provenance
The following attestation bundles were made for peapods-0.2.0-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on PeaBrane/peapods
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp313-cp313-win_amd64.whl -
Subject digest:
17e222cd1c3b7d829484ee45e8e41170677c64e859682a112d6578dbedb0d665 - Sigstore transparency entry: 1107000220
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: peapods-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 656.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02fc263923d65f4ac30bbb72281908b62ce17ce93fedd3ba46475dabb4a90918
|
|
| MD5 |
320e87d23a7927edeff0b4fab6c67f98
|
|
| BLAKE2b-256 |
27d8e6228a0bdb84ab3c6cbd1410930ef750be60ed6521046c628ee78d0dfc63
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
02fc263923d65f4ac30bbb72281908b62ce17ce93fedd3ba46475dabb4a90918 - Sigstore transparency entry: 1107000226
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: peapods-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 612.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48841cdbc920c751ef5a6f6db8dc7e1dd186887afa621d71730f2e12910793fd
|
|
| MD5 |
b4fc432b58e70752147132cf1756f471
|
|
| BLAKE2b-256 |
19dc825bf4b037d2ff26e0a537333765df3b16c7a3823aec40ce161ecf2dfa81
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
48841cdbc920c751ef5a6f6db8dc7e1dd186887afa621d71730f2e12910793fd - Sigstore transparency entry: 1107000212
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: peapods-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 552.6 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec48ed5ea90b46326d10751b02000b571d03864d2dd0601392106d23c92ba953
|
|
| MD5 |
41d836f08a8b06396859aab46951295f
|
|
| BLAKE2b-256 |
dbf9f3aa1e1cc3debdf18038d282d078de55c114a4d686df64e2067a23c0d9aa
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
ec48ed5ea90b46326d10751b02000b571d03864d2dd0601392106d23c92ba953 - Sigstore transparency entry: 1107000246
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: peapods-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 567.2 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a814c9531a6a1a2deb9a4a89fcc1af9f396b7b86c30305df9a9a4b6e85948dd
|
|
| MD5 |
61b60d799be67fe89dc4b4a44930efe3
|
|
| BLAKE2b-256 |
76498e6d44d8bbb53241514e5c38455123eddc07ed04e50d19bac7dbb2e65e1e
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
6a814c9531a6a1a2deb9a4a89fcc1af9f396b7b86c30305df9a9a4b6e85948dd - Sigstore transparency entry: 1107000209
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9e506c75a0dd3cc97b857198829cd81fc213df5e8545f87e2a7e065c24cf78f
|
|
| MD5 |
872966a5f28a22e6d742c136a02d7469
|
|
| BLAKE2b-256 |
342782a1dd9e5cc095e1f30056375d32194daf3b2e6db8b7e481ec182f260acb
|
Provenance
The following attestation bundles were made for peapods-0.2.0-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on PeaBrane/peapods
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp312-cp312-win_amd64.whl -
Subject digest:
b9e506c75a0dd3cc97b857198829cd81fc213df5e8545f87e2a7e065c24cf78f - Sigstore transparency entry: 1107000222
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: peapods-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 656.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55ba71d3a54654198ae9d515e9b03531104201580c3d8bbadc64e02c70bb8ab4
|
|
| MD5 |
cca58841726daab485a0a48f7305fb8f
|
|
| BLAKE2b-256 |
0a8c068a18f71ba469495958bde511d0cda05bdaf623b0a16e84fa1859e1aa89
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
55ba71d3a54654198ae9d515e9b03531104201580c3d8bbadc64e02c70bb8ab4 - Sigstore transparency entry: 1107000213
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: peapods-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 612.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d0f9e375ffc4246ebaa7dd1b3d647207f09fce675bf4c855d7bffc5757110b0
|
|
| MD5 |
4bce1a7cdd196cee6ffbd853e8ed1838
|
|
| BLAKE2b-256 |
e2b8bb36c1abd6d61281efc03c64138ad9d7e63b606caac5eb8a635baf6d3be5
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
1d0f9e375ffc4246ebaa7dd1b3d647207f09fce675bf4c855d7bffc5757110b0 - Sigstore transparency entry: 1107000230
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: peapods-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 552.6 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2f577a6d79fbe0cede902efa851ba3be9d15876a2f245a35e4a40cd9a66c5e8
|
|
| MD5 |
dc62c64a569cbc2a558ab93286ffed7e
|
|
| BLAKE2b-256 |
de902260743c6cf8cb3905c363ec2ad599355aea2b88ea034f41be9764866fe9
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
f2f577a6d79fbe0cede902efa851ba3be9d15876a2f245a35e4a40cd9a66c5e8 - Sigstore transparency entry: 1107000241
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: peapods-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 567.3 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85c64095ac5a32245a7c918ab4bd3f9f7e49791379f03338d17a1835f0b1f210
|
|
| MD5 |
e0110ec8f650051540e032b3ccea9b26
|
|
| BLAKE2b-256 |
7270437569707c5fd902910bf8a4c35c6a77f4b3f8cace06c6525844926c9ff9
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
85c64095ac5a32245a7c918ab4bd3f9f7e49791379f03338d17a1835f0b1f210 - Sigstore transparency entry: 1107000250
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53ea206e2141e49ce9ed4f7f6a5f3fda4c236c78d72056594d5f1eb398624f6e
|
|
| MD5 |
490d3877b8ca64a7e1e6c0e1fdbce963
|
|
| BLAKE2b-256 |
37c6947c094e36c22b3d01826a880aeebb888227b660e655c1ee355db78e7ac0
|
Provenance
The following attestation bundles were made for peapods-0.2.0-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on PeaBrane/peapods
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp311-cp311-win_amd64.whl -
Subject digest:
53ea206e2141e49ce9ed4f7f6a5f3fda4c236c78d72056594d5f1eb398624f6e - Sigstore transparency entry: 1107000238
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: peapods-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 657.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7497ae012c94e6f4376cc9c9b22b6ab5e77fcc9d96e0fd206c5c67da404950ad
|
|
| MD5 |
66a52403f3d11815d85cd0fd45a3a8be
|
|
| BLAKE2b-256 |
f1e7ae3f2da68a97c82cfe5a8d0dd74e72c9eab46e27416b5acdb33a048f7cbd
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
7497ae012c94e6f4376cc9c9b22b6ab5e77fcc9d96e0fd206c5c67da404950ad - Sigstore transparency entry: 1107000229
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: peapods-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 613.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0685b31e166f0875cf6007a439c8550ede2ded45c6fc8a5ff8faafa65651c407
|
|
| MD5 |
6eb19e384acd61cfee60973c0c29ccf2
|
|
| BLAKE2b-256 |
34af02e8facbd88aff910f0867f1f538e9429f741309d39b5aaac60230b104b1
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
0685b31e166f0875cf6007a439c8550ede2ded45c6fc8a5ff8faafa65651c407 - Sigstore transparency entry: 1107000240
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: peapods-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 554.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f51e869abb91278e7942626ec8d8ab3efcb32faf680aa4d111b4d06f372b7e4b
|
|
| MD5 |
0d67004a1dec179b4f786f8ac7daccaa
|
|
| BLAKE2b-256 |
8e23a2451dab6c9677b221832579ace93fbbe0637c4992775edb7ab676ce66a9
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
f51e869abb91278e7942626ec8d8ab3efcb32faf680aa4d111b4d06f372b7e4b - Sigstore transparency entry: 1107000254
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: peapods-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 570.6 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5890293989db5857209023e85becaadf54f0803bddcf0aedb56e17737dbfc3a
|
|
| MD5 |
c2c4e7a2e510c884f8544ed039998d03
|
|
| BLAKE2b-256 |
c4d6cb8957b5030d338bf673ee81c858d63fc0577870c629ac311eeb9b12e4b5
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
c5890293989db5857209023e85becaadf54f0803bddcf0aedb56e17737dbfc3a - Sigstore transparency entry: 1107000217
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05df1dff7be289834bbd6b1b06abf092ad427afa0f92deb219a8af6f5f262b87
|
|
| MD5 |
630e28f9e3af29c311ef66831a475135
|
|
| BLAKE2b-256 |
5fa794c12c70a7dd9f5ad378446ff4148fa074362a2a5b016231bfdd426d9a7c
|
Provenance
The following attestation bundles were made for peapods-0.2.0-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on PeaBrane/peapods
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp310-cp310-win_amd64.whl -
Subject digest:
05df1dff7be289834bbd6b1b06abf092ad427afa0f92deb219a8af6f5f262b87 - Sigstore transparency entry: 1107000234
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: peapods-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 657.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09df4352c0826d475b439401af94d5ef0eed8972eccf8c83cfb5d8d5879a23a1
|
|
| MD5 |
c7992771233788b1e564a4bbf14f73f9
|
|
| BLAKE2b-256 |
76f85fce4c343649c5729bd56d4ff5d0f1407ef3b20169ba442344e2fea4a6fe
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
09df4352c0826d475b439401af94d5ef0eed8972eccf8c83cfb5d8d5879a23a1 - Sigstore transparency entry: 1107000252
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: peapods-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 613.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
618109540b2095fce82822b6102d5e1219878e998daf60d68b3763151177671b
|
|
| MD5 |
e0c2d3583a1b591763d696f771984410
|
|
| BLAKE2b-256 |
47296df685a0298be994a431142e8482776e16f487c67a2fa56662bac0f45426
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
618109540b2095fce82822b6102d5e1219878e998daf60d68b3763151177671b - Sigstore transparency entry: 1107000253
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: peapods-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 555.0 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b5b415698819feb8e0fdd32ef8e1e109ce790a59dde48e56e98ab33adab6003
|
|
| MD5 |
ca8d1900bcbc37c6548fc73bc6766e8f
|
|
| BLAKE2b-256 |
b4e43f6ab0e174e41ab8c05059c0fc6bfaf2b50dff843c7cc62259a8266c6e30
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
5b5b415698819feb8e0fdd32ef8e1e109ce790a59dde48e56e98ab33adab6003 - Sigstore transparency entry: 1107000248
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type:
File details
Details for the file peapods-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: peapods-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 570.8 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
005d2317986224252f5b0bb3f3e7db80f3c3c45a877b27573018d695635b0bb2
|
|
| MD5 |
3f8308ba227678335ebfeab212ce2a89
|
|
| BLAKE2b-256 |
6fbbe5528a3ae65eb46d76f8cb9faf6de107b474e94af02190bdadb372d68db8
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
peapods-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
005d2317986224252f5b0bb3f3e7db80f3c3c45a877b27573018d695635b0bb2 - Sigstore transparency entry: 1107000214
- Sigstore integration time:
-
Permalink:
PeaBrane/peapods@58c534412cb425a2b765c651cd5c89c1e580dbef -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/PeaBrane
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@58c534412cb425a2b765c651cd5c89c1e580dbef -
Trigger Event:
push
-
Statement type: