2 Star 2 Fork 0

陈轩大魔王/battery_tray_number_show

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.py 459 Bytes
一键复制 编辑 原始数据 按行查看 历史
import Tray_display
from multiprocessing import Pool, freeze_support
import sys
def exit_app():
sys.exit(0)
tray_display = Tray_display.Tray_display()
tray_display.set_exit_callback(exit_app)
def tray_display_multiprocessing():
tray_display.run()
if __name__ == "__main__":
print("===== battery_tray_number_show start =====")
freeze_support()
po = Pool(1)
po.apply_async(tray_display_multiprocessing)
po.close()
po.join()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/cxwithyxy/battery_tray_number_show.git
git@gitee.com:cxwithyxy/battery_tray_number_show.git
cxwithyxy
battery_tray_number_show
battery_tray_number_show
master

搜索帮助