初始提交:飞球 ETL 系统全量代码

This commit is contained in:
Neo
2026-02-13 08:05:34 +08:00
commit 3c51f5485d
441 changed files with 117631 additions and 0 deletions

27
run_gui.bat Normal file
View File

@@ -0,0 +1,27 @@
@echo off
chcp 65001 >nul
cd /d "%~dp0"
echo ====================================
echo 飞球 ETL 管理系统
echo ====================================
echo.
REM 检查 Python
python --version >nul 2>&1
if errorlevel 1 (
echo [错误] 未找到 Python请先安装 Python 3.10+
pause
exit /b 1
)
REM 启动 GUI
echo 正在启动 GUI...
python -m gui.main
if errorlevel 1 (
echo.
echo [错误] 启动失败,请检查依赖是否已安装
echo 运行: pip install -r requirements.txt
pause
)