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.0.tar.gz (780.1 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.0-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.0-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.0-cp314-cp314t-macosx_15_0_x86_64.whl (505.5 kB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

piquasso-8.0.0-cp314-cp314t-macosx_14_0_arm64.whl (816.3 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

piquasso-8.0.0-cp314-cp314-win_amd64.whl (934.4 kB view details)

Uploaded CPython 3.14Windows x86-64

piquasso-8.0.0-cp314-cp314-win32.whl (785.5 kB view details)

Uploaded CPython 3.14Windows x86

piquasso-8.0.0-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.0-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.0-cp314-cp314-macosx_15_0_x86_64.whl (496.2 kB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

piquasso-8.0.0-cp314-cp314-macosx_14_0_arm64.whl (802.5 kB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

piquasso-8.0.0-cp313-cp313-win_amd64.whl (914.5 kB view details)

Uploaded CPython 3.13Windows x86-64

piquasso-8.0.0-cp313-cp313-win32.whl (771.1 kB view details)

Uploaded CPython 3.13Windows x86

piquasso-8.0.0-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.0-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.0-cp313-cp313-macosx_15_0_x86_64.whl (852.8 kB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

piquasso-8.0.0-cp313-cp313-macosx_14_0_arm64.whl (801.7 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

piquasso-8.0.0-cp312-cp312-win_amd64.whl (914.4 kB view details)

Uploaded CPython 3.12Windows x86-64

piquasso-8.0.0-cp312-cp312-win32.whl (771.0 kB view details)

Uploaded CPython 3.12Windows x86

piquasso-8.0.0-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.0-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.0-cp312-cp312-macosx_15_0_x86_64.whl (852.5 kB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

piquasso-8.0.0-cp312-cp312-macosx_14_0_arm64.whl (801.5 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

piquasso-8.0.0-cp311-cp311-win_amd64.whl (905.0 kB view details)

Uploaded CPython 3.11Windows x86-64

piquasso-8.0.0-cp311-cp311-win32.whl (768.1 kB view details)

Uploaded CPython 3.11Windows x86

piquasso-8.0.0-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.0-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.0-cp311-cp311-macosx_15_0_x86_64.whl (846.2 kB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

piquasso-8.0.0-cp311-cp311-macosx_14_0_arm64.whl (795.8 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

piquasso-8.0.0-cp310-cp310-win_amd64.whl (902.2 kB view details)

Uploaded CPython 3.10Windows x86-64

piquasso-8.0.0-cp310-cp310-win32.whl (764.7 kB view details)

Uploaded CPython 3.10Windows x86

piquasso-8.0.0-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.0-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.0-cp310-cp310-macosx_15_0_x86_64.whl (840.5 kB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

piquasso-8.0.0-cp310-cp310-macosx_14_0_arm64.whl (791.3 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

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

File metadata

  • Download URL: piquasso-8.0.0.tar.gz
  • Upload date:
  • Size: 780.1 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.0.tar.gz
Algorithm Hash digest
SHA256 03c5f858ae04a05c4ae86c8117b8b1d4a0e99dd002ea65759c2a4d2998682f08
MD5 19a2ebde681cf4c6f448be501accf7eb
BLAKE2b-256 68ff0e1d9f0d1bc08c12dba13be2467d8176d648337baebc7c7aafc61fed70e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b074b5839f458f825d38cdc4909d6b37ba61e9da112842917a353a2b5b14e192
MD5 0c18a7855df64dd6155c4ff8391b03f4
BLAKE2b-256 d796cd47d52c5e6e55280330b8b510ece481ecf3c97cdaa5ccc9a7a1af469cf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 484755221a7467beadaeea19d73a3f4e051b37237d0a82e616899fbc82c727bc
MD5 834840fc647b6b88dfd4272982100d2d
BLAKE2b-256 322e103423264a57a80db01da250be1a07febf8dd5468aca3a14e9eb722ec818

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b50907682bdb2699db10145a99a2baec9fefbecd43ee84d0918a8858a8a74ef7
MD5 dadfeea10e6c67f163d00855b7a5a770
BLAKE2b-256 c624c69ab1fdb4be7c1f1a366af279e259a71f5f0292f0b6ebb3fc7540e47f63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3b279ad45b744580c0f689afe72c5e80b406ec1a26c8c389f63d229b7d7e88d2
MD5 4216a9146acdbf92143120a9a0a2d8ae
BLAKE2b-256 9f9b346298a22b9981397da25f6a3113d1a74e9482df2f400e45935e5d041283

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: piquasso-8.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 934.4 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 817a6c0617f302bcbd96459fde3d75f2c31bdfc355a762a8bad432ec5656967b
MD5 18fc803e26c6cb65e5cc05265fe63f39
BLAKE2b-256 f03184aa7548cb61421a5518ac504256b60c04ec4f01db6231060e5f0b75f267

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: piquasso-8.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 785.5 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d68a2fb3ddd4185fd986c6222ea72659a2b2e4dc661d3f55f7ab6cd6cb80b133
MD5 5c2cdd5b8e5c52af7b6a5c06b0146a75
BLAKE2b-256 bf0b145d0b0b769fa9f38e6151d336636296b4be8dd9f75210111648e0dee865

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eec77039d65f6f5222f3bccf2436cc7d105482e7f711b26f28a3cb2a2c4a22e7
MD5 b9acdab659fbb6766d32308b64716bfb
BLAKE2b-256 ea280b2272b5f04350296cc6cb8ae856e29550139f5793e2161c2d4449f754e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02cb11e2c8e755e6bdb0711879f82ee41d5a2af13704bb0c57bebae45e6cc3c3
MD5 eb88468f38f9a3856f9099b9511268a1
BLAKE2b-256 9bc7683f415dc10e4c7f56be419ed335724f3165b1a52c538c91e687d9a497de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6acb5f38d217db98003da9dfafae71d6521074d7f8343368e6708aa109fbe116
MD5 d063c8f53bbde2d8926fd53403fd585e
BLAKE2b-256 5da5b36cb14c36a804c8178059f66809f0f912bf6769f70ad793f9f63784fdc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 891eb32bab9cbdf25198fc809f908f3039851d063df4a0d0577acbd3b858aaeb
MD5 a6501256d503e11baff1fd0fe4cae301
BLAKE2b-256 5b6fd7e44808fa14a1f605366f2e86b913bcca4183129fb38586785ea5e91c38

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: piquasso-8.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 914.5 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ddfa556402800e707a3b8ff501c149f9889f20f89c5274cc6c399e27104051d1
MD5 7e79cdf6b18744726d689d5068f2feda
BLAKE2b-256 f0cde9b0c001a6ddfba33c6cc61bb71cf5d574554f44e7783c495c1312a4ae1e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: piquasso-8.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 771.1 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9645fc08027c922e0e0c1e6bd60cfc0194b0811df0e287a65847461d439a936e
MD5 8a2b7a8bfc06162abae6b781fedca155
BLAKE2b-256 84e21efd0722aa377b9b11bae1cf26ba7744d4c09d98c15d316da88ae306de30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c94fa93e72dd9bc825b5abcdf5f96d03bf9639d031538bf55f21ea713de0eba8
MD5 0e2c9cf8812e1cf6c8875d9a03f590ab
BLAKE2b-256 400982fef3d5d792654b54676483ceb88447d0dd07fe25f2a5856bc53adef7b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f1acab65627e82da8de7e5020443aa16a43da362445c75d0bb29e8abe44e0f9
MD5 5d712a5a60285149fa1a200afda71d77
BLAKE2b-256 12d2273a172ab1aec73996a8e716756bbb3d620a41812bd1ea8ce907676d6f2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7055bfbd071f0d178e9988b295816f2ebd0ad2fa6c6f5328ffdb61eb87598d9f
MD5 2e5da4fc99811fe305b0127d2fc7fa14
BLAKE2b-256 ab48a04ea0c3b0802e3fdfbbd59988593410b575d923fac35df0de7bfa03ba88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 36e35dfd1c46b62896bd2793bb38b2f7ed4f4fb807d5d9d236fa3bdf561d2b00
MD5 a6110c4324f06f06cb93554ff1a0cf4f
BLAKE2b-256 bf8649006f030def1105fe6aaa4ed6f44d511ad5a830cc0a4e9ebb4d280f9bc6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: piquasso-8.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 914.4 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aadbb204897ffb97baa8b595011d3f84e210bd64d269c2ce480fc0e994337fa0
MD5 e5e53ce098e05fe1152c072455b3d121
BLAKE2b-256 116b2c2bc61ad126d1ee2d9844f65cf74180a0cc21399e0f77bf6483f39c2a2a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: piquasso-8.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 771.0 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ecee42ff3e9c5f179c42785053bf9fa3480c6b9de87c8cc0f5c22be288e48372
MD5 31c78aec929bbefeae381decc8c184af
BLAKE2b-256 2f7b392d3a8aefcddd2bf062856f68c69e5aaf63792fc833d78378774e48f2d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 811b124a711fb38e61a4eda97264b712b9f895b760f5cd0641a5d287d06319fe
MD5 05170e12241b66dae8d2e1b521cbeb9c
BLAKE2b-256 e6a6a34e4542f7c41e5f4ad6b7a79561c976e16f2391e0df63e5cf3dcce9fcee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04326b139ccaea3fc02ff0d347d15f7d8f0daa1b783626662d1bc594b7f50f3e
MD5 ba5876b0b56df4452bb9b877e55179d3
BLAKE2b-256 1243693304d4a6a879840aa8d18ddb1b68d0010e7b1bb38c2e3fd364f3423ead

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8f359039a5da849f726c049a770b52f2e36b8afea3ffe87a4d957337a209ff85
MD5 f0fc03b939afc0d02173c586b3755093
BLAKE2b-256 c44411c45513f685be6b04d98dfd7d316c190b1a1050b48f875f7a5bcb874b84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2e298b8016e0442d38c5797a98636a133d7946de7a268408b7bc425fdb63e95b
MD5 5f4af66b54effb23f472da5c6a14bb94
BLAKE2b-256 3d9c50df68bbc8b235971f23e565928f2ce84b5451b5066f9ea9f835a88f136e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: piquasso-8.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 905.0 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 309e4307232ab7104d5601e6b1ec4acf19d0745ad770a9ac9d2abdb7e66019d9
MD5 37f482785b43f85a374e0776005441b2
BLAKE2b-256 8d5449a5f245dab0b3b4164a6808779c711ae54266a5fcb273e16bd08f7731cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: piquasso-8.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 768.1 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 07dd26d917f0252da75594061591d8e855e28ba163bfbd1d8d2386eaf84f41fd
MD5 c81d6bbbbd7b162c905c4f2e352f65c3
BLAKE2b-256 f9e91bdacc782bf9e16a8e0815e2caed8ea9a6bdef87a7a08fa185ed4f93ab26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36406eaf1ec1e16e799602e5e9a06b024667cb88d82ca4c658894ac9e3e9afd0
MD5 87abcea3ab56aeeea3f9a4e74147c8d4
BLAKE2b-256 2a816b6b942f07fa770b2911c2a155144403b05b4383dedd2ba194ad0968bf75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 86f7a4c613e65f5ad36f106aae1e2d3e386c4fa8ae36e0c3be52c7a76c51c7f4
MD5 7d87f8ee707f4c2ed76ac1ecfc18165f
BLAKE2b-256 d697728154b197ad4d369be072bb2bee902a9f06d266edb56fbfe89e67c754b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c7dfa01490cb62e3747535e055181f7dec7990982a6d22f199c1b0d372a2e7fd
MD5 d6431b3071dc882487d46eaaaaed38aa
BLAKE2b-256 8a96ab73ea5f3d7ad9b7739e849348df43d8c0416cc754ea2ac47cf6c0caa164

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 90df4e1837f256b242df994f222f95902480f2444910f686f12d5e93e98a433d
MD5 1be6651bce60c12693f5193fd187fdcb
BLAKE2b-256 72926f7346a1c11e672730cefa73617859f909105ce0d8800a5f1eee227bb555

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: piquasso-8.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 902.2 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b576cc4e270aaf4e09240dae1afd1d48f236c0f8fe14b43e96806211ae29b4e7
MD5 50954fac371147023e6557cb79e1ffae
BLAKE2b-256 9802c92d1114425aa21e4f192b9f3787bc41c031536029331db949a4cc46422e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: piquasso-8.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 764.7 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3dcf93f3aa78ff6abf44471ccc5e90818005fe1ce002660f47969c56eafce315
MD5 adea5ec8fb045c752d97f02548eb6815
BLAKE2b-256 82bc95e53d4f8dae87f9eaf0b4ee146f0d24a155aa677c6a0ea30efea3a4b3d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e98feef60b79964b85f6f4569d2899716759be9e8055cf4fbbb694a991ba8489
MD5 c696b0d93f4563858c40a1d1419fdc03
BLAKE2b-256 478beb15c4c233e7ea70e5309966e1c78046c3867aaf67f6689643a18c3e28be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 215fd1e01aeaf3eb0d28f4785fede8479eb6f86ebb43f0571d9b96469da983ce
MD5 1412966a095e236d42ea0cbead0e0de8
BLAKE2b-256 67ba99d06a8e2a6107c64f0c3ab12f1dea4bd2c13d6096d3bc9abcbcf8a8268b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4ff56c743d32b06bbce1c39b958cc865e27379ff1448c1f2288cabf8b7a84947
MD5 a262b44d168980d9437bfde04614740c
BLAKE2b-256 3f696434bc9d9ed9e37612f169868fa4fc65efdd1785ee206aeac0b15a147d55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for piquasso-8.0.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f128274535baa9772cb3461dbf520bad92ca959fb28f43db447b8b19c5566c7b
MD5 6259451b18e64712015ad22a418c3a6e
BLAKE2b-256 c199d4ff9c242e40563796dc71ac88c6b811e4e7af260fcadfdf63958e49169c

See more details on using hashes here.

Provenance

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