autoqasm.instructions package
Instructions that apply to qubits or frames, including quantum gates, reset, measure and pulse control.
Example of using a h gate and a cnot gate to create a Bell circuit:
@aq.main
def bell():
h(0)
cnot(0, 1)
measure([0, 1])