Skip to main content

Python SDK to BlueQubit app

Project description

BlueQubit Python SDK

Quick Start

  1. Register on https://app.bluequbit.io and copy the API token.

  2. Install Python SDK from PyPI:

    pip install bluequbit
  1. An example of how to run a Qiskit circuit using the SDK:
    import qiskit

    import bluequbit

    bq_client = bluequbit.init("<token>")

    qc_qiskit = qiskit.QuantumCircuit(2)
    qc_qiskit.h(0)
    qc_qiskit.x(1)

    job_result = bq_client.run(qc_qiskit, job_name="testing_1")

    state_vector = job_result.get_statevector() 
    # returns a NumPy array of [0. +0.j 0. +0.j 0.70710677+0.j 0.70710677+0.j]
  1. An example of how to run a Pennylane circuit using the SDK:

To use the Pennylane plugin, you must have pennylane~=0.37 version installed. It requires Python 3.9, but we recommend using Python 3.10 . Make sure your Python version is not older

    import pennylane as qml
    from pennylane import numpy as np
    
    dev = qml.device('bluequbit.cpu', wires=1, token="<token>")
    
    @qml.qnode(dev)
    def circuit(angle):
        qml.RY(angle, wires=0)
        return qml.probs(wires=0)
    
    
    probabilities = circuit(np.pi / 4)
    # returns a NumPy array of [0.85355339 0.14644661]

The packages is tested extensively on Python 3.10.

Full reference

Please find detailed reference at https://app.bluequbit.io/sdk-docs.

Questions and Issues

Please submit questions and issues to info@bluequbit.io.

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

bluequbit-0.8.3b1.tar.gz (33.1 kB view details)

Uploaded Source

Built Distribution

bluequbit-0.8.3b1-py3-none-any.whl (41.4 kB view details)

Uploaded Python 3

File details

Details for the file bluequbit-0.8.3b1.tar.gz.

File metadata

  • Download URL: bluequbit-0.8.3b1.tar.gz
  • Upload date:
  • Size: 33.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for bluequbit-0.8.3b1.tar.gz
Algorithm Hash digest
SHA256 ca089e1c5fec01e2c25079b754d5ff769ac998e19dc5eecc7bceefc19c57a1f6
MD5 819158b78f6f3bd80ac4e3ab8afad930
BLAKE2b-256 c07caf48ed0c4f425e103f21499b7217f4824514b3e2601c826becddbfe5975b

See more details on using hashes here.

File details

Details for the file bluequbit-0.8.3b1-py3-none-any.whl.

File metadata

  • Download URL: bluequbit-0.8.3b1-py3-none-any.whl
  • Upload date:
  • Size: 41.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for bluequbit-0.8.3b1-py3-none-any.whl
Algorithm Hash digest
SHA256 2e276dbae43aa18e84b3461356c5ed3c591ebb85c72fabd0ff22a7b6c00581eb
MD5 ba6eaf4002982510dd5e2256cec852d0
BLAKE2b-256 805776c586f98eb986f860c7bd7a6723b68fbbc05221f24bc099c5b8d446a576

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page