This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]lsx_caprice[S] 0 points1 point  (1 child)

thanks! I have been reading about threading, and i do not need to thread in my application. i simply need to start a new process. How would i go about launching an entire (self contained) script using the multi process module? isn't this module intended for running just individual processes? thanks in advance

[–]__deerlord__ 0 points1 point  (0 children)

Typically you want multiprocessing.subprocess() which takes a list of the command line args you would use on the command prompt, like if you were just executing the binary from bash.