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