What's the best way to duplicate fork() in win

2020-01-24 09:32发布

How do I implement some logic that will allow me to reproduce on Windows the functionality that I have on Linux with the fork() system call, using Python?

I'm specifically trying to execute a method on the SAPI Com component, while continuing the other logic in the main thread without blocking or waiting.

7条回答
老娘就宠你
2楼-- · 2020-01-24 10:05

You might also like using the processing module (http://pypi.python.org/pypi/processing). It has lot's of functionality for writing parallel systems with the same API as the threading module...

查看更多
登录 后发表回答