Hi!
I hope this is the rigth community for asking questions about Python code, if not preale redirect me to a sutable one.
I need to write a program that runs 10 another processes and keeps truck of their functionality.
It should be similar to server-side program, something like:
for i in range(0,9):
pid[i] = subprocess.POpen(....);
select.select(pid,......);
....
Do you know how to do it?
I hope this is the rigth community for asking questions about Python code, if not preale redirect me to a sutable one.
I need to write a program that runs 10 another processes and keeps truck of their functionality.
It should be similar to server-side program, something like:
for i in range(0,9):
pid[i] = subprocess.POpen(....);
select.select(pid,......);
....
Do you know how to do it?
