Qiskit beginners-friendly utility package created by Sunjun Hwang
Easily generate quantum circuits, visualize Bloch spheres, and run quick simulations.
- Circuit Generator: Quickly create Bell pairs or GHZ states.
- Quick Simulator: Run
qasm_simulator
and get histogram results with one function. - Visualization Tools: Plot Bloch sphere vectors for single-qubit states.
Clone the repository and install in editable mode:
git clone https://github.com/yourname/qiskit-utils-sj.git
cd qiskit-utils-sj
pip install -e .
from qiskit_utils_sj import circuits, simulators
qc = circuits.simple_bell_pair()
qc.draw('mpl')
result = simulators.quick_simulate(qc, shots=1024)
print(result)
Check the examples/basic_demo.py
notebook for more details.
This project is licensed under the MIT License - see the LICENSE file for details.