Re: [python-tulip] help deal with aiomas rpc

2018-02-19 Thread Stefan Scherfke
The protocol aiomas uses is described here: https://aiomas.readthedocs.io/en/latest/guides/channel.html?highlight=endian#how-exactly-do-messages-look-like > Am 2018-02-19 um 14:31 schrieb velopoka...@gmail.com: > > good afternoon. > I can not understand how to call the rpc method via the pure

[python-tulip] help deal with aiomas rpc

2018-02-19 Thread velopokatun
good afternoon. I can not understand how to call the rpc method via the pure tcp This simple server: import aiomas class Server: router = aiomas.rpc.Service() @aiomas.expose def ping(self, i): print('Ping receive data: {}'.format(i)) return i if __name__ ==