I recently learned that many python library for subprocesses, threads and multiprocessing already have in place what I was trying to built so change of plans instead of reinventing the wheel we'll just improve it. Right now I'm thinking can we provide a interface so different process, thread, subprocess communicate together? What I mean is a thread communicating with a subprocess and vise versa. This is not something people use usually but might be useful at some point
I recently learned that many python library for subprocesses, threads and multiprocessing already have in place what I was trying to built so change of plans instead of reinventing the wheel we'll just improve it. Right now I'm thinking can we provide a interface so different process, thread, subprocess communicate together? What I mean is a thread communicating with a subprocess and vise versa. This is not something people use usually but might be useful at some point