- 修复Redis认证 (配置密码) - 启动Python管理后台 (端口9531, 15个功能开关) - 统一版本号 0.2.7 - 更新docker-compose.yml (镜像版本/Redis URL/Admin服务)
12 lines
365 B
Python
12 lines
365 B
Python
"""115网盘凭证管理 v1.0.0 — Cookie直传"""
|
|
|
|
class Pan115CredentialManager:
|
|
def __init__(self, config):
|
|
self.config = config
|
|
|
|
def validate(self) -> bool:
|
|
return bool(self.config.cookie and len(self.config.cookie) >= 30)
|
|
|
|
def get_headers(self) -> dict:
|
|
return {"Cookie": self.config.cookie, "Referer": "https://115.com/"}
|