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 leaky
import stim

# Quantum channel that can includes leakage transitions
channel_2q = leaky.LeakyPauliChannel(2)
# Qubits order is in least-significant bit order, the first qubit is the leftmost
# state in the Dirac notation
# leakage state 0 represents computational space, nth state represent n+1 leakage space
leak_from = leaky.LeakageStatus(2)
# the second qubit will leak into the first leakage space (|2⟩)
leak_to = leaky.LeakageStatus(status=[0, 1])

# |C⟩|C⟩ -> |C⟩|2⟩ with associated Pauli operator X on the first qubit
channel_2q.add_transition(leak_from, leak_to, "XI", 1.0)
s = leaky.Simulator(4, [channel_2q])

# The leakage channel can be annotated in the circuit with a special tag `leaky<n>`
# attached to the `I` instruction, where `n` represents the nth channel bound to the
# simulator during initialization. The channel will be broadcast to the targets
# of the `I` instruction based on the channel dimensions.
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
""")
s.do_circuit(circuit)
assert len(s.leaky_channels) == 1
assert s.current_measurement_record().tolist() == [0, 2, 0, 2]

# Another way to apply the leakage channel is by calling `apply_leaky_channel` method
s.apply_leaky_channel([1, 2], channel_2q)

API References

See https://github.com/inmzhang/leaky/blob/master/src/leaky/__init__.pyi.

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.4.0.tar.gz (16.3 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.4.0-cp313-cp313-win_amd64.whl (212.8 kB view details)

Uploaded CPython 3.13Windows x86-64

leakysim-0.4.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (346.7 kB view details)

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

leakysim-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (256.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

leakysim-0.4.0-cp312-cp312-win_amd64.whl (212.8 kB view details)

Uploaded CPython 3.12Windows x86-64

leakysim-0.4.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (346.9 kB view details)

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

leakysim-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (256.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leakysim-0.4.0-cp312-cp312-macosx_10_15_x86_64.whl (274.0 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

leakysim-0.4.0-cp311-cp311-win_amd64.whl (211.4 kB view details)

Uploaded CPython 3.11Windows x86-64

leakysim-0.4.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (346.5 kB view details)

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

leakysim-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (255.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leakysim-0.4.0-cp311-cp311-macosx_10_15_x86_64.whl (272.0 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

leakysim-0.4.0-cp310-cp310-win_amd64.whl (210.7 kB view details)

Uploaded CPython 3.10Windows x86-64

leakysim-0.4.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (345.2 kB view details)

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

leakysim-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (254.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

leakysim-0.4.0-cp310-cp310-macosx_10_15_x86_64.whl (270.6 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

leakysim-0.4.0-cp39-cp39-win_amd64.whl (217.3 kB view details)

Uploaded CPython 3.9Windows x86-64

leakysim-0.4.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (345.7 kB view details)

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

leakysim-0.4.0-cp39-cp39-macosx_11_0_arm64.whl (254.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

leakysim-0.4.0-cp39-cp39-macosx_10_15_x86_64.whl (270.7 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for leakysim-0.4.0.tar.gz
Algorithm Hash digest
SHA256 3f956ef89deba072dbe5b9194202fcf65255e8be84d4b1fd7777f88a9f5fdca5
MD5 60a55756e1c888064870781ecd2380e4
BLAKE2b-256 d5bec682def1652055da7813d004ca7911a3ace1cd5ee1f535df2b4b0866c3e4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leakysim-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 212.8 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.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2d91931632066dd0a32f39d1329f5f48a957c7f3926d294e727c3af86bc6411a
MD5 d7058c931b66cf25503a13a741949add
BLAKE2b-256 bf34a6d65c653275307ca8731bd6c1dfed1985f693f3466d5f3e49b662302e98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98bb9440d34f82d1e0c7ff8be9bbaadee3f9f1c22ef37b3f354469e8babf552d
MD5 b0c33d97aafb0d6e91e31bc562b07c3c
BLAKE2b-256 c8dc6b73f6fa0a56f643cd1b706c6e5059d04afb5dd97cee4014e369a39366cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dab7f49f2605cac677214e1662592c6d6f9e75607495e6b5e4999832a5af2a5
MD5 cb73a4fb9b70c214f6a490bf1d7debe1
BLAKE2b-256 c888bd2fe1ca17872aeceed9b678d9c7f874cca24b8191430f7834484f96f9c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4c2b5c08d614b793584c6ac2e1efff7137b614ebf0f918161b887399d4ad5de4
MD5 164a942f1091e47d568d1bc351b1c882
BLAKE2b-256 5426d03aa299d6069d43782b14d0a02f794c39009fab7829224c5cd1707c5013

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leakysim-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 212.8 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.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e016d73f541a7a704defc1f64e3b12a106988bc7324c981ca4af22be247b6050
MD5 b781a4ee14f39256951b2b77e0ea5a0c
BLAKE2b-256 015f55f9f0de08cf6623e9c6cb3c550cb2e1980f2f9dccfb989022de529ebbc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f340f0d10072138ec6f7405344a8b6c4ae31dde3601f7ab047b2de28f28b8d43
MD5 3cb6853e94518a1d7b30d66b1ec52824
BLAKE2b-256 31978f440c131ee006c0948d5e62517472247f7bcfe24e001b05a089af38bda1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd7d4ed0b35da3632ec46e4e54dad98816d2ae844ad894824fc160c996337a4f
MD5 7675acfc6f8716b5703106b0fc87e626
BLAKE2b-256 3abaa3e374f7a0fb67b85ace32cdd84a347e8624f1053ea86da6422cbc64e4c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 92830c6789d08851751d25dfece087050328f6997cd64bb4f8e51ef6d05fe0f4
MD5 341d1e149ef6532fbd83b1c1a0fcd0a9
BLAKE2b-256 55bd96f000e8c44c42dda0efdfd57c93d28badf4dc8874ee75a705effbe6b792

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leakysim-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 211.4 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.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0d1b059b4ced8e0242108a8a70f19c68ea6df014c701b37af3065705d56b1246
MD5 c07e4da35119d919f46a608dcffc6dc8
BLAKE2b-256 5b68714535b792d8082ad39609aecc99fc2899313db6025617cc89600468b6de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f131d8dcbb23ce50f1e094bafc2dae1164dc5685b82c5c2ee6c83e93dbcaa5f
MD5 5f2c838b5da70629aa98ec03b3216ee6
BLAKE2b-256 835eac1a8e67a9afd332525d526288251b152b39db7c51ae2f09225c90d51010

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a42575214802040bd28486c8ccd2a1d65bc6513c241d8217391942e205f53ad
MD5 8e484cc4a83df2dc6c9f69c322dadb3d
BLAKE2b-256 a19a6e6c4a1e4ee12df482d5d5e0dc1addd7f6216e5acd5ca8817cbe6af31dba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6c4e6889e32c28f3344727558dae7331efd0244a7cd70d110228f0e12b1b1106
MD5 a648cc85c128e3644cf14c1409416ae0
BLAKE2b-256 1eda602e8e58ab38acbdc9e7b19c4bd3d34a1b0bfe41c29dce1eab69e0d33154

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leakysim-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 210.7 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.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 92cba0071755b1ef9a1abd70efae2c4d474d59222fa658cb7264192bf060ec05
MD5 69dd0cfef0f4dd0955b628fd3c763a76
BLAKE2b-256 ee3eb3a03ebaf55274754f2da4bd82a5bb8b8b5b85a070403b6157fd62db16c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02a460de16bc8afd2d0d27c605d38a8058c752435b4e930305dfb299711c38d4
MD5 656f9dfb2f399fdb07bcb37c9215ad88
BLAKE2b-256 3f82161bd6fb24e33aeb65b8e2c62df25ec2be8b9d3e0e41c8f9c763d08eab8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0589e1d0868933d7d294a8323625c8516cb04d87b4a9c46138708c590709debd
MD5 5732b994ddbd7ff3628f22df72e08008
BLAKE2b-256 1a0bc21c4a93e0d9d596931030c069d368e62ed75448b857d407e2e28c32d9aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5fbb97da22bd2c95153d691b1f9f52d368f1bef8bb6c9f3c942188fe0fe96b8d
MD5 6b4c0dadc917499f7e2c448943b08710
BLAKE2b-256 86aa1fe8bb9be7c9a6f42b9a834d8fbc7ccafba0aa63660c300a872d36c277bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leakysim-0.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 217.3 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.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 01ab2e629c3858e00de53493935094fff4f79877b0260354ff7498ca9e065d94
MD5 6bb71800c9cfe47ce68a3ca7b06437b9
BLAKE2b-256 93e49a6d12a8d21911d3ce6238ccc8db4a71f270ca0e4be6012222197ab12167

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b96c4440f4b1e1a8aa167d85f2fed62faf63ac0a20dd9aa426a16f31582586f
MD5 abc547fb745df6d66b1de46230c4e30d
BLAKE2b-256 c4874a0fbd8f69099aa38e48ebc96a0018a8a02f38740a0552c5e7e6436d8035

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 607a9828313fa61aa7dfd9668137ddd522cfd0f07613428d65d14a4d0ba819cb
MD5 01086ae6d951f087970581a743112599
BLAKE2b-256 d9e46e731b052b35c846f1c7e11f9ee8b0923961e5ff995dd183442ebeaa78e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.4.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c9a175f31276d77221953faa561d036a8977a4cc52b75cd01304ab33a300bd09
MD5 618aec881816cc003ed8699086165fcb
BLAKE2b-256 5740b75fecc49a82a0f79e04d135d5fd219a1dca4dc8cc25530a1128eaacb1a8

See more details on using hashes here.

Provenance

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