我正在使用Tornado framework
and Websockethandler
,它从客户端接收数据,并将值存储在变量中。如何将该变量发送到另一个模块。这是代码(部分):
#module a.py
class Handler(tornado.websocket.WebSocketHandler):
@tornado.web.asynchronous
@gen.engine
def on_message(self, event):
data = urlparse.parse_qs(event)
event= data.get('type')
如何将变量event
传递给模块b.py
谢谢