Update Cheat sheet authored by Sander de Snoo's avatar Sander de Snoo
...@@ -3,7 +3,9 @@ Below are the **frequently used** methods of pulse-lib with the **most common** ...@@ -3,7 +3,9 @@ Below are the **frequently used** methods of pulse-lib with the **most common**
# Configuration # Configuration
```Python ```Python
pulse = pulselib(backend="Qblox") from pulse_lib import Pulselib
pulse = Pulselib(backend="Qblox")
pulse.add_awg(awg) pulse.add_awg(awg)
pulse.add_digitizer(digitizer) pulse.add_digitizer(digitizer)
... ...
......