Skip to main content

Open Quantum Application Research Package

CI Coverage PyPI Documentation Python 3.11+ License: Apache 2.0


OpenQARP is a Python package for quantum computing research. You describe a problem — a molecule, a spin model, an optimisation instance — build a circuit for it, and run that circuit on a fast simulator or compile it for real hardware. It is aimed at researchers: the physics is in the foreground, and the C++ engine underneath is something you should never have to think about.


Install

pip install openqarp

Wheels ship for Linux (x86_64, arm64), macOS (Apple silicon, Intel) and Windows on Python 3.11–3.14. Anywhere else pip compiles the C++ backend from source, which takes a few minutes. For GPUs, editable installs, or a build on a machine with little memory, see the Installation Guide. The distribution is named openqarp; the package you import is qarp.


Getting started

Three snippets. Paste them into a Jupyter notebook in order — each one builds on the last.

1. Build a circuit and look at it. Circuits are blocks: you say how many qubits, add gates, then build().

from qarp.blocks import SimpleBlock

bell = SimpleBlock(2, name="bell")
bell.h(0)
bell.cx(0, 1)
bell.measure([(q, q) for q in range(2)])   # measure qubit q into bit q
bell.build()

bell.plot()                                # draws the circuit diagram

2. Run it and get the results. A primitive says what you want out of the circuit — here, the distribution of measured bitstrings. The engine runs it.

from qarp.algorithms import Sampler
from qarp.engines import QarpEngine

sampler = Sampler(ket=bell, n_shots=4000)

engine = QarpEngine(seed=42)               # seed makes shots reproducible
engine.build([sampler])
results = engine.run()

print(results[0])
# {(0, 0): 0.48875, (1, 1): 0.51125}   ← a Bell state, up to shot noise

Keys are tuples of bits indexed by qubit: position q is qubit q. OpenQARP is least-significant-bit-first everywhere. Values are probabilities, not raw counts.

3. Measure an observable. Swap the primitive to get an expectation value instead — exactly, or sampled with shots, from the same circuit.

from qarp.operators import QubitOperator
from qarp.algorithms import PauliAveraging, StateVector

circuit = SimpleBlock(2, name="bell")
circuit.h(0)
circuit.cx(0, 1)
circuit.build()                            # no measurements this time

H = QubitOperator("Z0 Z1") + 0.5 * QubitOperator("X0 X1")

exact = StateVector(ket=circuit, operator=H)
shots = PauliAveraging(ket=circuit, operator=H, n_shots=4000)

engine = QarpEngine(seed=42)
engine.build([exact, shots])
results = engine.run()

print(results[0], results[1])
# (1.4999999999999998+0j) 1.5        ← both agree with ⟨H⟩ = 1.5 by hand

That is the whole mental model: block (what the circuit does) → primitive (what you want out of it) → engine (run it). Everything else — VQE, QPE, circuit cutting, noisy simulation — is those three pieces with more interesting parts plugged in.

Next: the six tutorial_00tutorial_05 notebooks in examples/ take about an hour end to end, or jump straight to the OpenQARP Tutorial.


What’s in OpenQARP

Algorithms

VQE, VQD, SSVQE, ADAPT-VQE / ADAPT-VQD, QAOA, QPE, DOS-QPE, PCE — ready to run, or assembled from primitives.

Circuits

Composable blocks: hardware-efficient and QAOA ansatzes, Trotterised evolution, and custom blocks of your own.

Chemistry & physics

Electronic structure from plain numpy integral tensors, with Jordan-Wigner, Bravyi-Kitaev and parity mappings.

Simulation

Exact state vectors, shot-based sampling, noisy simulation with configurable channels, mid-circuit measurement, and circuit cutting for problems too big for the qubits you have.

Hardware

Compile to a device’s gate set and qubit layout, with noise and routing models — and plot any of it with Matplotlib.


Documentation

Full documentation is on GitHub Pages.

Resource

Description

OpenQARP Tutorial

Guided path: blocks, primitives, engines, VQE loops

OpenQARP Philosophy

Design principles behind OpenQARP

Installation Guide

Build options, GPU, LAPACK, developer setup

Examples Directory

~50 runnable notebooks by API area, plus worked use cases


Benchmarks

OpenQARP is benchmarked against qiskit, pennylane, pytket, qulacs and cirq on operator algebra, simulation, sampling, compilation and end-to-end algorithm runs. Tables are in benchmarks/tables/; every timing row carries a correctness check against an independent reference, and rows whose checks disagree are not published. The harness that regenerates them is benchmarks/README.md.


Citing

If OpenQARP is useful in your research, please cite it. A paper describing the framework is in preparation; until it appears, cite the software itself (CITATION.cff carries the same entry in machine-readable form):

@misc{openqarp2026,
  author = {Scali, Stefano and Soloviev, Vicente P. and M{\'a}rquez Romero, Antonio and
            Coyle, Brian and Buonaiuto, Giuseppe and Paine, Annie and Fetherolf, Jonathan H. and
            Diez Garc{\'i}a, Marcos and Krompiec, Michal and Kirsopp, Josh},
  title  = {{OpenQARP: Open Quantum Application Research Package}},
  year   = {2026},
  note   = {\url{https://github.com/OpenQARP/openqarp}}
}

Contributing & support

Contributions are welcome — please read the Contributing Guidelines first and the Code of Conduct, which applies to every project space. For bugs, questions, or feature ideas, open an issue in the Issue Tracker.

OpenQARP is developed and maintained by the Fujitsu Research of Europe team, and released under the Apache License 2.0 — see LICENSE. The copyright notice is in NOTICE, which the Apache License requires you to carry forward if you redistribute OpenQARP or a derivative work; the licenses of the bundled third-party components are in LICENSES_bundled.txt.

Download files

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

Source Distribution

openqarp-0.1.0.tar.gz (4.3 MB view details)

Uploaded Source

Built Distributions

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

openqarp-0.1.0-cp314-cp314-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.14Windows x86-64

openqarp-0.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

openqarp-0.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

openqarp-0.1.0-cp314-cp314-macosx_13_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

openqarp-0.1.0-cp314-cp314-macosx_13_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

openqarp-0.1.0-cp313-cp313-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.13Windows x86-64

openqarp-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

openqarp-0.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

openqarp-0.1.0-cp313-cp313-macosx_13_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

openqarp-0.1.0-cp313-cp313-macosx_13_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

openqarp-0.1.0-cp312-cp312-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.12Windows x86-64

openqarp-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

openqarp-0.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

openqarp-0.1.0-cp312-cp312-macosx_13_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

openqarp-0.1.0-cp312-cp312-macosx_13_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

openqarp-0.1.0-cp311-cp311-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.11Windows x86-64

openqarp-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

openqarp-0.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

openqarp-0.1.0-cp311-cp311-macosx_13_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

openqarp-0.1.0-cp311-cp311-macosx_13_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

Details for the file openqarp-0.1.0.tar.gz.

File metadata

  • Download URL: openqarp-0.1.0.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for openqarp-0.1.0.tar.gz
Algorithm Hash digest
SHA256 13bcea0090cc19c48858d0d45e56facd9941c703b853b325668a0f0a10726f8a
MD5 3231c19e8a9686c238341550d260cec8
BLAKE2b-256 440882d5030a241789f84159931979a5ed12128701cf57232c82c3593aee103a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0.tar.gz:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: openqarp-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for openqarp-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ba67a88ba6389cf7729a8912e08062591b2d22d7a34d3a5b97f5eb6b28a6c780
MD5 a30c90c984d1869d698d51c88e8868a6
BLAKE2b-256 93f752d674a1e644ddf3fd9c7206501043cc1ae167bbd41f4b2e8f56c035760c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14b0723b2b9e0256b044db1e643d62dd358bde471a84f187cd55383336a13dc4
MD5 3bf55d813c21832c9a48d3bfe87de064
BLAKE2b-256 f86ad03a59c1713d7b5fd32bb396cf521b85b9a1dd4892208748413a6885eb11

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 51a5446eea3466115df7881b5ef9c0778ad021bba62fa5156c32ad3615d7145f
MD5 ec5f75c0d15398cb2a989559e7850ed9
BLAKE2b-256 b96447a1d09155d0d8f09f5da7687b4155657a79f8c61545d6dc65c1e0dcc50d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 367501228f1dff750d77ce64b6796410b5ba34563dba3428e887db0752850829
MD5 681411094ddf66a0fd4958a82ef78b6e
BLAKE2b-256 c7251d8f036ee31bb0614c60519efaf53dbdaf6f4834f66a05f4113d6f8e4865

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp314-cp314-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b4bd74996bccf8e778e51770414360ce7ed0aa0a095bb2ed40bf8dcf4de50910
MD5 44f958478a74fb1db934401e07d9c969
BLAKE2b-256 b1009dd47c0ea244fc9e5300160bc1bb324bfcfef11900e6fe5fb374be4c330e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp314-cp314-macosx_13_0_arm64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: openqarp-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for openqarp-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 617804ab4227f7a120a4a68ef9d3e3dad0a03d12df104abca9cb1e3b74a0bcb5
MD5 23c5b762ef0d96fb7e24bc2a8e321a34
BLAKE2b-256 1c781cd2a77a3d0f318863206acf17dc7cc15874bc0cdceabac48788e6e5c448

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35489eafde96ff41ffa8a4169768862ca152d815b032258679b9067a9cdb52fa
MD5 f8da1c2bc0c9b58549be03956daf9717
BLAKE2b-256 4ab5da8291056de984d91aadc5667383aaf57301546607fdcbc9454a40e1eb1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f12f592a4cce1dd7a53798b14551f33628d5039cef6274a125ec5eb632303b46
MD5 39e1f3e6130175ce0a0cb3aed18264d7
BLAKE2b-256 db04a8841a80ba6e22efc678e6dbbfdaee5a7c27d666702f630f7bde8a487634

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6a73b8b48870a484770542299966f537ba757a9efae5d0ea9db0be4576834f8c
MD5 9d35c667ba54ca518c68a49d5609d976
BLAKE2b-256 6dec5c4f420e62ae896c3909b34283e0509b9da436f0eb2bda74d371112bb8ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp313-cp313-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a02e34ae7cbfb0de07150222815c3874932b6ab82892e065f6f5fa5507a4becb
MD5 6475f57893647f0d427f3d151eec7dde
BLAKE2b-256 5c1c32fe1f18ec5b70b5c409b8799186fd3d63736985b5a7bd8751e2e365175d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp313-cp313-macosx_13_0_arm64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: openqarp-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for openqarp-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0b1cb677bd39a3eea758e56439b28a60526164a10b6ed8ecb6c29474edb53975
MD5 6ad023b3f2f21c7e6d7c9870dc97320e
BLAKE2b-256 5d39e2c21b4dc1be261b98eede7000c73009bfde5fa5831432e250b986211e90

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ebef3b831e248c239037d2ca46a5dfb0071ce6f753d79ab7bdafcf03a2cc2e5e
MD5 310a88a82723fb48dda61e5b86f59022
BLAKE2b-256 a123ef6f1a072105ca188bcdec9b5db9bb31b8e0fc61a4707f96aaad9e444fb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b7f7f1eb5b3626de522d3574697fea9b23d47d75ac17115e0d61c7447706cfc
MD5 abf1fe92bd1ecfeb089c400a61bc514c
BLAKE2b-256 321a589cfe4203aeb9604a459fa924228ef7baa9575f600ae8bce0ebd48da6ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ef40474554121a58e5791c3edf0b5660e914befe10f814fed6e82608d92f0b57
MD5 83f1c5940862e63f546079811315dc6a
BLAKE2b-256 1bc66a53211f0093a6506bbd5b812bfe462e481773905dd02d115c0f64718b43

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 62fe3939ec305c86fe332efaf110e4ae942175aeabd6a0233ee2fc8401d148d1
MD5 bd7a792558f9468ebcc972d55f3ab35c
BLAKE2b-256 8627c8ddadda5ee38f6e505f29e34a245d50f3b5e540450b119700080bd20f2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp312-cp312-macosx_13_0_arm64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: openqarp-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for openqarp-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f1d4808b971c5e8eb9af50fb34ddaf761bcf9df9a185827b1e6e1ae724406e21
MD5 ec6f6cf99533cccebe060a242bd0042d
BLAKE2b-256 950974f8100768319a3b779a2c91ece803b87893534871e3ddc680bd0c789acd

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b3f33c4b6d20b33cc3a522f1e548df5152d331d4dbab037e25f71f41d29e35b
MD5 774df3abe7a2b3ad985e97ee2c79346f
BLAKE2b-256 41613e056de2f0c3da989fe53d90d4f6c85a75d2fdead1f9588afeeb3101f5ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba20371b7e1f3612566b35ba457b37bfc2bd19982753b9f91e9620c72e336811
MD5 60cf28d8eefa90a653f6600366e43c92
BLAKE2b-256 8fa3465327b53b8b85d6219f8764cd7101309b63501215d5d54d8b247a1d67ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ecce80ea6f624c41606740e8119f88f097aacf94b136189cc4ce7738156af668
MD5 53f8ccd62a755cc133a30e525b260637
BLAKE2b-256 6ca76108cb6445bc9ca19af52a5ef2a3fb0f47336bd35ff20bf147c9922a8649

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

File details

Details for the file openqarp-0.1.0-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for openqarp-0.1.0-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ee5d5cbaa41fec0803f1f7ab123f7ddac92ee93cf072b3b6984f6ea756c53458
MD5 3bf0a282209d6463b764c98c01d12174
BLAKE2b-256 614e5566fecec9aeb2514249ea2ae316b36308385f49d2452a7d9c3f57bf1f32

See more details on using hashes here.

Provenance

The following attestation bundles were made for openqarp-0.1.0-cp311-cp311-macosx_13_0_arm64.whl:

Publisher: wheels.yml on OpenQARP/openqarp

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

Release history Release notifications | RSS feed

This release

0.1.0 This release

21 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page