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_channels(leaky.Instruction('CX', [0, 1]), cnot_kraus)

# 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.2.3.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.2.3-cp313-cp313-win_amd64.whl (198.4 kB view details)

Uploaded CPython 3.13Windows x86-64

leakysim-0.2.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (330.1 kB view details)

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

leakysim-0.2.3-cp313-cp313-macosx_11_0_arm64.whl (246.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leakysim-0.2.3-cp313-cp313-macosx_10_15_x86_64.whl (267.0 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

leakysim-0.2.3-cp312-cp312-win_amd64.whl (198.4 kB view details)

Uploaded CPython 3.12Windows x86-64

leakysim-0.2.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (330.3 kB view details)

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

leakysim-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (246.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leakysim-0.2.3-cp312-cp312-macosx_10_15_x86_64.whl (266.9 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

leakysim-0.2.3-cp311-cp311-win_amd64.whl (197.3 kB view details)

Uploaded CPython 3.11Windows x86-64

leakysim-0.2.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (328.9 kB view details)

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

leakysim-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (246.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leakysim-0.2.3-cp311-cp311-macosx_10_15_x86_64.whl (265.7 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

leakysim-0.2.3-cp310-cp310-win_amd64.whl (196.5 kB view details)

Uploaded CPython 3.10Windows x86-64

leakysim-0.2.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (328.2 kB view details)

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

leakysim-0.2.3-cp310-cp310-macosx_11_0_arm64.whl (244.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

leakysim-0.2.3-cp310-cp310-macosx_10_15_x86_64.whl (264.0 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

leakysim-0.2.3-cp39-cp39-win_amd64.whl (201.9 kB view details)

Uploaded CPython 3.9Windows x86-64

leakysim-0.2.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (328.4 kB view details)

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

leakysim-0.2.3-cp39-cp39-macosx_11_0_arm64.whl (244.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

leakysim-0.2.3-cp39-cp39-macosx_10_15_x86_64.whl (264.0 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: leakysim-0.2.3.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.2.3.tar.gz
Algorithm Hash digest
SHA256 66e6f94117b673f08617444b184cab29d3afdedda9a9f39341710cfbf1ce5364
MD5 c6cf67dc42d555dffc024c0903c0be2a
BLAKE2b-256 f52bb3474465f06aa440b6b558af26ffa6a29c54b1b4bc3cf737cc7f87addb70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leakysim-0.2.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 198.4 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.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6c16b832660334b5450fa70c0f7bba012ba1cb57c7b69ea7b24a393c854e2db4
MD5 b054df4469f5d277ff8444808032e99e
BLAKE2b-256 0cd3eb55fc3c41f7cd099c83bbb02f8d15399ee0b1eec91007625705a0f457a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9265df6e37c33e88aec5b7ec790b5a702795230406b0e6ad058e6e0514aefb85
MD5 008b83da82b37fdf6448b3fb20319bf3
BLAKE2b-256 bc232f4e4aad2deefdeb334f8e1e07c0dc299e204556bb6779b0050524ba68d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 674e1ada9a1463ce1d2b2aeb606a329aa316e3a5ea4ae704d399ac9f8ec5add5
MD5 4ae25a1701068a733b854bee86b632cc
BLAKE2b-256 fdba66c0dc6eefee1dddbe54a001853aae9c831e7e603846a3eead9fca305bff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 52e1c6719f43a16bd28ee17676c1b45c3ced8f8decf5f3566901b888e1990fbb
MD5 94700af32a91e8b072f2d139cfbb2030
BLAKE2b-256 652de40d1551a01dc07cd30e0b6c9b19d9dc2e3487ece7d58b0ef425a238e3bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leakysim-0.2.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 198.4 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.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2e58c95aa7bfebafa86bdc89203737d73a43740d4b7e1352190c12e9887fa565
MD5 889ce5e950ef99dd71785948c7afe228
BLAKE2b-256 66af9b0d16f0a0635b66e51baba0cf9bd57d2fbce32dd4d2d089fcb72d05fd2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20cccc3a5af0aa88628b837320729445aaa6afaef26a79f6181828a30acef035
MD5 706465bf4ed742c86e33b990dc9fd2d5
BLAKE2b-256 802f2ad37829af45c36c1a59afaca8c39cf9ede7843609a421dd13b0c9991ce9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a2581ba5b8696e4bb2e503a5ccc1003898edf84ffbc7c994e0d451af388f406
MD5 bbc3b30c240cafb07d1185011dddfb9f
BLAKE2b-256 0186318d02a216f642511cda218da307c82a334b3d0807552c955e6f63eea65a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dee3d7f6bfe04bb1610c206342829289df75129514845c6ad7cca5f37a252961
MD5 acf1eb6c893a32c101585e2d4f57e87d
BLAKE2b-256 99df2b5abb9072dff4175cb31bbaff71653b481641ba2b5a67390e3cd674478a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leakysim-0.2.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 197.3 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.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 de3e99b4d5c05adf6abecbcea8f7967bffa4e534f3cfb71710d11d5235403091
MD5 0ffdb2844a157d63a9be06d7e1266d3a
BLAKE2b-256 3c2b305c3f1171341b76df7d1675614e80de79fd9637220a9aa110238d44f9da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0830d92efce5c2620b998db02e51dc274f890cf9405ee916a9bdb6b8b9b7c6ef
MD5 ed3e4b7f0069fb3fb70dd1e4971aec21
BLAKE2b-256 6b8464ad2017d623f7f293e16ddf142ab9b4cd72e51bfa40711e3ee0bb16319c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d70d0bdc96e402bd66ef6de46d79b945724bf8f73f91dd850548843704c0adf
MD5 a47dc7fc1beeb2dbd202e5d59059aacf
BLAKE2b-256 8757d766df892f5af351c88ef454ca861991c5e21ebd6d1d17ca89b52c721236

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bef03e1fca1629e339a3fb2ca3f247115b8557989db32e78ade4eb81534dd317
MD5 cdfdaa74b5bbd7cf4d470a750501f7d9
BLAKE2b-256 797a740825f6544c723b1e7003e97d8775882565eaddb398d9f2d6e778b4a43c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leakysim-0.2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 196.5 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.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c47671dc362462577176286f46c1ef14461c723cd830ba0ded6737615cde5ade
MD5 156f481aed8380ae08391ba6ce709196
BLAKE2b-256 f0bbc26afc5ed05f4c3c82a64276d3992bf9f6a2ae96aa65db41ee7d25aa191f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1355d0478e33dbb878f9b2af415ae92605ce8627bc62c8aa3e2c3b48e42c7bf8
MD5 56c964ce7dd662e269f905ecaeec4c7b
BLAKE2b-256 89f82f010bd72649a0f8fdeb3122023b084381f010ff6f3118ec1c4ceb7f5008

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16a01581921dbb7797736a182bfbc40b0f6e298cf9b552f85f1aebcfc03443f1
MD5 1fddda67aff981f8f3ca154abc3d0b17
BLAKE2b-256 71818a4753dc44f6d0f10f484e4f7edc508af5a28dcd40c5c6812f2aab2d0ce9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cfa397868be3c2eb37230dfd94f99c5ced2a779d2d8699c437712cdc70ae3ec9
MD5 9f458b58eebeecb608ebab0964a2f15b
BLAKE2b-256 639ed9a7c92854ab9a88554417b56267b4fdfef874492a09cc80865f7c62f14e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leakysim-0.2.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 201.9 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.2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fdcf2bd7da4d3ef78d1d29001dc2f3d7ec199c1e43bd0e4ac9dab6e5a99407c3
MD5 64461d5400b13962fbe99bb40618fc70
BLAKE2b-256 f47ec47e1e41d8bdce98457e3bb9fe20e79026f5e501399930132599dd4c8d33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2573fe6465339af13288daa35dcc2b5f17668c65cdb381a160b43522b4aa0c47
MD5 a7eb69f3b3753ca7d8ee5dd4067c5dfe
BLAKE2b-256 681549bfe22ef6a9ff9485d30d5d079e4404bb5508c0ed35f83c414035dac76c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ce0fdbbdbfd46f01406a59b2d4ac32def364404afff561d436df01ccb64d38d
MD5 907e9af14276f129bfe60db3baac108a
BLAKE2b-256 56f875c1ec5c9bd41ca3bab61770bf5dcbc96178bed58b079a5c2c0fb3b62182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leakysim-0.2.3-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0f1d612ea32f941f5faf39cbcde3d8b533bd0daea8a3331bec5e73aecca49920
MD5 88a8261c91eee8099a38f55e7b840ebe
BLAKE2b-256 a6e586b064e078fa12977504c16ff67a7e0d184665326f5bce160dd4f059a39b

See more details on using hashes here.

Provenance

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