Skip to main content

An implementation of Google's Pauli+ simulator.

Project description

leaky

ci

Leakage-aware stabilizer simulation built on top of stim.TableauSimulator.

Install

From PyPI:

pip install leakysim

From source:

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

Quick Example

import leaky
import stim

channel = leaky.LeakyPauliChannel(2)
channel.add_transition(
    leaky.LeakageStatus(status=[0, 0]),
    leaky.LeakageStatus(status=[0, 1]),
    "XI",
    1.0,
)

sim = leaky.Simulator(4, [channel], seed=1234)
circuit = stim.Circuit("""
R 0 1 2 3
X 0 2
CNOT 0 1 2 3
I[leaky<0>] 0 1 2 3
M 0 1 2 3
""")

sim.do_circuit(circuit)
print(sim.current_measurement_record().tolist())  # [0, 2, 0, 2]

Main Python API

  • LeakageStatus: per-qubit leakage labels. 0 means computational space.
  • LeakyPauliChannel: leakage transitions plus Pauli corrections on qubits that stay computational.
  • Simulator: executes stim.Circuit objects while tracking leakage.
  • ReadoutStrategy: controls how leaked measurement results are reported.
  • generalized_pauli_twirling(...): converts Kraus operators into a LeakyPauliChannel.

Notes

  • Use I[leaky<n>] ... in a Stim circuit to apply the nth channel bound to a simulator.
  • Simulator(seed=...) only seeds that simulator instance.
  • apply_leaky_channel(...) expects raw qubit targets and broadcasts in groups of channel.num_qubits.
  • For ReadoutStrategy.RawLabel, leaked measurements are reported as 2, 3, ... instead of projected bits.

API Reference

The shipped stub file is the canonical Python API reference:

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.5.0.tar.gz (18.2 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.5.0-cp313-cp313-win_amd64.whl (213.6 kB view details)

Uploaded CPython 3.13Windows x86-64

leakysim-0.5.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (347.1 kB view details)

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

leakysim-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (251.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leakysim-0.5.0-cp313-cp313-macosx_10_15_x86_64.whl (272.0 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

leakysim-0.5.0-cp312-cp312-win_amd64.whl (213.6 kB view details)

Uploaded CPython 3.12Windows x86-64

leakysim-0.5.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (347.0 kB view details)

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

leakysim-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (251.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leakysim-0.5.0-cp312-cp312-macosx_10_15_x86_64.whl (272.0 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

leakysim-0.5.0-cp311-cp311-win_amd64.whl (212.3 kB view details)

Uploaded CPython 3.11Windows x86-64

leakysim-0.5.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (346.3 kB view details)

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

leakysim-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (252.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leakysim-0.5.0-cp311-cp311-macosx_10_15_x86_64.whl (270.9 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

leakysim-0.5.0-cp310-cp310-win_amd64.whl (211.6 kB view details)

Uploaded CPython 3.10Windows x86-64

leakysim-0.5.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (345.8 kB view details)

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

leakysim-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (250.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

leakysim-0.5.0-cp310-cp310-macosx_10_15_x86_64.whl (269.6 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

leakysim-0.5.0-cp39-cp39-win_amd64.whl (218.9 kB view details)

Uploaded CPython 3.9Windows x86-64

leakysim-0.5.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (345.3 kB view details)

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

leakysim-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (250.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

leakysim-0.5.0-cp39-cp39-macosx_10_15_x86_64.whl (269.7 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for leakysim-0.5.0.tar.gz
Algorithm Hash digest
SHA256 c4574a6ab190d09b74a4a956384aa143e72426f32aa5def47c15975646592766
MD5 9da0c6513bacb6115b2a8284d7698f55
BLAKE2b-256 e98a16f1bac40744acd4c51da0f0b6e564859d4d6e7f368899c16fc4a4cdc17a

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: leakysim-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 213.6 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 leakysim-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c598db2cc2c106e744cc2749af6d2a857fda746240123f196413c06e15a59099
MD5 e159151d027976d273bd3bbfb278d7c9
BLAKE2b-256 c269262991a1d1eca0017a6a43f4701b7501c1c8ad6e683bcfad945f55ae5903

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa0297159c1d01c8ecb68214974c415061ad87aaf9dadbc24131b1a9a3715ce5
MD5 9038e7c8bb7cc6bb999462fc314a6eb1
BLAKE2b-256 825932e3161ea4c3e9aaa4688e71d7f630c6efa25549e4aa67894f5b8bea2456

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f7f2640da5e6a6d02e5f4fe2c75a0dcc516e0851901b1f07570f7ab272215cd
MD5 caa24d23cf25b33637bb2f1d8e7aa89d
BLAKE2b-256 3f898a55a314296bacaa02ee0b3fed2563af11f0683551df513f79ede4992c84

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0f260b88b8b636a6dfa7e0cb0702cec69051a11220eda780b70f2a7b4044f66e
MD5 ad4b0f25e26896aeef57c63a10253056
BLAKE2b-256 c27fc8cc73c3f35d82621380d4d0d5c96d3993d5dfe1c2f6e748bdc69ad9b641

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: leakysim-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 213.6 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 leakysim-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8ca1293a03a842091493d014a4f899bced5efd42fad407c61b7cc1914d4927d0
MD5 62dd58f893d383fd49ed4f62f7acba22
BLAKE2b-256 e14af79f36ffe7c47ef0e091ef0fac59ef6002fc19746539c894cca048cdd1ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 520a9474b7d989a30d0e192d8ed815638501972c831f025840929c3947c02a80
MD5 deb71e41d9350e0608fd9c407b0b0f0a
BLAKE2b-256 176b71432ac6c60aa0f92bd4c8fb80882e59adb7a7ee52f0cce3ea2afc807021

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 347d6a803f3496bc08cce6eb8a08dcf00dc279bcd98ad4c31881d64e48629ecf
MD5 1110d0b02b03da1a849571bda2e55078
BLAKE2b-256 621411b61ce421211f22abfd160e5994c658cacd31624a06814531dff58f7df1

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e6e3dec0aa53374607e8e42ea213855dba513c2a76b4e67083303431a85a5e20
MD5 8143f136754c7dd7b73db2d9180a8836
BLAKE2b-256 25e71fe4cbb23905e5b27d8fc58c552c39b8ce88ced85ae007f0919723627fa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: leakysim-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 212.3 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 leakysim-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 57572e3bf4d6e8b272c27181d99865e93c502cd79659903371b4068deeeec79b
MD5 ef54703a26bb8b4b80352e25d116d39d
BLAKE2b-256 bc6c689be34b821a0b4349bdc890c95c2a49334df26f7937e6b71ac728d3547a

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea6fe931811b83a6a4257b02c3d4456647794b76a289c9a6d45c715cdf9baefd
MD5 d25589862cf0e4f5619694b5561588a2
BLAKE2b-256 76cf4becea8508907b6541d2e9697408585a280f498088ee79b75449e2172a25

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9c1ec1e26b48bf7218a00b42dec85bc7e7e12158ad7bf2364ee5cea7e9b5a3e
MD5 3a3d85256a2627a22e8e873436244774
BLAKE2b-256 8340458922a651b9b2a51abb5a568abce2275389391b2a28ee419cf9c1f66ebf

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 faeafeac985537a9c0d4d510d498a215c11d86b461725af32caba3c24bc2c0f7
MD5 93cae1e27b5b27688c669bd19ad7b762
BLAKE2b-256 9af4d5c47428cf0c43c0e464dafda98dec35e2f4134b4f790cb9b10510a8233a

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: leakysim-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 211.6 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 leakysim-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3aaca5d3ccd11a4aa275f8bdaf2b20119950d0664148e9ceef31771f6e5897b5
MD5 8527a7e9e932ea2e25cc7d694b9a7343
BLAKE2b-256 f39148d9a17fdc7dd4371be49ece04bf190d3c1bbc7575802f0756bcfe875a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96134a8b70cf000a9984c2f190b3b538cf55e4217181bb10a47d17b8c1a26205
MD5 1ba16e1d53e6920dd867b7af19a2d9ed
BLAKE2b-256 21e882216b2a0f3b3cf6bb9d2d7fda7f1bc9b8ee518392f7d013839c0159ebe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5818f785556ba57e5e13ba2ebb989646152275be5c2bfb0988b7d92bce8fd8ae
MD5 f766b267508d1c21859e81a028eeb83b
BLAKE2b-256 97e014ff5395ea77334b64963e65243fed98c05c6f9a8511fc0729880e1aaed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8e6b72d15d9710ce658ea0fecc66492601bd47c0631e45b090787364814251ae
MD5 e212d324e6568429b2e69f301349f82f
BLAKE2b-256 5a60a9f9154f44eaa1f8ca170076fc84e5db3e0bb9bf0b482e2469e1ea898d75

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: leakysim-0.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 218.9 kB
  • 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 leakysim-0.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1df39dfb692d1370b6d6902463d4e0584d56d3e2f14abe50f68d2c201abd1cb4
MD5 9eb767e852cba35934c37785bae57863
BLAKE2b-256 b00557548f7ffd2d63a86b34388863c0aaddf6f7a1ac0128f6f7f507d3faa3c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cdab60687ec8c1c413b20fceaa60b923f127aa3eb66a73f869cef40774a12c29
MD5 8b75b9c9ad246b6cb29d98c7a707a12c
BLAKE2b-256 86fd4e205a5f92de7ed99b41e0f4cd4a6c481b832d5cd646aa7811a0cf60c34f

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31be715b4a058d7d174b154ea130bc305c8b0df1ec14e82f616c662960bf5121
MD5 94730d7c7a04a2b81a0e0b1d4015c86d
BLAKE2b-256 3a622dd93fbd14f91ef4557325a9343cba673f4d578f6065a9b40d94578568c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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.5.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leakysim-0.5.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 31a6a97d02ff024efefc29c51b66a07c32bce1398d0cfbe5bdaaa674bd998f6b
MD5 bdfa3b57f13f793ba699088dc0e96056
BLAKE2b-256 ec6a600914bdd05989f290ed3e52551053daa50d975428f8683ee8b31a01bb61

See more details on using hashes here.

Provenance

The following attestation bundles were made for leakysim-0.5.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