Files
admin 83cbfaf03f v0.2.7: 修复Redis连接 + 启动管理后台
- 修复Redis认证 (配置密码)
- 启动Python管理后台 (端口9531, 15个功能开关)
- 统一版本号 0.2.7
- 更新docker-compose.yml (镜像版本/Redis URL/Admin服务)
2026-05-17 02:22:18 +08:00

25 lines
718 B
Python

"""115网盘数据清理 v1.0.0"""
import logging
from typing import List
logger = logging.getLogger(__name__)
class Pan115Cleanup:
def delete_files(self, session, credential_mgr, file_ids: List[str]) -> bool:
try:
resp = session.post(
"https://webapi.115.com/rb/delete",
json={"fid": file_ids},
timeout=30,
)
return resp.json().get("state", False)
except Exception as e:
logger.error(f"115 delete failed: {e}")
return False
def filter_ad_ids(self, file_ids: List[str], file_names: List[str],
banned_keywords: List[str]) -> List[str]:
return file_ids