Files
TransPyC/TransPyC.py
2026-07-18 19:25:40 +08:00

14 lines
412 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# TransPyC 入口程序
# 拆分后的模块位于 lib/Shell/ 目录下
import lib._bootstrap # noqa: F401 设置 sys.path项目根 + lib/includes
from lib.Shell import (
SerializeSymbolTable, deSerializeSymbolTable,
SymbolFile, Config, TransPyC
)
__all__ = ['SerializeSymbolTable', 'deSerializeSymbolTable', 'SymbolFile', 'Config', 'TransPyC']
if __name__ == '__main__':
TransPyC().Run()