Skip to main content

No project description provided

Project description

qoqo

Documentation Status GitHub Workflow Status PyPI PyPI - Format Crates.io Crates.io

qoqo is a toolkit to represent quantum circuits by HQS Quantum Simulations. The name “qoqo” stands for “Quantum Operation Quantum Operation,” making use of reduplication.

For a detailed introduction see the user documentation and the qoqo examples repository. Additionally, the API documentation is available.

What qoqo is:

  • A toolkit to represent quantum programs including circuits and measurement information.
  • A thin runtime to run quantum measurements.
  • A way to serialize quantum circuits and measurement information.
  • A set of optional interfaces to devices, simulators and toolkits (e.g. qoqo_quest, qoqo_qiskit, qoqo_for_braket, qoqo_iqm).

What qoqo is not:

  • A decomposer translating circuits to a specific set of gates
  • A quantum circuit optimizer
  • A collection of quantum algorithms

If you are looking for a comprehensive package that integrates all these features, we invite you to explore our HQStage software.

Installation

On Linux, macOS and Windows on x86 precompiled packages can be found on PyPi and installed via

pip install qoqo

Installing from source (optional)

If no pre-built python wheel is available for your architecture, you can install qoqo from the source distribution using a rust toolchain (for example available via rustup) and maturin (also available via pip). After installing the rust toolchain and maturing run the same pip install command as above. In some cases on macOS it can be necessary to provide specific linker arguments as shown below:

# can be necessary on mscOS
RUSTFLAGS="-C link-arg=-undefined -C link-arg=dynamic_lookup" pip install qoqo
RUSTFLAGS="-C link-arg=-undefined -C link-arg=dynamic_lookup" maturin build -m qoqo/Cargo.toml  --release
pip install target/wheels/$NAME_OF_WHEEL

Using in a rust project

When using qoqo in a rust project providing a python interface add

qoqo = {version="1.0.0", default-features=false}

to the [dependencies] section of the project Cargo.toml.

Create your first circuit in qoqo

The following code snippet can be used to create your first circuit in qoqo. For an expanded collection of examples please see the jupyter notebooks in the qoqo_examples repository.

from qoqo import Circuit
from qoqo import operations as ops
from qoqo_quest import Backend

circuit = Circuit()
circuit += ops.DefinitionBit(name="classical_reg", length=2, is_output=True)
circuit += ops.PauliX(qubit=0)
circuit += ops.CNOT(0,1)
circuit += ops.PragmaDamping(qubit=0, gate_time=0.1, rate=0.1)
circuit += ops.PragmaDamping(qubit=1, gate_time=0.1, rate=0.1)
circuit += ops.MeasureQubit(qubit=0, readout="classical_reg", readout_index=0)
circuit += ops.MeasureQubit(qubit=1, readout="classical_reg", readout_index=1)
circuit += ops.PragmaSetNumberOfMeasurements(number_measurements=1000, readout="classical_reg")

backend = Backend(number_qubits=2)
bit_registers, float_registers, complex_registers = backend.run_circuit(circuit)

Features

qoqo provides the following functionalities and features:

  • A Circuit class to represent quantum circuits
  • A QuantumProgram class to represent quantum programs
  • Classes representing single-qubit, two-qubit, multi-qubit and measurement operations that can be executed (decomposed) on any universal quantum computer
  • Classes representing so-called PRAGMA operations that only apply to certain hardware, simulators or annotate circuits with additional information
  • Support for symbolic variables
  • Readout based on classical registers
  • Measurement classes for evaluating observable measurements based on raw readout date returned by quantum computer backends
  • Serialization to json and deserialization from json for circuits and measurement information. Serialization support can easily be expanded to other targets with the help of the serde crate.

Please refer to the API documentation for technical details on qoqo functions.

Support

This project has been partly supported by PlanQK and is partially supported by QSolid and PhoQuant.

Contribution

We welcome contributions to the project. If you want to contribute code, please have a look at CONTRIBUTE.md for our code contribution guidelines.

In order to facilitate the contribution of the addition of a new gate, please also have a look at add_new_gate.md to read a quick explanation of the main steps necessary.

Citation

If you use qoqo, please cite it by including the URL of this github repository, or using the provided BibTeX entry:

@misc{qoqo2021,
      title={qoqo - toolkit to represent quantum circuits},
      author={HQS Quantum Simulations GmbH},
      year={2021},
      url={https://github.com/HQSquantumsimulations/qoqo},
}

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qoqo-1.21.0.tar.gz (439.4 kB view details)

Uploaded Source

Built Distributions

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

qoqo-1.21.0-cp313-cp313-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.13Windows x86-64

qoqo-1.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

qoqo-1.21.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

qoqo-1.21.0-cp313-cp313-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

qoqo-1.21.0-cp313-cp313-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

qoqo-1.21.0-cp312-cp312-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.12Windows x86-64

qoqo-1.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

qoqo-1.21.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

qoqo-1.21.0-cp312-cp312-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

qoqo-1.21.0-cp312-cp312-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

qoqo-1.21.0-cp311-cp311-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.11Windows x86-64

qoqo-1.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

qoqo-1.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

qoqo-1.21.0-cp311-cp311-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

qoqo-1.21.0-cp311-cp311-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

qoqo-1.21.0-cp310-cp310-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.10Windows x86-64

qoqo-1.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

qoqo-1.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

qoqo-1.21.0-cp310-cp310-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

qoqo-1.21.0-cp310-cp310-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

qoqo-1.21.0-cp39-cp39-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.9Windows x86-64

qoqo-1.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

qoqo-1.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

qoqo-1.21.0-cp39-cp39-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

qoqo-1.21.0-cp39-cp39-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file qoqo-1.21.0.tar.gz.

File metadata

  • Download URL: qoqo-1.21.0.tar.gz
  • Upload date:
  • Size: 439.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for qoqo-1.21.0.tar.gz
Algorithm Hash digest
SHA256 f1440bcc004f5f7f3efd2f7df745c3b2a64d29c7f680dad2e5f17250c989721e
MD5 f8071d36b5c8121beb6877fe14799e15
BLAKE2b-256 8961ed062497556616c69aba9e9e80198a89417551a41923a30da7df1ed9de49

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: qoqo-1.21.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for qoqo-1.21.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4332f2211e5e24cd00ceae3506ba113f77d817c89b8f92ed811d008413f296cc
MD5 c915febb0fa59f718d974c304fd833a5
BLAKE2b-256 f7ba60d6f3553cff6a9234ad6ae7b8677daf0b61ca9bd443feda4ba196d03697

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e167f8d5ab43ec72a4d00d6fa7234df416c4e1253073fc9cd0fa0cce7baf68d
MD5 958f04e9ed6795b14d15e25d2a463c93
BLAKE2b-256 314427493d383c369b71a8d16c4beb09e23ad5a649cef54079e137f8f246cb72

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb7d5998cf0474f16aa07238a97c495f07f8d61dc662f7b75796340b8b1e5c9a
MD5 1b9fba2d2c8b204fa9a1757cacd3e1b8
BLAKE2b-256 e9131668dff2db630612d782a6380a4b2f179d8f03f47c9ecbc8a7eaa5da3aad

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efce424751248a7c87151bb45df821352df80538ebfe6edf5a45bf119ec6f6a7
MD5 c87defccd9d18fb9b2c24a528196d0cb
BLAKE2b-256 41fe15d7fbc439d1ba0a48035029cbace88f85451c5fff89967e64cee68ad08f

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1a9eb32b5f3585e8440f04f1c2580101c61e1e40d704c1e3641e1220ea6f774
MD5 1f96df577e88cf61584fb0a5d4abcb64
BLAKE2b-256 278ca877c8a7c1466075bdf5494d5c9823c50d72fe6fa54a2dfc858adc76c1a2

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: qoqo-1.21.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for qoqo-1.21.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d7c5d263b6bac7955c7dc48f05b85cc4930d13df02dfcff1e8ac7461275b6449
MD5 86321b3f4cca81add670bf8302ee7106
BLAKE2b-256 0c72223dfb0ec0f0fc97afb5fcf8c605689928152da828288ac767e8f034814b

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93bb6c4f1fc44f915d33d138f6cc2ffc779c2f011032a606cc081d24748cae09
MD5 b488429fd0aa5de1dbb0b094c8cfb811
BLAKE2b-256 362f8fd78e08c2e57e05b008ef82bb8927d2fb79fe23906c1deff47a665bc37a

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d17fed056a60883bf2308ebcecf5cefc9ac5e8b889fe440682094c3c1695f45f
MD5 7c21d836b73f70a3396b388a716c78c2
BLAKE2b-256 38d8f599d38a42f62d00e0616029b387b9acbd316a7b11b2277dd0b8d809bea3

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d30811df09b5b3279b31213741e05b85ee5e3cd3d8548c0042c2579323977d22
MD5 0e4e88a89c258d3fc8d7c0ae12cff0a3
BLAKE2b-256 4ab0a4aa0ba53eb374cf5970ccc1ca3f96a998f5f0670cfb5f13693f65460be6

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36a569bc2189c1373381435a5f6e01595bbd91089df05401b112066d4a39cc44
MD5 37b313f3ad19bf2adee0afde8c5d1b9a
BLAKE2b-256 a6aa23f525c989519143404e88cdc008c10f49d0ea790dbde217224d02ee66ce

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: qoqo-1.21.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for qoqo-1.21.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 78d415ce83bea5ab95902942ef1c3f9758bcf5cd8f4212a7dc2404627f5f04aa
MD5 30dd4968e13380a00d2a7a14e6cc5c15
BLAKE2b-256 da198ad650457e73773c91642bd899cf6507c24ce39e921486f13e323222868f

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 045b5c78216f5b79f8f0d998cf7f0261b4a29ea7671d54b217d0c6fa2b85420c
MD5 4c3e43d4419d29c4244b9d24562fe31a
BLAKE2b-256 51417b9a2023cd4388be0531a672c58ba44aee676b98f7ff47b762363465cce1

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 841b38a874e5d47bcb35aa530632196142b74c255ba85c6b28abf5bc6fcb32e7
MD5 92676d5fa516e9772fedc218df127e85
BLAKE2b-256 c0276cf36eb2f65fae727c7a9e2836a468487e176aff8d485013dc42816d68e7

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 573a5bf0064f687b339b4f311ab81ecb2d708c00fb49040e7117593549805dec
MD5 9353b0de6dde3a3ac62e018890d4687d
BLAKE2b-256 3c34ce5fb23220c3df19a0c12109732e401d72dbe22c7bdf6fe8e5d4f723c55d

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee8ba5b32eeba67dcc769a9d38054957b72249d758bbe10103e3ac6ea7bd2036
MD5 f6a26d1a08a6e7f63770593956fbee45
BLAKE2b-256 0a268419aa4054b0fcd076e73d3ccff309ae5425ad7bf6dc6cd0434bff068c28

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: qoqo-1.21.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for qoqo-1.21.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c8cf25a73f4534ac1c7efd53796e82df1c45de79dfda360e86cf28194cda8200
MD5 42371cda61bf5c78bfae33ea6be034f5
BLAKE2b-256 4244ec5e87aacd232e8bebbd6e900926193b30b5422c3c94894f2cfaf166a51f

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91772c444a84b8da8db2324fe05deb036cac0be02cb3bcffe0c774c502ac72e7
MD5 50f6eeb7ae1b581d2233e457f0f1577e
BLAKE2b-256 dc5426f53d04ea0b02540a0b5889e3caf375ccd2bf8ebfc1e5a7a4a6c0c3b1e5

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bc49c1e30f5fc154471d307fcb74038cca9a15386527bef17e1188cc67f3b00
MD5 1d12e32805dd7c879e4ca58a5509e00b
BLAKE2b-256 bd5290bdf8215a994fd63ff5af6987993b4404fc75500ea50506e05576eaa371

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e77eb9d96330a0161f2627d1b57dfd8ad726db165cd36cfed3e7e01657219c6
MD5 3a069a55fa36f7956b88f6350a77b9a8
BLAKE2b-256 a77fe0af432129a10817869307b6f1de99a589194fc8c80e43fd1d5821b97675

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a1fe5ca5480b44e2e23b470dd81326a1640670b357a5b9e74742cf96b4d8776a
MD5 52bd8e9eabf7d732e308e8444ad57552
BLAKE2b-256 f8edba9dbb6902fcc44da3b04a05eb07cbc3a3429eaaea2416ec580642e6fc1c

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: qoqo-1.21.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for qoqo-1.21.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a3e6ae3bee49260ce62eaa937a7976cd409a1a4ea37264ff888f332a7315c910
MD5 e8ddad4299a50a7a13e5194c2c5266ea
BLAKE2b-256 3533edb99ef543a05863a3eb0ac2cf5f94cf3aaac4ce4ff3218833874ca3bafe

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 787e960168571006a55fb189806384e62c47c475872317eaab61817481fc4f93
MD5 dffbd29b058b30a3bb38a4a64765f449
BLAKE2b-256 ac578bedde8cc59fbbaa24d4c70a3db545d759e32e762c4cb7d0060e950a2bdd

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b1dfc0d581673ed2460ee2e49c7bf98aa8751e9a84aa465f4e9134093920fe2
MD5 7a426a1a0201c695fb2175e662c8f539
BLAKE2b-256 fca4a0c3f98dd55f63394db6d9acdff4fc72f0012980e383bd5ad8b738f34689

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6524d222dc7a1411f3e9a28d99c083b79a45146b3a427694ba9a137f7e58b797
MD5 3e6e2a90b39c78683d0f992422ce1d4b
BLAKE2b-256 d43bbb0122ff7bc83be48dde98b34debff577658d8d9f5b75c9abe1af469991d

See more details on using hashes here.

File details

Details for the file qoqo-1.21.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qoqo-1.21.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 45d2cf4a4b27e5493b523527ef21893afa855da799fa73b4c5239bd9025f5bed
MD5 49005589103ba90885309c5417af883e
BLAKE2b-256 d63082fccc08da2746f671ef3313e793672c63620f966e5c1d3645bec4a9fdbf

See more details on using hashes here.

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