My python script should start a background process and then continue processing until it is complete, without waiting for a return.
The background script will be processed for some time and will not generate any screen output.
No data is required between processes.
I tried using various method subprocesses, multiprocessing, but I obviously missed something.
Does anyone have a simple example?
TIA
source share