Some checks failed
continuous-integration/drone/push Build is failing
- 添加 APScheduler 依赖 - 创建定时任务调度模块 scheduler.py - 增量同步:每30分钟执行 - 完整同步:每天凌晨2点执行 - 添加定时任务管理 API - 支持环境变量配置同步参数
56 lines
891 B
Plaintext
56 lines
891 B
Plaintext
# Web框架
|
||
fastapi==0.104.1
|
||
uvicorn[standard]==0.24.0
|
||
python-multipart==0.0.6
|
||
sse-starlette==1.8.2
|
||
|
||
# 数据库
|
||
sqlalchemy==2.0.23
|
||
aiomysql==0.2.0
|
||
alembic==1.12.1
|
||
|
||
# Redis
|
||
redis==5.0.1
|
||
aioredis==2.0.1
|
||
|
||
# 数据验证
|
||
pydantic==2.5.0
|
||
pydantic-settings==2.1.0
|
||
email-validator==2.1.0
|
||
|
||
# 认证和安全
|
||
python-jose[cryptography]==3.3.0
|
||
passlib==1.7.4
|
||
bcrypt==4.1.2
|
||
python-dotenv==1.0.0
|
||
PyJWT==2.8.0
|
||
PyMySQL==1.1.0
|
||
|
||
# HTTP客户端
|
||
# 与 cozepy==0.19.0 兼容(cozepy 依赖 httpx >= 0.27.0 且 < 0.28.0)
|
||
httpx==0.27.2
|
||
aiofiles==23.2.1
|
||
|
||
# 日志
|
||
structlog==23.2.0
|
||
|
||
# AI平台SDK
|
||
cozepy==0.19.0
|
||
|
||
# 工具库
|
||
python-dateutil==2.8.2
|
||
tenacity==8.2.3
|
||
|
||
# 定时任务调度
|
||
apscheduler==3.10.4
|
||
|
||
# Excel文件处理(用于课程资料预览)
|
||
openpyxl==3.1.2
|
||
|
||
# LLM JSON 解析(知识点分析服务)
|
||
json-repair>=0.25.0
|
||
jsonschema>=4.0.0
|
||
|
||
# PDF 文档提取
|
||
PyPDF2>=3.0.0
|
||
python-docx>=1.0.0 |