def __init__(self, auto_reload=True, port=8888):
self.app = MyApplication(autoreload=True)
self.auto_reload = auto_reload
self.port = port
logger.info("started server " + str(port) + (" with autoreload mode" if self.auto_reload else ""))
评论列表
文章目录