Asyncio proxy for use with event loop based systems

Ive been searching for nameko async proxy for use wuth asyncio and did not find any so I`ve implement one, its still simple and not support context and msgpack but with json it works, If any one is interested I can make it more pretty.

example:
async def main():
proxy = RpcProxy()
await proxy.connect()
print(await proxy.guard.get_user_permissions(“user_id”))

loop = asyncio.get_event_loop()
loop.run_until_complete(main())