shihao-hub
Results
1
issues of
shihao-hub
[有多进程调用时,会重复启动Qt主窗口直到内存耗尽 #21 ](https://github.com/skywind3000/PyStand/issues/21) 参考过上面的链接,但是上面是 multiprocessing.Process,我这个是 subprocess.Popen ```python # app.py from nicegui import ui, app @app.get("/health") def health(): return {"status": "ok"} @ui.page("/") async def page_index(): ui.label("nicegui 已启动").classes("mx-auto") if __name__ in {"__main__",...