mirror of
https://github.com/JoeanAmier/XHS-Downloader.git
synced 2025-12-26 04:48:05 +08:00
70 lines
2.3 KiB
Python
70 lines
2.3 KiB
Python
from pathlib import Path
|
||
|
||
VERSION_MAJOR = 2
|
||
VERSION_MINOR = 6
|
||
VERSION_BETA = False
|
||
__VERSION__ = f"{VERSION_MAJOR}.{VERSION_MINOR}.{'beta' if VERSION_BETA else 'stable'}"
|
||
ROOT = Path(__file__).resolve().parent.parent.parent.joinpath("Volume")
|
||
ROOT.mkdir(exist_ok=True)
|
||
PROJECT = f"XHS-Downloader V{VERSION_MAJOR}.{VERSION_MINOR} {
|
||
'Beta' if VERSION_BETA else 'Stable'
|
||
}"
|
||
|
||
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"
|
||
|
||
USERAGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36"
|
||
|
||
HEADERS = {
|
||
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,"
|
||
"application/signed-exchange;v=b3;q=0.7",
|
||
"referer": "https://www.xiaohongshu.com/explore",
|
||
"user-agent": USERAGENT,
|
||
}
|
||
|
||
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"
|
||
|
||
FILE_SIGNATURES: tuple[
|
||
tuple[
|
||
int,
|
||
bytes,
|
||
str,
|
||
],
|
||
...,
|
||
] = (
|
||
# 分别为偏移量(字节)、十六进制签名、后缀
|
||
# 参考:https://en.wikipedia.org/wiki/List_of_file_signatures
|
||
# 参考:https://www.garykessler.net/library/file_sigs.html
|
||
(0, b"\xff\xd8\xff", "jpeg"),
|
||
(0, b"\x89\x50\x4e\x47\x0d\x0a\x1a\x0a", "png"),
|
||
(4, b"\x66\x74\x79\x70\x61\x76\x69\x66", "avif"),
|
||
(4, b"\x66\x74\x79\x70\x68\x65\x69\x63", "heic"),
|
||
(8, b"\x57\x45\x42\x50", "webp"),
|
||
(4, b"\x66\x74\x79\x70\x4d\x53\x4e\x56", "mp4"),
|
||
(4, b"\x66\x74\x79\x70\x69\x73\x6f\x6d", "mp4"),
|
||
(4, b"\x66\x74\x79\x70\x6d\x70\x34\x32", "m4v"),
|
||
(4, b"\x66\x74\x79\x70\x71\x74\x20\x20", "mov"),
|
||
(0, b"\x1a\x45\xdf\xa3", "mkv"),
|
||
(0, b"\x00\x00\x01\xb3", "mpg"),
|
||
(0, b"\x00\x00\x01\xba", "mpg"),
|
||
(0, b"\x46\x4c\x56\x01", "flv"),
|
||
(8, b"\x41\x56\x49\x20", "avi"),
|
||
)
|
||
FILE_SIGNATURES_LENGTH = max(
|
||
offset + len(signature) for offset, signature, _ in FILE_SIGNATURES
|
||
)
|
||
|
||
MAX_WORKERS: int = 4
|
||
|
||
if __name__ == "__main__":
|
||
print(__VERSION__)
|