10 lines
194 B
Python
10 lines
194 B
Python
from subprocess import Popen
|
|
import sys
|
|
|
|
#filename = sys.argv[1]
|
|
filename = "davisAPI.py"
|
|
while True:
|
|
print('Start '+filename)
|
|
p = Popen("python ./" + filename, shell=True)
|
|
p.wait()
|