🚀 QuantSDK v0.1.0 — Open Source & Ready

Write Quantum Code.
Run It Anywhere.

TheQuantCloud is the unified platform for quantum development — from writing your first qubit to deploying production circuits on real quantum hardware. Powered by the open-source QuantSDK.

pip install quantsdk

Everything you need for
quantum development

From your first quantum hello-world to production-grade circuit deployment, TheQuantCloud provides the complete development lifecycle.

🧩

Framework Agnostic SDK

Write circuits once with our clean Python API. Export to Qiskit, Cirq, or OpenQASM when you need to. No vendor lock-in, ever.

Qiskit Cirq PennyLane OpenQASM 2.0

Local Simulator

High-performance tensor-based simulator for rapid prototyping. No network round-trips, no queue wait times.

☁️

Cloud Backends

Seamlessly switch from simulator to IBM Quantum, IonQ, and Rigetti hardware with a single parameter change.

🎯

50+ Quantum Gates

Complete gate library — Pauli, Hadamard, Phase, T, CNOT, Toffoli, parameterized rotations, and custom unitaries.

🔄

Circuit Interop

Bidirectional conversion between QuantSDK, Qiskit circuits, and OpenQASM strings. Bring your existing code.

📊

Rich Results

Structured measurement results with counts, probabilities, statevector access, and built-in visualization helpers.

📝

Fully Typed API

PEP 561 compliant with strict mypy checking. Your IDE autocomplete works perfectly — catch errors before runtime.

Elegant by design

Clean, Pythonic, and intuitive — QuantSDK gets out of your way so you can focus on the physics.

bell_state.py
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}
grover_search.py
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!
interop.py
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
)

One API, multiple quantum backends

Write your circuit once and run it on any supported backend. Switch with a single parameter — no code changes required.

💻

Local Simulator

Tensor-based statevector simulator. Instant results, no network required. Perfect for development and testing.

Available Now
IBM

IBM Quantum

Access IBM's fleet of superconducting quantum processors. From 127-qubit Eagle to next-gen Heron chips.

Available Now
IonQ

IonQ

Trapped-ion quantum hardware with all-to-all connectivity. High gate fidelity for complex algorithms.

Q2 2026
Rigetti

Rigetti

Superconducting qubit systems with hybrid quantum-classical computing capabilities.

Q2 2026

Docs that developers actually love

30+ pages of guides, API reference, tutorials, and interactive notebooks. Everything you need from hello-world to production deployment.

Free to start. Scale when ready.

QuantSDK is and will always be 100% open-source. Cloud platform pricing coming with TheQuantCloud GA launch.

Open Source
Freeforever

Everything you need for local quantum development.

  • ✦ Full QuantSDK library
  • ✦ 50+ quantum gates
  • ✦ Local simulator
  • ✦ Framework interop (Qiskit, Cirq, OpenQASM)
  • ✦ 22 example notebooks
  • ✦ Community support via GitHub
  • ✦ Apache 2.0 License
Get Started Free

Start building quantum
applications today

Install QuantSDK and run your first quantum circuit in under 60 seconds.

pip install quantsdk