Reading Messages on Poloniex Trollbox with Python autbahn or other socket module?
Poloniex doesn't return every message to my socket. I read the messages with the following code and sometimes I get continuous message numbers, but sometimes there are like 10 messages missing: from autobahn.asyncio.wamp import ApplicationSession from autobahn.asyncio.wamp import ApplicationRunner from asyncio import coroutine class PoloniexComponent(ApplicationSession): def onConnect(self): self.join(self.config.realm) @coroutine def onJoin(self, details): def onTrollbox(*args): print("type: ", args[0]) print("message_number: ", args[1]) print("user_name: ", args[2]) print("message: ", args[3