For those interested: I'm also working on the AMP protocol implementation, it's asynchronous interprocess communication. Currently it's a working proof of concept, but I intend to write docs, tests and improve the code during the following weeks.
The API was intentionally kept similar to Twisted's API, except for the call_remote method, which is now a coroutine. result = yield from protocol.call_remote(EchoCommand(text='Hello world')) Cheers, Jonathan
