-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.py
More file actions
30 lines (22 loc) · 932 Bytes
/
shell.py
File metadata and controls
30 lines (22 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# encoding: utf-8
# author: Daniel Kovacs <danadeasysau@gmail.com>
# licence: GPL3 <https://opensource.org/licenses/GPL3>
# file: shell.py
# purpose: interactive demo
# version: 1.0
# ---------------------------------------------------------------------------------------
# imports
# ---------------------------------------------------------------------------------------
import sys, os
import yaml
from datetime import datetime, timedelta
from pprint import pprint
pp = pprint
from sutils import *
# ---------------------------------------------------------------------------------------
# package specific imports
# ---------------------------------------------------------------------------------------
from qctrl_api.pulses import *
# ---------------------------------------------------------------------------------------
# main
# ---------------------------------------------------------------------------------------