2024-10-08 17:47:23 +04:00
|
|
|
from subprocess import Popen
|
|
|
|
import sys
|
|
|
|
|
|
|
|
#filename = sys.argv[1]
|
|
|
|
filename = "davisAPI.py"
|
|
|
|
while True:
|
2024-10-08 22:37:24 +04:00
|
|
|
print('Start '+filename)
|
|
|
|
p = Popen("python ./" + filename, shell=True)
|
2024-10-08 17:47:23 +04:00
|
|
|
p.wait()
|