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-8.0.1.tar.gz (781.2 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

piquasso-8.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

piquasso-8.0.1-cp314-cp314t-macosx_15_0_x86_64.whl (506.2 kB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

piquasso-8.0.1-cp314-cp314t-macosx_14_0_arm64.whl (816.9 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

piquasso-8.0.1-cp314-cp314-win_amd64.whl (935.0 kB view details)

Uploaded CPython 3.14Windows x86-64

piquasso-8.0.1-cp314-cp314-win32.whl (786.1 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

piquasso-8.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

piquasso-8.0.1-cp314-cp314-macosx_15_0_x86_64.whl (496.9 kB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

piquasso-8.0.1-cp314-cp314-macosx_14_0_arm64.whl (803.1 kB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

piquasso-8.0.1-cp313-cp313-win_amd64.whl (915.1 kB view details)

Uploaded CPython 3.13Windows x86-64

piquasso-8.0.1-cp313-cp313-win32.whl (771.7 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

piquasso-8.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

piquasso-8.0.1-cp313-cp313-macosx_15_0_x86_64.whl (853.4 kB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

piquasso-8.0.1-cp313-cp313-macosx_14_0_arm64.whl (802.3 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

piquasso-8.0.1-cp312-cp312-win_amd64.whl (915.0 kB view details)

Uploaded CPython 3.12Windows x86-64

piquasso-8.0.1-cp312-cp312-win32.whl (771.7 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

piquasso-8.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

piquasso-8.0.1-cp312-cp312-macosx_15_0_x86_64.whl (853.1 kB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

piquasso-8.0.1-cp312-cp312-macosx_14_0_arm64.whl (802.1 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

piquasso-8.0.1-cp311-cp311-win_amd64.whl (905.6 kB view details)

Uploaded CPython 3.11Windows x86-64

piquasso-8.0.1-cp311-cp311-win32.whl (768.7 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

piquasso-8.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

piquasso-8.0.1-cp311-cp311-macosx_15_0_x86_64.whl (846.9 kB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

piquasso-8.0.1-cp311-cp311-macosx_14_0_arm64.whl (796.5 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

piquasso-8.0.1-cp310-cp310-win_amd64.whl (902.8 kB view details)

Uploaded CPython 3.10Windows x86-64

piquasso-8.0.1-cp310-cp310-win32.whl (765.4 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

piquasso-8.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

piquasso-8.0.1-cp310-cp310-macosx_15_0_x86_64.whl (841.1 kB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

piquasso-8.0.1-cp310-cp310-macosx_14_0_arm64.whl (791.9 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for piquasso-8.0.1.tar.gz
Algorithm Hash digest
SHA256 b0a5e5f4852b71bd8a877d6c0c747fe4ee2b2c49bdf760d0605f9e9b6f2f722b
MD5 5c50b728752fbadf2b50f51a55cb002c
BLAKE2b-256 6d4f8393fe31874422bb00ecadf38f31c2e36ca5f254c92f9b75a9acb58f8269

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1.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-8.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26379593266a4e27e7b284a7c5ac1ad844b98df6a9acf2f8780335300deea12a
MD5 03223e42f297f6c5267c5b399421191d
BLAKE2b-256 7b79a2d05f53c7084385e2fcabf1ee4f87fb67d51704ed3d2fe89c733131b459

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09d223ee24500120eb720097e8bba2f22e77daf0a7f86822a2e8d7626f118af0
MD5 369053c6b9c5ef69924953c4c2d9a0b4
BLAKE2b-256 bfd90004a84e41c99676c090eb962c1f8a7cf0dd155006b07467eef315342dd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 705be58eef09f2689fd4716fd8450632e8a2230255168171b3fa8053906d2587
MD5 193b6119d2c0258d5924c550d1718bb8
BLAKE2b-256 4c29b9bff86e32e238b479628045c8a808dfcfb1c530c7a3db8745fab374bec6

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-cp314-cp314t-macosx_15_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-8.0.1-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 96cd7967339da44782cb278d94d9172a6ddd9cc5fd8b6ca4d8b937a6b64369b9
MD5 6a9426849c20f8a5e45c704612933f28
BLAKE2b-256 4986970ec564546c6ed521e973b5d102f46e0c2c798456baa675be2462332bc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-cp314-cp314t-macosx_14_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-8.0.1-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for piquasso-8.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 926c79a5b5f1658776536f7130556e64e9a3f6e7d8ceb51cfee3ab2812ae1949
MD5 eaecb6a308f4e5d18cc48820acb08de6
BLAKE2b-256 70ebff41fe8a1d2e7b70032df9b8d72c0e84283429fe0b30fd3bd9ac84b5a7ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for piquasso-8.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 862fa8232ac034d618edac1aaab65a6a80fd98886b6017ac050ddfe94d04ac03
MD5 ea1c5bffd05ce9b558746b375c9e3513
BLAKE2b-256 4decf7ec4726a847393055e1a7c733370c10620118bc689c63021c2d9661d0f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee7b54e03a5a51977eb2f778043a200b303c3188f734ca7074de348edbe3143c
MD5 078db0a1866fdf574ff32d699a9bb6e7
BLAKE2b-256 fb7aed1388a26ebe927ad67db6e93ea4b826a6826fe94595cbb40601f7c6ea2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71a050fa77e004637147df68f10e43470210eed04567a76984c7d2f3a40d6267
MD5 1f0f548a22209f031ae9025e91520135
BLAKE2b-256 169cd190db5c2822c714eab43aadab09c281ce2273e6063fa69918d7a2424669

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 dfae9bfbcb0b2df083a66c74d68794f82b7714571a8bc3741164e691de6aaa6b
MD5 7a629cfe6024d5e3ca5920136a578934
BLAKE2b-256 c897f2b67c475aad15fdd77a929af2193d5b82970f8c5e8a42f5bd52d24bee5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-cp314-cp314-macosx_15_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-8.0.1-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7622f4fad95276f9df81c6ec13412d7785f812a54e82ec6847057643c1240986
MD5 002aa49a1ecf7ec1ae6cd57290de6e9a
BLAKE2b-256 7efc9540ffc87cac39f827e5083fff3a11da26a69ed1d814b23ab78afb2740b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-cp314-cp314-macosx_14_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-8.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: piquasso-8.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 915.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for piquasso-8.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 69f5c5e275c3395ac08fdbdd35d2db7fb2c261adbd567a96f0d4114c2c0259aa
MD5 84b55da8ddaf9220863c0b82728d23ad
BLAKE2b-256 54b50e0a59cf823745d4e39aee71035456798cebc26efee1c9c7d47f58ca20b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for piquasso-8.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 60aa3253e000d516c7471160759579a11188b9a88596a1f2f51f8d0a237ade0e
MD5 7f0bb8f800f4588f982338d6193bcb08
BLAKE2b-256 829766a7fa362cc1b08f966c3887a202bd78a9627cc903cd5af2576f86a3487c

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1ae34e44d2c58b790146bd43a268c7e98e598aa438c59348a228ec6471d9f2e
MD5 f93e256c21bc204c9f4b757335ca5b8d
BLAKE2b-256 31deb9d262b03d42f7b697ae18da083c484ee2ec0d80dbdc6280ba14a9f3d1c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50c65b8da88812bb94e678a33a7c0cc18398e5f5eaa7c2eb614119ed8efabf86
MD5 338945898c57dc6ff262aaeff954e517
BLAKE2b-256 6ea40de5d9297f698a47ce5b09312c76cc845bfd288e4a7b66ae17e6c786f08f

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a978e7e8a4701aa8202bdc9eca584c60ea420598b2bf9e09809c913ed41ac2dc
MD5 f4cc05fd864f56bd9e8daf3f2e354d79
BLAKE2b-256 bd2b40a5984060df87cab89127ee63413f35c091eb58ea4515ce849165055ce9

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-cp313-cp313-macosx_15_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-8.0.1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9a050892094139f415313ec0a45ad817f1ca9cc495ccd0123e0aa016bcafa4c7
MD5 134f1b0941fc9873b9c15f23bf52c7d8
BLAKE2b-256 f0e50e61b5d4d20bd4221d733a71b5dfa281d9f9339c323a1e4c1648f2ca0be9

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-cp313-cp313-macosx_14_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-8.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: piquasso-8.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 915.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for piquasso-8.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 79e621510d0896eb40407f38aa0577371423cedaa50b563293afc67f4191754b
MD5 0fa3c786d05b981b58b58e8946120f8e
BLAKE2b-256 6c6f50473afb8b8e90a5a927bfd7e8b85b3c9331a84b8cbbf82ff578cb4ccd42

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for piquasso-8.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7d02a084154d991070f84807075036bce88759b0b357031404269e2fc9f22b55
MD5 9d8b022b8c15be725f345ffcf597b523
BLAKE2b-256 e8e50da7a449346f298d7afa808546a0d1e1434abb738b1d720bcddbc2186c09

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7b49abe2aaf91814e375457e377f3be0d1d4cd58ae16f467d8ba9f47a3e5fd3
MD5 96d43150c05526f140db49508dce66f9
BLAKE2b-256 bf999c771a95de5f344e5b41937bf04230e92936a464f3b8c69a9a4a01df887c

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b0312953f206357a1c41af2496bed3a5aa29356673c0b475b1899781e02bfc9c
MD5 87db2a9389237d94d5f58418f88291b2
BLAKE2b-256 99c070a9f218000163108c03cd641cbc7f62c0649794a6fa97c7c16c79d4233c

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 60ec73b665eaab612e58042beb5994d8cd66125d1b273e25ebe9301119658ce8
MD5 e145d5c36fb81edb1c23b7697cb3d3c3
BLAKE2b-256 c5d5cfd28f936b3ab6deeec88d72e49cad4d6a56e279d6bbe2f7529f72356522

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-cp312-cp312-macosx_15_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-8.0.1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4c05e3fa8c3c2571a2e956c6880331635428de5f694f7c7f3099a3f65ac5d800
MD5 bcb56eaf243559b59113f7f53535627c
BLAKE2b-256 33ed28e213b1e74d73a44de01e2fd4bf298a18fbbd0c89e7691fedc17b291ac8

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-cp312-cp312-macosx_14_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-8.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: piquasso-8.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 905.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for piquasso-8.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0d459725180e2e89a56d55669c9af4d914498f2731f8107666b3711463eda3b7
MD5 d239ab5ebb7934f0133f88bd0f20f94b
BLAKE2b-256 d1ea7844a38024aef10203607168661b2c69d54fd4a68052bf59a7aaa6e6289d

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for piquasso-8.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 90344cb78a9b4635f23b96d069759893f574e116604f188b1ad93f463c2ea0d1
MD5 ea397146057fb9587cabf98a17a5ec6a
BLAKE2b-256 18d6c0d27e6d8c101cea3268a3c5f917c0d558f128a796422faaae37749b8489

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd0756f0e333fddde3d778b85c54fd862baeee4d086c1e75195f026ffc1f8dc9
MD5 f86db0fbb70d725451c12ae002a70392
BLAKE2b-256 11a6796d2702dd117fb5056bdd0306f0eef9866b8a7a7442e5cbb6f710069614

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 148f1874ed464061d45e842eebd549e24bcd39f0ce2efe5e8324b4e512c55d90
MD5 af5b4f8b80e98427c2609bae7ed97dc7
BLAKE2b-256 bba51a69109cd9893fc61ebf8cc4a7419f78a7fb1d5001f3e6d6186c77baec90

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 81367ba7a25d282f4f71759999e19d663d4d8e4fced04944c774a089cb291eeb
MD5 58302eff1fa472b6abba36131d5ea6ee
BLAKE2b-256 cfd27829f9267db3dc38e7bf762015ed71130fce4a915cd013b4bdd13fc8a388

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-cp311-cp311-macosx_15_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-8.0.1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 08f4d07fd6ab01b5c0fc50c0be0476f56c7f3061980c3c8cf118cfd5c24a941d
MD5 8097d36138035556871dac066b032f79
BLAKE2b-256 9cbf574e2f28880560c85b69e752255cdbe468b31395f246f01d46130e79a956

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-cp311-cp311-macosx_14_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-8.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: piquasso-8.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 902.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for piquasso-8.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8b5982f299ec48b87742142998b8c12ffd6f25fe0a1145e1d632798bc4d6b36d
MD5 d1baf94d3c9af2651eb50a0bb2a77199
BLAKE2b-256 2ca8223d637067d7f65c21ed22f3bbb1fd017e27bc7792f0260097e788b51605

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for piquasso-8.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f642d0c79a75d2a7e93e08b676c5256258ac2c48816afb60e12a399af63827f2
MD5 55932859f119c8ac0e317041ea3c2eca
BLAKE2b-256 809b63d5499e460bc45ea87aef70f9ad03b9eebae56af5b43c3a08cecad833c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b1f029ff0c6ad7884fc44856b8816cacfc178524005157e051176f90bec6ff1
MD5 1c567dbf1a751581ce6d659e62c2cdb2
BLAKE2b-256 0dadd54ac2aa803c5f62887b3aad842b30aa2b9ecb91f8b77060a5cd8fd3efef

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b73495c39762c00dbe344f4d8aea9f146c171a0a27215e0d3d696c766b49ddd
MD5 de9d7753136159242cdefb5275acce1b
BLAKE2b-256 089026887dfff1e86bca5c7609b64cff7948f0eea057cd4a53b22a8d75d5337d

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-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-8.0.1-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 792d80e2c677ca7ab4ff74d71e4f6dd7b6aaf892b51c22e3a1fba386e37098cf
MD5 df54fafc78a06c33a495a224fad11d0d
BLAKE2b-256 d609a301f7137dda8d8ece15d171555dede18dce2ebf3fa29ffdb862ceef524d

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-cp310-cp310-macosx_15_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-8.0.1-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-8.0.1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ca3e083d07ffb1e55a6f8184daa75312a2445848a141c443ece9d4d0e8ac3f5c
MD5 635b03a14a2c3da6091eb7a4635cb430
BLAKE2b-256 c14ee48646f429de73dbc8245e4593c77fb66da3b14f7257e512ff8128195aca

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-8.0.1-cp310-cp310-macosx_14_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