v0.2.7: 修复Redis连接 + 启动管理后台

- 修复Redis认证 (配置密码)
- 启动Python管理后台 (端口9531, 15个功能开关)
- 统一版本号 0.2.7
- 更新docker-compose.yml (镜像版本/Redis URL/Admin服务)
This commit is contained in:
2026-05-17 02:22:18 +08:00
commit 83cbfaf03f
164 changed files with 25195 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
"""CloudSearch Transfer v1.0.0 — 多网盘转存模块化服务
支持平台: quark, baidu, aliyun, uc, xunlei (+ 115/123/cloud189 扩展)
架构:
cloudsearch_transfer/
├── adapter/ # 网盘适配器(每平台独立子包)
│ ├── base.py # 抽象基类
│ ├── factory.py # 工厂+缓存
│ ├── quark/ # 夸克网盘 (credential/transfer/cleanup)
│ ├── baidu/ # 百度网盘
│ ├── aliyun/ # 阿里云盘
│ ├── uc/ # UC网盘
│ └── xunlei/ # 迅雷网盘
├── credential/ # 统一凭证管理
│ └── manager.py
├── orchestration/ # 转存编排
│ └── transfer.py
├── config.py # 配置管理
├── errors.py # 错误码
└── server.py # HTTP API 服务
使用:
from cloudsearch_transfer import TransferOrchestrator, ConfigManager
cm = ConfigManager()
orch = TransferOrchestrator(cm)
result = orch.transfer("https://pan.quark.cn/s/xxxx")
print(result.share_url)
"""
__version__ = "1.0.0"