Skip to main content

A Photonic Quantum Computer Simulator written in Python and C++.

Project description

Piquasso logo

Coverage License Issues Pull requests Tests

Piquasso is an open-source Python library for simulating photonic quantum computers.

This is a research project, bugs can be expected. If you encounter any, please report it in the Issues page.

Basic example

import numpy as np
import piquasso as pq

with pq.Program() as program:
    pq.Q(0) | pq.Displacement(
        r=np.sqrt(2), phi=np.pi / 4
    )  # Displace the state on mode 0.
    pq.Q(0, 1) | pq.Beamsplitter(
        theta=0, phi=np.pi / 2
    )  # Use a beamsplitter gate on modes 0, 1.

    pq.Q(0) | pq.ParticleNumberMeasurement()  # Measurement on mode 0.

simulator = pq.GaussianSimulator(
    d=3, config=pq.Config(hbar=2)
)  # Prepare a Gaussian vacuum state

result = simulator.execute(program, shots=10)  # Apply the program with 10 shots.

print("Resulting state:", result.state)
print("Detected samples:", result.samples)

This code outputs:

Resulting state: <piquasso._simulators.gaussian.state.GaussianState object at 0x7f3ef3604ac0>
Detected samples: [(0,), (2,), (1,), (2,), (2,), (4,), (1,), (1,), (4,), (1,)]

For more details, please refer to the Piquasso documentation.

Install

Piquasso and its dependencies can be installed via pip:

pip install piquasso

If you have problems installing Piquasso as above, try installing from source with

pip install --no-binary=:all: piquasso

When installing from source does not work on your machine, please open an issue in the Issues page.

If you wish to, you can also install piquassoboost for performance improvement.

If you are doing research using Piquasso, please cite us as follows:

@article{Kolarovszki_2025,
   title={Piquasso: A Photonic Quantum Computer Simulation Software Platform},
   volume={9},
   ISSN={2521-327X},
   url={http://dx.doi.org/10.22331/q-2025-04-15-1708},
   DOI={10.22331/q-2025-04-15-1708},
   journal={Quantum},
   publisher={Verein zur Forderung des Open Access Publizierens in den Quantenwissenschaften},
   author={
      Kolarovszki, Zoltán
      and Rybotycki, Tomasz
      and Rakyta, Péter
      and Kaposi, Ágoston
      and Poór, Boldizsár
      and Jóczik, Szabolcs
      and Nagy, Dániel T. R.
      and Varga, Henrik
      and El-Safty, Kareem H.
      and Morse, Gregory
      and Oszmaniec, Michał
      and Kozsik, Tamás
      and Zimborás, Zoltán
   },
   year={2025},
   month=apr,
   pages={1708}
}

Documentation

The documentation is available at https://piquasso.readthedocs.io/.

How to contribute?

We welcome people who want to make contributions to Piquasso, be it big or small! If you are considering larger contributions to the source code, please contact us first.

We welcome bug reports, suggestions, and any feedback about Piquasso. To share these, open an issue or fill out the Piquasso User Survey.

Development guide

To install development dependencies, use:

pip install -e ".[dev]"

For document generation one should use

pip install -e ".[docs]"

Additionally, pandoc needs to be installed. To building the documentation, execute make html in the docs folder. After a successful build, the documentation is available under docs/_build.

For running files under benchmarks/ or scripts/, please issue

pip install -e ".[benchmark]"

For building Piquasso, one also needs to install build dependencies:

pip install 'pybind11[global]' scikit-build-core cmake

Linux

To build Piquasso for local development on Linux, run

cmake -B build -DCMAKE_INSTALL_PREFIX=$(pwd)
cmake --build build
cmake --install build

Here, the -DCMAKE_INSTALL_PREFIX=$(pwd) flag is needed to copy shared libraries into the source tree for development.

Windows

  1. Open a terminal (e.g., Command Prompt or PowerShell).
  2. Navigate (cd) to the root directory of the Piquasso project.
  3. Run the following command:
build.bat

The build.bat script automatically runs all the required commands for building the project.

Alternatively, you can run the commands manually for building the project:

cmake -B build -DCMAKE_INSTALL_PREFIX="%cd%" -DPYBIND11_FINDPYTHON=ON
cmake --build build --config Debug
cmake --install build --config Debug

Testing

All tests and additional checks can be run using tox. After installation, run the following command:

tox -e py312

Alternatively, you can run only the tests using pytest. After installation, run the following command:

pytest tests

Besides testing, we have several additional checks:

  1. We use an automatic formatting tool called black. To run automatic formatting, simply execute
    black .
    
  2. Moreover, we also use a linter called flake8, which can be executed by issuing
    flake8
    
  3. Finally, we use a static type checker called mypy on the piquasso folder:
    mypy piquasso
    

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

piquasso-7.2.0.tar.gz (709.3 kB view details)

Uploaded Source

Built Distributions

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

piquasso-7.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

piquasso-7.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (612.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

piquasso-7.2.0-cp314-cp314t-macosx_14_0_x86_64.whl (474.7 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ x86-64

piquasso-7.2.0-cp314-cp314t-macosx_11_0_arm64.whl (458.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

piquasso-7.2.0-cp314-cp314-win_amd64.whl (764.2 kB view details)

Uploaded CPython 3.14Windows x86-64

piquasso-7.2.0-cp314-cp314-win32.whl (709.1 kB view details)

Uploaded CPython 3.14Windows x86

piquasso-7.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

piquasso-7.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (609.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

piquasso-7.2.0-cp314-cp314-macosx_14_0_x86_64.whl (463.7 kB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

piquasso-7.2.0-cp314-cp314-macosx_11_0_arm64.whl (447.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

piquasso-7.2.0-cp313-cp313-win_amd64.whl (748.8 kB view details)

Uploaded CPython 3.13Windows x86-64

piquasso-7.2.0-cp313-cp313-win32.whl (694.7 kB view details)

Uploaded CPython 3.13Windows x86

piquasso-7.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

piquasso-7.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (609.3 kB view details)

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

piquasso-7.2.0-cp313-cp313-macosx_14_0_x86_64.whl (463.6 kB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

piquasso-7.2.0-cp313-cp313-macosx_11_0_arm64.whl (447.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

piquasso-7.2.0-cp312-cp312-win_amd64.whl (748.8 kB view details)

Uploaded CPython 3.12Windows x86-64

piquasso-7.2.0-cp312-cp312-win32.whl (694.6 kB view details)

Uploaded CPython 3.12Windows x86

piquasso-7.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

piquasso-7.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (609.3 kB view details)

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

piquasso-7.2.0-cp312-cp312-macosx_14_0_x86_64.whl (463.4 kB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

piquasso-7.2.0-cp312-cp312-macosx_11_0_arm64.whl (447.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

piquasso-7.2.0-cp311-cp311-win_amd64.whl (743.8 kB view details)

Uploaded CPython 3.11Windows x86-64

piquasso-7.2.0-cp311-cp311-win32.whl (691.1 kB view details)

Uploaded CPython 3.11Windows x86

piquasso-7.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

piquasso-7.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (608.9 kB view details)

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

piquasso-7.2.0-cp311-cp311-macosx_14_0_x86_64.whl (457.5 kB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

piquasso-7.2.0-cp311-cp311-macosx_11_0_arm64.whl (442.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

piquasso-7.2.0-cp310-cp310-win_amd64.whl (742.3 kB view details)

Uploaded CPython 3.10Windows x86-64

piquasso-7.2.0-cp310-cp310-win32.whl (688.2 kB view details)

Uploaded CPython 3.10Windows x86

piquasso-7.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

piquasso-7.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (605.6 kB view details)

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

piquasso-7.2.0-cp310-cp310-macosx_14_0_x86_64.whl (453.3 kB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

piquasso-7.2.0-cp310-cp310-macosx_11_0_arm64.whl (438.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

piquasso-7.2.0-cp39-cp39-win_amd64.whl (744.7 kB view details)

Uploaded CPython 3.9Windows x86-64

piquasso-7.2.0-cp39-cp39-win32.whl (689.3 kB view details)

Uploaded CPython 3.9Windows x86

piquasso-7.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

piquasso-7.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (605.7 kB view details)

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

piquasso-7.2.0-cp39-cp39-macosx_14_0_x86_64.whl (476.3 kB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

piquasso-7.2.0-cp39-cp39-macosx_11_0_arm64.whl (431.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file piquasso-7.2.0.tar.gz.

File metadata

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

File hashes

Hashes for piquasso-7.2.0.tar.gz
Algorithm Hash digest
SHA256 655d6c1aae22519fc581d0f4e472891628a913b953e7129e16401f5ae52bb705
MD5 8db108e2e3d5387a83df78c8a80be253
BLAKE2b-256 3475504ceba685b94067c3cbb3fbb01af219f5f91f3c2dbab634cc404c8841c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0.tar.gz:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d6028c3783f323912fccfdff8c1dfc8c1d962d4170b7f289bc20abf89ef0d3a
MD5 ae788ab726d8020669124d84067f9458
BLAKE2b-256 cfcaa33a976d64db3351f72975170fbd35fc699f952a51712b6201bafb3c1bda

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9581eeb765b76275026ff4cd79ba15af149d465543bae284ae52280e9e8bb8cc
MD5 0997a3b00d4bd43d4e1b7d4632b6d4f0
BLAKE2b-256 6a7e9f036f720865ad9e3493cd6a7802edde7a84d961d303472416e0b97d9e3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp314-cp314t-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp314-cp314t-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 3e124b8916ef9a7c1c63397145312849e18efe8a2fb0e74866f507f795511695
MD5 703dddf0463e44035427c7e4e1d0080a
BLAKE2b-256 d59a1a3c8b6c493c4fd56015f944de0c7387525f4c09fb9d8e80515697e6981a

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp314-cp314t-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaaf1aefb19bfe1334052aad9150bb4caf0ea3dc5ed8a8a4c0654957728df30f
MD5 eb082ec80b111e55dc9141a6ba515431
BLAKE2b-256 bcbb57f8357a8ac935cb1e7f7e6b74cae7e0b2b7a98e177aa587f136bd53eeb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: piquasso-7.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 764.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fec69fb986e2f13bfb6a70e8b2219e253a304c54a969b43ab294bc05915558d3
MD5 47e3fbee33bace1892e812075e6c9816
BLAKE2b-256 6b5c92d9509fe0161dabd46bc5e573c52f0e7fc1fbad16cadd5187978f023f01

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp314-cp314-win_amd64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: piquasso-7.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 709.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4e6a5aaa9a7b72b2708c8349e41286cf9fb76ada25c98b273dc93eec437808b6
MD5 f7fdb512cdbdbc64454dd1d1a2b43b9c
BLAKE2b-256 2e8ee2a32b65d067732d8eca0ca85157085b7753308692499649ee811cca9361

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp314-cp314-win32.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f8bb54117dd1609a48632cd060313dea3e000805457586e697964dbd40d0b23
MD5 9531606ff9419d6c7895e3cc3d5567f1
BLAKE2b-256 bd39b46fdd942db8c6b25f7ff992842481513f8c71220718a6e7a8df6dfc57b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 537b40a34528ca60b36b531ca4a225adb49219210b00880fc32e808526c90535
MD5 41788d471ecaeb059208353f003ed653
BLAKE2b-256 122ef63cbfaead1d218e199fbb3f7346cf08cccd8f0caba860eef49767259eeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp314-cp314-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 65a8aac60d83b39018f4c1d424caa82d19c262cb1f12e091fb4add3ecd5ef051
MD5 091045fa98f38920f8c17b3e1edb2ea7
BLAKE2b-256 03dc1072eaae53526eef4db22fd7312b7119d8d5f01e75a298c64e22f6fcb61f

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp314-cp314-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9484279e1a901d5bfb02de5923526ada49b952bb25aed3f55d781f580e66835d
MD5 384f9029b303774c00386b3167a995ee
BLAKE2b-256 4e2f1d6c298566338d3c8cc5f68e2177ee58d6c0e77f3850d5b7c380daca8af9

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: piquasso-7.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 748.8 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 piquasso-7.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a532c4a47c7d4cbe5ad59ce321f20dea2f70a0a36d3ab376923b3efe89d94539
MD5 5969353c88fe7bd99ef5f6c39ae090bb
BLAKE2b-256 3192b5d6dee0ff0ba7cf5349d5201520190f6549d26827db0e51a51069a69ffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: piquasso-7.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 694.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dc745edfb90b01516d8a834a2a23e5a4455d25bb2d66b17039c3eb6ebafa0a47
MD5 84daea623119588cb0378245f139aa8c
BLAKE2b-256 5f2870ca4a0d5a11eea07f3fe843a7fa866ecb0960fdbce68e6b6ece4d752591

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp313-cp313-win32.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6600e789ec674ff6398a548c2eb5d1e4d08b88ca6e1ac7064498c6ba584739fd
MD5 f12d6a792423a2d2046736f2d7a60d51
BLAKE2b-256 cdb79f20eaba291354947ed607ff9f0535e47a4ca06d540c237e6d8013590334

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17825564d8271e680cb5a2400e05d2fc18f3ade317df6859d63ef74fdd466cdb
MD5 97918ac48729f987cc346967753061f3
BLAKE2b-256 63ad13c01ea9dcb5d0b8662af9c6be0a150d72e02cdf73057b64b5a96fcd07e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 04f16756e4145742b01a5e2fbefa8de5c96f21c5cd4c2bbb746841ba8615934e
MD5 50204e087791945eaf47a6bb6b9ec743
BLAKE2b-256 7520959292a0d512b8d3f3529a694f22f24ba592a991317cea638b6c5e86ef87

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp313-cp313-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 242cc7cc48fa04218e99744b4cfccc6bf6f4425127205be820592821e3e04c04
MD5 cc88c5500c278bd0e205bd1cc473c643
BLAKE2b-256 57c0a11bb73aaebfc1df47892924375277f4b8b767dd61a54bdb1a0dbc031dbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: piquasso-7.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 748.8 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 piquasso-7.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dda048c3328dbc6b96a211735234efd1e3401aef7b5d05de51a0688a96d5d0fd
MD5 e9bad9b71ca7653f147d2562f0f95022
BLAKE2b-256 9dde4e76edcbed16a8e203f9bdf176ec39f73441da4b932c0bb4ebfca27791e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: piquasso-7.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 694.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 23c4a44bdec9265ef5a0b5ce93d15a7936ba9e8ffc2051d5237b7b62dea127ed
MD5 6f425ea703ae3ced96b02fcc5ec9da11
BLAKE2b-256 83e515163a2dc5634882a627d335f8a7cc9ee74ec24f587ca451a0653c31d527

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp312-cp312-win32.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10176178daf68df585ceff766214792169c395a711fd62de75d6abde2ba251cb
MD5 fbac251f0a22f65b129bc08e0defc154
BLAKE2b-256 b23902095508d8975a7e48f9910829cda42cfaf4762f223791e768df5a628576

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e21c5aefaed97c5fb1f119fb045bc372ffdab4cd770d494a32f04277321b4523
MD5 e09675f33df242b5e76cb4796c3e686e
BLAKE2b-256 ad9f7226d7d25e6b0762f59389fa2d5bfd1ad31d799f1f9b7237f44bbca19fde

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 3bf586e3c2bd8cc284c4f5b6262cfa6a3dd4a5f89d83af34e532e04ad76ecf4f
MD5 2fe08fe33d34aa6eed76a15a679f72ac
BLAKE2b-256 cf6d46c64dd2371af04e8fd61837ee1592f56295389d19cec6bac165673b3d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp312-cp312-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01d063b0d4e6118eedc8c53e63702d80f1a7497efd6e96e404cd69f8e60afff4
MD5 e007429016a42266bf12c14c71486483
BLAKE2b-256 f91538527a9d5eb582495af0a84ddd37aa8a18a2df9845e0ce1522e9d799251e

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: piquasso-7.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 743.8 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 piquasso-7.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 085d129696179695612e28adc3473ce425e16b73d98f305ce0c1472aadce6977
MD5 5225ecb524c1bbd80a14defaab3068ef
BLAKE2b-256 4504d2ef760d84b7aebfb17b9e5b31ba605f8ddcfd528b239b48da347033c0f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: piquasso-7.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 691.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0e1d1685d33d573bac77b2a8d34b8c1dc39223a26b51696a2d35af43999beecc
MD5 d70ac234ee0a08a572691b88ba963901
BLAKE2b-256 4dbe00c73a02125ee86df9ed994f463d51de69798d7308db3a4ddefd1022169e

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp311-cp311-win32.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8d5ab31f550bd1d0369e47ccc9387fe7c44201abcf90bcf9471bd9704e8a95c
MD5 471fe4a4f5497e71a08553d230613ece
BLAKE2b-256 729efb2f0416aed5da3514a606b1e7689898bb482f79c09889b46ad0c14775b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed25369773e19ec6f921da3d6e6e6fcced8728d9c8383cef75a9d330d12e1bcb
MD5 ea57ddb721a8ecd7a960880f9eb34ae6
BLAKE2b-256 aeb63f3159616b050a9d0891522e595fea0357a3add3d0b285da3933988a6f62

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 05cc1171a52d993d9679a8f1ce4c70bd4bdf739b9d7fd38d55c8e18052beacb9
MD5 b739b53963704ad0289570f27c130f22
BLAKE2b-256 cc4011cc84b91f44f9ae1b0f6091cf9d90aae569a31593ceec5534dd78400af3

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp311-cp311-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c996f27239d7231d1430c21dd878d051e41dec239f3c6a525bff8369f0ed801
MD5 655e32d10e651cf0f93c7ffb3ab1271c
BLAKE2b-256 e45726f87e22add1eb5453cf479dac489e46b5fede722392d967769f80803174

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: piquasso-7.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 742.3 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 piquasso-7.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9b0e1e71f6f91ced22017497a887deb649f369d55e74e3382aef34f8a315f95a
MD5 c389871de42a5a40bfb839a844d33850
BLAKE2b-256 431a775c87810b91becea9e483716ed98b081d79d0cb0b643759920e1765fa27

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: piquasso-7.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 688.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e0210046d205599e2b5b07f69eb8c7a90004d148af79ecaf1a0990b843e0d6b1
MD5 9a15945c035901302b251bd683e28e63
BLAKE2b-256 645a0c55a17c6ce9ee566292ca622bb9c992883b7583b66d52a600f4ecca9325

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp310-cp310-win32.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47c49d72e67f326ef764c2dddd27ce3a0d11b00eecfa14e9a869a562cb33b6ec
MD5 366722dde82ca2ef57986aa28b1ad3cc
BLAKE2b-256 f0ccb0430f149c2b3d535f62635586fe0fbc8583bd7c7e2958f22ac074ca6177

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4aaf672e59df09fbd8348519c91cb0845f0834f8843fb229bdd444c86cda1147
MD5 b111c73650d10dd576b06980ae949ef2
BLAKE2b-256 51ee4f24c2fdf76e842fa67b96672c9e6365f419ab143739e68088f0ee08dd21

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 848be5473c86fcc9bdb596e63d7536b1f294ce059103edf167766827ecd9e55d
MD5 a424af3fd9122ca2f1427355d45802a8
BLAKE2b-256 e3edf67cd67d95c5dad5358d64dff51a158496b738363bcc935b9c334d82454c

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp310-cp310-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31ea247851e46ad1ccc7dcf7aa423256c960edec5154c6635c0e1a7514a28a1e
MD5 c3925ce2d305180541c5ad4195dd791a
BLAKE2b-256 730e4baf6d00e34136de8605af7be57603f8da8faa101cfc016ea50080199581

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: piquasso-7.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 744.7 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 piquasso-7.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 73ed66626aef5f7f9ad8cd57f44ba785e361a261652105621e598c013f39b2d5
MD5 134fcb989334685efd97212733294ef9
BLAKE2b-256 a14a62e4b97bad920e00c66884cfa702d3f531d2639ba5285cece0fc899e030a

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: piquasso-7.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 689.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ed4ac038a56858667ae625c06354664642c6730ae608134dda605729f14fcd5e
MD5 ce670112fb922a102721defa06987c0d
BLAKE2b-256 e6999e94041ac146d74b786a1677a55ffeab291a8fee95e38679cc9aa51d75c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp39-cp39-win32.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c47d4734a3489c96cab44f0c77557e7694f840ff9d6fbb8cc49cca5fd2fe027e
MD5 7d77f6875a50d79de91379bc65f2477b
BLAKE2b-256 307c72fd2e9cfe11677af35d58056d410bfcfef936f6054d91a221f8e811eb5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cbef609960c493d91de6b5fdba59666ad82e2227586bfda9f9ed21f5da78ddf
MD5 d60398f09c09472866385bda516f898b
BLAKE2b-256 9e5d614bcf32203554cb1023e2bd58b7c59f20a3701b088935897638e352ea2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 2035b7f03f9f7670076341da87b727a17d1ec85e256c8db12fc7259283a717e3
MD5 0a092486af6a6f001b1910071016c5dd
BLAKE2b-256 e2cf94b3def111e8106776009c87275c1f818a820329ce4eb8cbd6babe5f4469

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp39-cp39-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbb0729ab833e5d11c0a7c49ea8f7de33096b7a71f1533c438c1ee922b206674
MD5 df9678dd922a0dcfd806722f3fe4f98d
BLAKE2b-256 7f245a9728b09c24af84ca991190667100eccb426b4d303a65db6e0679d0297e

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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