Hey! For Python run app in new process, I’d recommend `multiprocessing`—it’s built for this kind of thing.
If you’re worried about blocking, just spawn the process and let it run in the background. For cleanup, use a try-finally block to ensure resources are released.
Also, check out this article on Medium—it’s got some great tips on handling processes in Python: [link]. Good luck!
If you’re worried about blocking, just spawn the process and let it run in the background. For cleanup, use a try-finally block to ensure resources are released.
Also, check out this article on Medium—it’s got some great tips on handling processes in Python: [link]. Good luck!
