('Python client providing primitives to be used from other quantum SDKs',)
Project description
Python client for Scaleway's Quantum as a Service
This Python package is basically a HTTPX client based on Pydantic over the Quantum as a Service API.
This package is intented to be used from quantum circuit SDK such as Qiskit, Cirq, Perceval and so-on.
Installation
We encourage installing this package via the pip tool (a Python package manager):
pip install scaleway-qaas-client
Getting started
To use the client, you need to have an access secret_key and a Scaleway's project_id
from scaleway_qaas_client import QaaSClient
client = QaaSClient(
project_id=os.environ["SCALEWAY_PROJECT_ID"], # Your project ID in UUID format
secret_key=os.environ["SCALEWAY_SECRET_KEY"], # Your personal secret key in UUID format
)
platforms = client.list_platforms(name="aer_simulation_pop_c16m128")
target_platform = platforms[0]
session = client.create_session(platform_id=target_platform.id, max_duration="2min", max_idle_duration="2min")
while session.status == "starting":
session = client.get_session(session.id)
time.sleep(3)
client.delete_session(session.id)
Development
This repository is at its early stage and is still in active development. If you are looking for a way to contribute please read CONTRIBUTING.md.
Reach us
We love feedback. Feel free to reach us on Scaleway Slack community, we are waiting for you on #opensource..
License
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file scaleway_qaas_client-0.1.11.tar.gz.
File metadata
- Download URL: scaleway_qaas_client-0.1.11.tar.gz
- Upload date:
- Size: 41.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be5f5641449011d1af1512325467b2d6400de8322ae1ffe0c1f3b4813e03e578
|
|
| MD5 |
b5291049659991b9413f5196aeb1f216
|
|
| BLAKE2b-256 |
6e7088fd1030218a08e3b19cef6b72e2998b6155173a5d24aa12acadee9d4f61
|
File details
Details for the file scaleway_qaas_client-0.1.11-py3-none-any.whl.
File metadata
- Download URL: scaleway_qaas_client-0.1.11-py3-none-any.whl
- Upload date:
- Size: 115.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2abe14bbf6ad8e6e8aadf3297a08844cc3e2ace4c3144a40ecfb847e3dd90577
|
|
| MD5 |
33568095f712732b1348f288b7f5103d
|
|
| BLAKE2b-256 |
9136cef9cc25f8ba961e6a2e2a179f2b66cd37d43eebe3138576c94a1ba5cdca
|