Skip to main content

An implementation of Google's Pauli+ simulator.

Project description

leaky

ci

WARNING: This is a work in progress and there will be no gaurentee of backward compatibility until the first stable release.

An implementation of Google's Pauli+ simulator. It uses stim.TableauSimulator internally for stabilizer simulation and adds support for leakage errors.

Installation

From PyPI

pip install leakysim

Built from source

git clone https://github.com/inmzhang/leaky.git
cd leaky
pip install .

Basic usage

import numpy as np
import leaky
import stim

# Assume you have a unitary repr of CNOT noise from dynamical simulation
# which is a 2**4 * 2**4 matrix, incoorporating leakage errors up to 4-th level
cnot_kraus = np.load('cnot_kraus.npy')

# Decompose the Kraus operator into pauli channels and incoherent stochastic transitions
# with Generalize Pauli decomposition
cnot_channel: leaky.LeakyPauliChannel = leaky.decompose_kraus_operators_to_leaky_pauli_channel(
    kraus_operators = cnot_kraus,
    num_qubits = 2,
    num_level = 4,
)

# Simulate a bell state preparation circuit
circuit = stim.Circuit("""R 0 1 2 3
H 0 2
CNOT 0 1 2 3
M 0 1 2 3""")

# Initialize a leaky simulator
simulator = leaky.Simulator(num_qubits=circuit.num_qubits)

# Bind the channel to the corresponding cx gates
# We only bind the channel to a single cx gate for demonstration
simulator.bind_leaky_channel(leaky.Instruction('CX', [0, 1]), cnot_channel)

# Sample the circuit
results = simulator.sample_batch(circuit, shots=50000)

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

leakysim-0.3.0.tar.gz (15.8 kB view details)

Uploaded Source

Built Distributions

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

leakysim-0.3.0-cp313-cp313-win_amd64.whl (206.1 kB view details)

Uploaded CPython 3.13Windows x86-64

leakysim-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (336.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

leakysim-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (254.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leakysim-0.3.0-cp313-cp313-macosx_10_15_x86_64.whl (274.1 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

leakysim-0.3.0-cp312-cp312-win_amd64.whl (206.1 kB view details)

Uploaded CPython 3.12Windows x86-64

leakysim-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (336.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

leakysim-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (254.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leakysim-0.3.0-cp312-cp312-macosx_10_15_x86_64.whl (274.1 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

leakysim-0.3.0-cp311-cp311-win_amd64.whl (205.0 kB view details)

Uploaded CPython 3.11Windows x86-64

leakysim-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (335.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

leakysim-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (254.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leakysim-0.3.0-cp311-cp311-macosx_10_15_x86_64.whl (273.1 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

leakysim-0.3.0-cp310-cp310-win_amd64.whl (204.3 kB view details)

Uploaded CPython 3.10Windows x86-64

leakysim-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (334.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

leakysim-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (253.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

leakysim-0.3.0-cp310-cp310-macosx_10_15_x86_64.whl (271.5 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

leakysim-0.3.0-cp39-cp39-win_amd64.whl (209.4 kB view details)

Uploaded CPython 3.9Windows x86-64

leakysim-0.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (334.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

leakysim-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (253.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

leakysim-0.3.0-cp39-cp39-macosx_10_15_x86_64.whl (271.5 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

File details

Details for the file leakysim-0.3.0.tar.gz.

File metadata

  • Download URL: leakysim-0.3.0.tar.gz
  • Upload date:
  • Size: 15.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for leakysim-0.3.0.tar.gz
Algorithm Hash digest
SHA256 2295158352c20a8e38b4000cc2e523c91cc8ff8479efbdc65dd3b5432fc26a72
MD5 a31db27c1c8fde7ecea6cc18ed7e61eb
BLAKE2b-256 37289d5a7e75825bae32a6efecac843dc941d4a8a4be0fd6cf4ea210f7e057c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0.tar.gz:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: leakysim-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 206.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for leakysim-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4a28dc1ba10eb6eb3b2333b8618bf95c0de9d43baf7278e2c9f7d00a1546609f
MD5 fd38fe7b78998de205c64fcb1984d2fa
BLAKE2b-256 257f9e02f64741f62aefeca724beaee7fc613ad8b3f1a95beebbbd92589c90ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e864668aeaeaa6d1b5f8471b272254d68e86cab65831b99a1e9771fbbb1188b
MD5 fcb42bd9086e05403163dd24c0a655e3
BLAKE2b-256 598e031b823a320de7e285ddf986bf1b527bfbde319d6326c332b2b0d04b97ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e369abe3dfa7ed5a629275d0c290002eb2ff0545a5eb63f55fe7c0a5bb88b21e
MD5 e5a2d52442208d1173d0fd584b3b0dbf
BLAKE2b-256 03a7a3f63f742e7352068c966f3ce3eaa593a3c51b3c68340025de5ae110a09d

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1e874da51e6c58c47b8fac221ebd67a09b64871a1b92a78008c5e52da8b968fc
MD5 746499dcf64776e7bf020dac31a6b34c
BLAKE2b-256 c22a5fa5bfcaf5dae20a2d7029c3a048fd264eec9fd7e9f7c76ccefe7e28fcb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: leakysim-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 206.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for leakysim-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e5f559fc7fcbd79dfc0f1b0922948ca0037073ed5350e2d861f4ddaa0b85d8f4
MD5 54c63474a136039f6f6ebf08a7947663
BLAKE2b-256 cd281490ace9e9e0b6cb4285bf83b4da034af266955b47cf67daa6e85bee68ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba0d18ff071efa5a8996dd61067ca3f12e750996c71aea2f24e3b806859d170f
MD5 48d1f97da7a51e8f00c03367ede76543
BLAKE2b-256 20836a915c27027d3070acae80715907ab4410481c9a44b9b6f6eb5eb3a653a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5afe1edfac98b7507745f9220f61599cff8b7cb0421a4bfbbdee955bd438982
MD5 8f609e2342e289ba10ff3297770c9205
BLAKE2b-256 8698bfa32e49476f0f5f93ac579b10d365677ca2b41352230a418cbab96e8949

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bd5273d8bf47ed55f239b24a7b205f53b7a6b673f851588f6b08eee75c9c9cfd
MD5 c56da1eefc3028e1543a96275d4062ca
BLAKE2b-256 6dd81be15029cc35958b931583a02f67859f90a053c3aec88da430944f804030

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: leakysim-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 205.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for leakysim-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5bd39f8c75b6b5f004285ad986178345f7124d188a0a04035be41fdc3c8013d4
MD5 58ea0d643438b4d437f75d78245f24f3
BLAKE2b-256 9b509cd97629b40b38ca8ded215800e829f56a85bf554538cb198d509c0252cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85d24ad2fe5b9a2caea583a879c2e4fb288bef431149b4a5962fe33dd14e5cd2
MD5 6e5e5933c6509d453e267404d2549d7f
BLAKE2b-256 5cf93a57aef82da000f9954c293db777c5b1c802427adea6b3fd9fb1c7b32a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cc347916c930e35c9c55f9bc9fa733e33f154ff1bc26a8019d22035d7613093
MD5 02ba050ea070c3d4ad04c7130b657f0f
BLAKE2b-256 0397dcbaa5fc24a6033e6c0c8999212b8bfa779f9f4721ab62a4b48b955a4716

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8f1163eaa491587528b73814466b8f46119866d9847c6438b22f307a7803cd8e
MD5 c70aaaf510cd75890a3022cab1da6643
BLAKE2b-256 98ec262d6499e5472d7bd62f566a9cff0320e460aa6a47dd3797921b116d8095

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: leakysim-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 204.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for leakysim-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c249de603741974bef7718a7b3af24c622e2ab2b45c1ff4c6ec0f762afc628b7
MD5 1b161e7c8ecc015bc38d5adda9494c14
BLAKE2b-256 ce02ac7aa9b86bedb0f0241478416a6fdaf8bed85a4d1a2a9d580810119ed3cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89050ceb2d12e58e456a5c3a3a7a1f53e99a6b319dd61293bd99bcbf806b3a78
MD5 82df224261cc9d3c444f5aa09f876e7e
BLAKE2b-256 7ced7806e0c757aea94fe45a4b5d9c53c186de1a3b747245682830a88f4e6803

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 decdacc65e1dad61bed41741216ff42e5de0a7d987cac9e0557f9bc24f5dacd9
MD5 a8c711618107ac138ef9a11d75fd34bb
BLAKE2b-256 7b08a00b6e5651a6783dea873dcfbb3303807a5c9d6f70975e2bc813cec08c69

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 51a9a6b41fda506bfae8428d49e2982bb7c6b3d6beb73126299e63b2847e65a9
MD5 b7e6af7ba721c98c31387f32fefcd99d
BLAKE2b-256 c3a9ae3f61428880f2e21beaadab8024034eceb29b4aea79575e359a26c8b5eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: leakysim-0.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 209.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for leakysim-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 927168b43fa0f701f9c840e0192a39b96b37da28e9a0d37a3bef0381fcb8ae5a
MD5 47fd2b60e04c012569232cdc6092d374
BLAKE2b-256 29cfa65909e954f7a023b7b806d5092f2a74747d180702349e1f8249776ae992

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28118f45c258f6b9571257cf57749af5b7d40d159a49b854123a4dc56a90e9d4
MD5 e49426d578ad1019d85d62c39f1a5fcc
BLAKE2b-256 f837eb2f07101db5ca8374dd11ce3dbb4787b1fd61945afde86096b0620a49ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da0c2d7235e45e461bd19da4d4524c387d376b4ee936a7f5dba50388e82df8d0
MD5 d3684a8afedd5a10544b57f9da6999d9
BLAKE2b-256 c57e82ffaf4a6193061fb006ceab49881e4a009af6f0b7bc2ea9a1fcb1dcf229

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on inmzhang/leaky

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

File details

Details for the file leakysim-0.3.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.3.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d1b0524da0a299a7c7c77cfb86a6dc63f51ce8757644f416d2b0a8f81c5bb363
MD5 0825cf8d992226060637f6871929569f
BLAKE2b-256 d50deb846e17e3811faf445b7695fad08f1eab4367ee32500b02fdb964e7c670

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.3.0-cp39-cp39-macosx_10_15_x86_64.whl:

Publisher: ci.yml on inmzhang/leaky

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