TheQuantCloud is the unified platform for quantum development — from writing your first qubit to running circuits on cloud simulators and real quantum hardware. Sign up for free beta access with $50 in credits.
From your first quantum hello-world to production-grade circuit deployment, TheQuantCloud provides the complete development lifecycle.
Write circuits once with our clean Python API. Export to Qiskit, Cirq, or OpenQASM when you need to. No vendor lock-in, ever.
High-performance tensor-based simulator for rapid prototyping. No network round-trips, no queue wait times.
Seamlessly switch from simulator to IBM Quantum, IonQ, and Rigetti hardware with a single parameter change.
Complete gate library — Pauli, Hadamard, Phase, T, CNOT, Toffoli, parameterized rotations, and custom unitaries.
Bidirectional conversion between QuantSDK, Qiskit circuits, and OpenQASM strings. Bring your existing code.
Structured measurement results with counts, probabilities, statevector access, and built-in visualization helpers.
PEP 561 compliant with strict mypy checking. Your IDE autocomplete works perfectly — catch errors before runtime.
A full-featured development environment for quantum computing. Write, run, visualize, and share quantum circuits — no local setup required.
VS Code's editor engine with QuantSDK autocomplete, Python syntax highlighting, and intelligent error messages. Write quantum code with the same editor millions of developers already love.
SVG circuit diagrams, interactive result histograms, probability bars, and statistical analysis — all updated in real-time.
Bell states, Grover's search, QFT, VQE, QAOA, teleportation, quantum ML, and more. One-click load into the editor.
Compare and select from CPU, GPU, IBM, IonQ, Rigetti, and Quantinuum backends with real-time status and metrics.
Save your circuits, manage projects, and pick up right where you left off. Full CRUD with auth-protected storage.
Download results as JSON, CSV, or SVG. Export circuit diagrams for papers and presentations.
Email + GitHub OAuth via Supabase Auth. Your circuits are private by default, with cloud sync and API key access.
Clean, Pythonic, and intuitive — QuantSDK gets out of your way so you can focus on the physics.
import quantsdk as qs
# Create a Bell state — quantum entanglement in 3 lines
circuit = qs.Circuit(2, name="bell_state")
circuit.h(0) # Superposition
circuit.cx(0, 1) # Entangle
circuit.measure_all()
# Simulate locally
result = qs.run(circuit, shots=1024)
print(result.counts)
# → {'00': 512, '11': 512}
import quantsdk as qs
# Grover's algorithm — find |11⟩ in unsorted database
qc = qs.Circuit(2, name="grover")
# Uniform superposition
qc.h(0); qc.h(1)
# Oracle: mark |11⟩
qc.cz(0, 1)
# Diffusion operator
qc.h(0); qc.h(1)
qc.z(0); qc.z(1)
qc.cz(0, 1)
qc.h(0); qc.h(1)
qc.measure_all()
result = qs.run(qc, shots=1000)
print(result.counts) # |11⟩ amplified!
import quantsdk as qs
circuit = qs.Circuit(2)
circuit.h(0)
circuit.cx(0, 1)
# Export to Qiskit
qiskit_circ = circuit.to_qiskit()
# Export to OpenQASM 2.0
qasm = circuit.to_openqasm()
# Import from Qiskit
imported = qs.Circuit.from_qiskit(qiskit_circ)
# Run on IBM Quantum hardware
result = qs.run(circuit,
backend="ibm",
device="ibm_brisbane",
shots=4096
)
Write your circuit once and run it on any supported backend. Switch with a single parameter — from local CPU to trapped-ion QPU.
High-performance statevector simulator. Perfect fidelity, instant results, up to 25 qubits. Free tier.
✅ AvailableNVIDIA GPU-accelerated simulation. 32+ qubits with tensor network contraction. Blazing fast.
✅ Available127-qubit superconducting Eagle processor. Heavy-hex connectivity, CX native gates.
✅ Available11-qubit trapped-ion QPU. All-to-all connectivity, 99.5% fidelity. GPI/GPI2/MS native gates.
✅ Available25-qubit trapped-ion QPU. Next-gen fidelity at 99.7%, ideal for complex variational algorithms.
✅ Available84-qubit superconducting processor. Square-lattice connectivity, CZ/RZ/RX native gates.
✅ Available20-qubit trapped-ion QPU. Industry-leading 99.8% fidelity. All-to-all connectivity.
✅ AvailableConfigurable noise model simulator. Test how your circuits perform under realistic error conditions.
✅ Available30+ pages of guides, API reference, tutorials, and interactive notebooks. 658 tests guard every release.
Install QuantSDK and build your first quantum circuit in under 5 minutes.
Complete reference for every class, method, and parameter. Auto-generated from docstrings.
Step-by-step guides covering Bell states, Grover's algorithm, QFT, VQE, and more.
Interactive Jupyter notebooks from basic gates to advanced algorithms. Copy, paste, and run.
Set up and configure each quantum backend. Local simulator, IBM Quantum, and more.
Join 100% open-source development. Contribution guidelines, dev setup, and code standards.
QuantSDK is and will always be 100% open-source. Cloud Beta is free — sign up and start running quantum circuits today.
Everything you need for local quantum development.
Full cloud platform with managed backends and intelligent routing. Live now — no credit card required.
Sign up for TheQuantCloud Beta. Get $50 in credits, 60 min simulator time, and 5 quantum backends. No credit card required.
pip install thequantsdk