入门项目 A1 start

'''
启动文件入口
'''

from core import src
import os
import sys

# 拿到项目的路径
path = os.path.dirname(__file__)
# 添加到环境变量
sys.path.append(path)

if __name__ == '__main__': # 如果本文件是自执行文件,没有被导入其他文件
    src.run() # 运行核心代码包内部的src主代码模块 名称空间的 run 函数
上一篇:Access restriction: The type 'BASE64Decoder' is not API


下一篇:Python 中 logging 日志模块在多进程环境下的使用