You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,28 +1,27 @@
1
-
# Scaleway Python client for Quantum as a Service
1
+
# Python client for Scaleway's Quantum as a Service
2
2
3
3
This Python package is basically a HTTPX client based on Pydantic over the [Quantum as a Service API](https://www.scaleway.com/en/developers/api/qaas/).
4
4
5
5
This package is intented to be used from quantum circuit SDK such as Qiskit, Cirq, Perceval and so-on.
6
6
7
7
## Installation
8
8
9
-
We encourage installing Scaleway provider via the pip tool (a Python package manager):
9
+
We encourage installing this package via the pip tool (a Python package manager):
10
10
11
11
```bash
12
12
pip install scaleway-qaas-client
13
13
```
14
14
15
15
## Getting started
16
16
17
-
To use QaaS client, you need to have an access secret_key and a Scaleway's project_id
18
-
17
+
To use the client, you need to have an access secret_key and a Scaleway's project_id
19
18
20
19
```python
21
20
from scaleway_qaas_client import QaaSClient
22
21
23
22
client = QaaSClient(
24
-
project_id=os.environ["SCALEWAY_PROJECT_ID"],
25
-
secret_key=os.environ["SCALEWAY_API_TOKEN"],
23
+
project_id=os.environ["SCALEWAY_PROJECT_ID"],# Your project ID in UUID format
24
+
secret_key=os.environ["SCALEWAY_SECRET_KEY"],# Your personal secret key in UUID format
0 commit comments