gitextract_832couqt/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ ├── Close_Stale_Issues_and_PRs.yaml │ ├── Delete_untagged_images.yml │ ├── Manually_build_executable_programs.yml │ ├── Manually_docker_image.yml │ ├── Release_build_executable_program.yml │ └── Release_docker_image.yml ├── .gitignore ├── .python-version ├── Dockerfile ├── LICENSE ├── README.md ├── README_EN.md ├── example.py ├── locale/ │ ├── README.md │ ├── en_US/ │ │ └── LC_MESSAGES/ │ │ ├── xhs.mo │ │ └── xhs.po │ ├── generate_path.py │ ├── po_to_mo.py │ ├── xhs.pot │ └── zh_CN/ │ └── LC_MESSAGES/ │ ├── xhs.mo │ └── xhs.po ├── main.py ├── pyproject.toml ├── requirements.txt ├── source/ │ ├── CLI/ │ │ ├── __init__.py │ │ └── main.py │ ├── TUI/ │ │ ├── __init__.py │ │ ├── about.py │ │ ├── app.py │ │ ├── index.py │ │ ├── loading.py │ │ ├── monitor.py │ │ ├── progress.py │ │ ├── record.py │ │ ├── setting.py │ │ └── update.py │ ├── __init__.py │ ├── application/ │ │ ├── __init__.py │ │ ├── app.py │ │ ├── download.py │ │ ├── explore.py │ │ ├── image.py │ │ ├── request.py │ │ ├── user_posted.py │ │ └── video.py │ ├── expansion/ │ │ ├── __init__.py │ │ ├── browser.py │ │ ├── cleaner.py │ │ ├── converter.py │ │ ├── error.py │ │ ├── file_folder.py │ │ ├── namespace.py │ │ ├── pyi_rth_beartype.py │ │ └── truncate.py │ ├── module/ │ │ ├── __init__.py │ │ ├── extend.py │ │ ├── manager.py │ │ ├── mapping.py │ │ ├── model.py │ │ ├── recorder.py │ │ ├── script.py │ │ ├── settings.py │ │ ├── static.py │ │ └── tools.py │ └── translation/ │ ├── __init__.py │ └── translate.py └── static/ ├── 20250619.js ├── Release_Notes.md ├── XHS-Downloader.icns ├── XHS-Downloader.js ├── XHS-Downloader.tcss └── 自动滚动页面.js