Я хочу повторно запускать 2 сценария Python каждые 10 секунд из другого сценария.
У меня есть файл Python со следующим утверждением: -
test1.py
print("this is test1")
test2.py
print("this is test2")
основной код
from apscheduler.schedulers.blocking import BlockingScheduler
def some_job():
print('hello')
import test1
import test2
scheduler = BlockingScheduler()
job=scheduler.add_job(some_job, 'interval', seconds=10)
scheduler.start()
Результат, который я получаю какследует
На самом деле я хочу, чтобы он печатался как
hello
this is test1
this is test2
hello
this is test1
this is test2
hello
this is test1
this is test2
и т. д. каждые 10 секунд.
Я пытался использовать os.система ('test1.py'), но она открывает файл в pycharm.Я использую ноутбук Jupyter.также пробовал вызов подпроцесса.