mirror of
https://github.com/JoeanAmier/XHS-Downloader.git
synced 2025-12-26 04:48:05 +08:00
64 lines
1.8 KiB
Python
64 lines
1.8 KiB
Python
from pathlib import Path
|
|
|
|
__all__ = [
|
|
"VERSION_MAJOR",
|
|
"VERSION_MINOR",
|
|
"VERSION_BETA",
|
|
"ROOT",
|
|
"REPOSITORY",
|
|
"LICENCE",
|
|
"RELEASES",
|
|
"MASTER",
|
|
"PROMPT",
|
|
"GENERAL",
|
|
"PROGRESS",
|
|
"ERROR",
|
|
"WARNING",
|
|
"INFO",
|
|
"USERSCRIPT",
|
|
"USERAGENT",
|
|
"HEADERS",
|
|
"PROJECT",
|
|
]
|
|
|
|
VERSION_MAJOR = 1
|
|
VERSION_MINOR = 9
|
|
VERSION_BETA = True
|
|
ROOT = Path(__file__).resolve().parent.parent.parent
|
|
PROJECT = f"XHS-Downloader V{VERSION_MAJOR}.{
|
|
VERSION_MINOR}{" Beta" if VERSION_BETA else ""}"
|
|
|
|
REPOSITORY = "https://github.com/JoeanAmier/XHS-Downloader"
|
|
LICENCE = "GNU General Public License v3.0"
|
|
RELEASES = "https://github.com/JoeanAmier/XHS-Downloader/releases/latest"
|
|
|
|
USERSCRIPT = "https://raw.githubusercontent.com/JoeanAmier/XHS-Downloader/master/static/XHS-Downloader.js"
|
|
|
|
HEADERS = {
|
|
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,"
|
|
"application/signed-exchange;v=b3;q=0.7",
|
|
"Accept-Encoding": "gzip, deflate, br",
|
|
"Accept-Language": "zh-CN,zh;q=0.9",
|
|
"Cache-Control": "max-age=0",
|
|
"Dnt": "1",
|
|
"Sec-Ch-Ua": "\"Not_A Brand\";v=\"8\", \"Chromium\";v=\"120\", \"Microsoft Edge\";v=\"120\"",
|
|
"Sec-Ch-Ua-Mobile": "?0",
|
|
"Sec-Ch-Ua-Platform": "\"Windows\"",
|
|
"Sec-Fetch-Dest": "document",
|
|
"Sec-Fetch-Mode": "navigate",
|
|
"Sec-Fetch-Site": "none",
|
|
"Sec-Fetch-User": "?1",
|
|
"Upgrade-Insecure-Requests": "1",
|
|
}
|
|
USERAGENT = (
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 "
|
|
"Safari/537.36 Edg/121.0.0.0")
|
|
|
|
MASTER = "b #fff200"
|
|
PROMPT = "b turquoise2"
|
|
GENERAL = "b bright_white"
|
|
PROGRESS = "b bright_magenta"
|
|
ERROR = "b bright_red"
|
|
WARNING = "b bright_yellow"
|
|
INFO = "b bright_green"
|