Dear all,
I wrote 2 scripts and at a certain point of the first I would like to run the second, and when the second is done, to go back to the first and continue with it.
How can I do it?
I put at the desired point of the firstscript.py
from secondscript impot *
and it works. The second script is something like
open a wx window
do something according to what the user chooses in a dropdown menu
write the result to a txt file
sys.close()
and in the firstscript.py I have to read from the txt file and go on.
Everything goes fine till the end of secondscript, but at that point it doesn't go on with the first.
I hope I manage to explain it in the proper way.
Thanks,
G.