No project description provided
Project description
ConductorQuantum Python Library
The ConductorQuantum Python library provides convenient access to the ConductorQuantum API from Python.
Installation
pip install conductorquantum
Usage
Instantiate and use the client with the following:
from conductorquantum import ConductorQuantum
client = ConductorQuantum(
token="YOUR_TOKEN",
)
client.models.execute(
model="coulomb-blockade-peak-detector",
)
Async Client
The SDK also exports an async
client so that you can make non-blocking calls to our API.
import asyncio
from conductorquantum import AsyncConductorQuantum
client = AsyncConductorQuantum(
token="YOUR_TOKEN",
)
async def main() -> None:
await client.models.execute(
model="coulomb-blockade-peak-detector",
)
asyncio.run(main())
Exception Handling
When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error will be thrown.
from conductorquantum.core.api_error import ApiError
try:
client.models.execute(...)
except ApiError as e:
print(e.status_code)
print(e.body)
Advanced
Retries
The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long as the request is deemed retriable and the number of retry attempts has not grown larger than the configured retry limit (default: 2).
A request is deemed retriable when any of the following HTTP status codes is returned:
Use the max_retries
request option to configure this behavior.
client.models.execute(..., {
"max_retries": 1
})
Timeouts
The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
from conductorquantum import ConductorQuantum
client = ConductorQuantum(
...,
timeout=20.0,
)
# Override timeout for a specific method
client.models.execute(..., {
"timeout_in_seconds": 1
})
Custom Client
You can override the httpx
client to customize it for your use-case. Some common use-cases include support for proxies
and transports.
import httpx
from conductorquantum import ConductorQuantum
client = ConductorQuantum(
...,
httpx_client=httpx.Client(
proxies="http://my.test.proxy.example.com",
transport=httpx.HTTPTransport(local_address="0.0.0.0"),
),
)
Contributing
While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!
On the other hand, contributions to the README are always very welcome!
Project details
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
File details
Details for the file conductorquantum-0.0.12.tar.gz
.
File metadata
- Download URL: conductorquantum-0.0.12.tar.gz
- Upload date:
- Size: 17.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.8.18 Linux/5.15.0-1071-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4fcf11afceff0ac9221bdc2cfde275afe397b19d3329d90ff678500e8baa1e7 |
|
MD5 | 0f1861bab1231c7270babb72934239df |
|
BLAKE2b-256 | 00870bc784ab919e4252dfb68f39144df17461caff9c6762dd9cfa7daf17c1b1 |
File details
Details for the file conductorquantum-0.0.12-py3-none-any.whl
.
File metadata
- Download URL: conductorquantum-0.0.12-py3-none-any.whl
- Upload date:
- Size: 28.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.8.18 Linux/5.15.0-1071-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03a54940446e88b98d251d9fed14ad75081186beef82fdebaff94bd808621ad7 |
|
MD5 | 28f7359ac3aace9a4962944803681ff5 |
|
BLAKE2b-256 | 9a7e4604ec57e137183f356ecd3ec8ad57ec076e32e02438254ed3c32431f020 |