3b4f23c670 feat: 支持设置作者别名
1. 新增 mapping_data 配置参数
2. 新增自动更新作者昵称功能

Closes #176
Closes #194
Closes #199
Closes #229
2025-03-22 22:10:17 +08:00

42 lines
718 B
Python

from .extend import Account
from .manager import Manager
from .model import (
ExtractData,
ExtractParams,
)
from .recorder import DataRecorder
from .recorder import IDRecorder
from .recorder import MapRecorder
from .mapping import Mapping
from .settings import Settings
from .static import (
VERSION_MAJOR,
VERSION_MINOR,
VERSION_BETA,
ROOT,
REPOSITORY,
LICENCE,
RELEASES,
MASTER,
PROMPT,
GENERAL,
PROGRESS,
ERROR,
WARNING,
INFO,
USERSCRIPT,
HEADERS,
PROJECT,
USERAGENT,
FILE_SIGNATURES,
FILE_SIGNATURES_LENGTH,
MAX_WORKERS,
__VERSION__,
)
from .tools import (
retry,
logging,
sleep_time,
retry_limited,
)