You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
335 B
Python
18 lines
335 B
Python
#!/bin/python3
|
|
import ddresc_visu.draw as v
|
|
from time import sleep
|
|
import argparse
|
|
|
|
ap = argparse.ArgumentParser()
|
|
ap.add_argument('file', type=str)
|
|
ap.add_argument("--start", type=int)
|
|
ap.add_argument("--end", type=int)
|
|
|
|
args = ap.parse_args()
|
|
|
|
visu = v.Visualisation(args.file, start=args.start, end=args.end)
|
|
|
|
|
|
|
|
visu.run(refresh=5)
|