The qcoscloud CLI is the az-style command line for SoftQuantus compute: credits, instances, and GPU/CPU/simulation workloads on one prepaid wallet. It ships with the Python SDK package and wraps the same live REST API.
The API requires every QUANTUM_CIRCUIT workload to carry a circuit — pass --qasm circuit.qasm to run/simulate, or the platform rejects the request with 422 quantum_circuit_missing (protecting you from paying for an empty run).

Install and authenticate

PyPI publishing is in progress — until the release lands, drive the same operations over the REST API. The qcoscloud command is registered as a console script by the package:
Output is pretty-printed JSON (except credits), so it pipes cleanly into jq.

Command summary

credits

computers / targets

targets also activates the workspace’s default catalog (simulator + GPU/CPU tiers) on first call — run it once from a fresh workspace.

instances

See Quantum instances for what plans and access groups mean (paygo requires prior approval).

run / simulate

simulate takes --qasm, --shots and --instance.

workload / evidence

gpu

Run a container command on an on-demand NVIDIA GPU. A runtime bound (--minutes) is always applied — the worst case is reserved up front and the GPU is stopped when the reservation is exhausted:
If GPU capacity is not available for your workspace this fails closed with gpu_provider_unavailable and holds no money — see Backends & pricing.

cpu

Run a container command on on-demand CPUs (large/long simulations), billed per minute with a reserved runtime bound:

workload / workloads

Exit codes

Scripting example