I have to call a long run process from a bottle script (web framework like Django).
So in a bottle script i have
os.system("python /home/tom/Documents/proc_test/main.py")
Anyway the main.py script is not executed. How can i call a python script from another running python program?
P.S: in python shell interpreter i have write os.system("python /home/tom/Documents/proc_test/main.py") and the file is called