feat: 完善代理重试机制,添加数据验证告警,新增README文档

This commit is contained in:
shengyudong@yunqueai.net
2026-01-16 18:36:52 +08:00
parent 322ac74336
commit b518e6aacf
55 changed files with 13202 additions and 34781 deletions

40
test_validation_sms.bat Normal file
View File

@@ -0,0 +1,40 @@
@echo off
chcp 65001 >nul
echo ============================================================
echo 数据验证与短信告警系统 - 快速测试
echo ============================================================
echo.
echo [步骤1] 检查Python环境...
python --version
if %errorlevel% neq 0 (
echo [错误] Python未安装或未添加到PATH
pause
exit /b 1
)
echo.
echo [步骤2] 测试短信发送功能...
echo.
python data_validation_with_sms.py --test-sms
if %errorlevel% neq 0 (
echo.
echo [错误] 短信发送测试失败
echo 请检查:
echo 1. 阿里云SDK是否已安装
echo 2. sms_config.json配置是否正确
echo 3. AccessKey和Secret是否有效
pause
exit /b 1
)
echo.
echo [步骤3] 执行数据验证...
echo.
python data_validation_with_sms.py
echo.
echo ============================================================
echo 测试完成!
echo ============================================================
pause