I need to execute a background job in Python and do not wait or block.
How? e.g.
os.system('my long job')
The above will block. I want to fire and forget.
How can this be done in Python?
Thanks
I need to execute a background job in Python and do not wait or block.
How? e.g.
os.system('my long job')
The above will block. I want to fire and forget.
How can this be done in Python?
Thanks