Re: asyncio: wrapping a subprocess in a server

2014-06-25 Thread Akira Li
David Farler writes: > Hi all, > > I'm trying to vend some kind of server that spawns a client-unique > subprocess when a client connects. The server acts as a middleman, > receiving structure messages from the client, sending input to the > subprocess, and packaging up subprocess data before sen

asyncio: wrapping a subprocess in a server

2014-06-25 Thread David Farler
Hi all, I'm trying to vend some kind of server that spawns a client-unique subprocess when a client connects. The server acts as a middleman, receiving structure messages from the client, sending input to the subprocess, and packaging up subprocess data before sending back to the client. The co