发布 2.1 版本

This commit is contained in:
JoeanAmier
2024-06-30 17:37:10 +08:00
parent b87132e364
commit 3d28a6f262
13 changed files with 310 additions and 138 deletions

View File

@@ -92,12 +92,14 @@ class Manager:
"Referer": "https://www.xiaohongshu.com/explore", },
timeout=timeout,
verify=False,
follow_redirects=True,
**self.proxy,
)
self.download_client = AsyncClient(
headers=self.blank_headers,
timeout=timeout,
verify=False,
follow_redirects=True,
**self.proxy,
)
self.image_download = self.check_bool(image_download, True)

View File

@@ -25,7 +25,7 @@ __all__ = [
VERSION_MAJOR = 2
VERSION_MINOR = 1
VERSION_BETA = True
VERSION_BETA = False
ROOT = Path(__file__).resolve().parent.parent.parent
PROJECT = f"XHS-Downloader V{VERSION_MAJOR}.{
VERSION_MINOR}{" Beta" if VERSION_BETA else ""}"