Files
PlaylistSaver/README.md
T

39 lines
767 B
Markdown
Raw Normal View History

2026-05-16 12:19:08 +00:00
# PlaylistSaver
2026-08-25 18:17:12 +08:00
A tool to save your YouTube playlist.
2026-08-25 18:17:12 +08:00
## Run from source
2026-08-25 18:17:12 +08:00
Sync project and install dependencies.
```bash
uv sync
```
Run from source:
2026-08-25 18:17:12 +08:00
```bash
python main.py
```
## Build
2026-08-25 18:17:12 +08:00
> [!IMPORTANT]
> This project does not support Nuitka for building. Some packages used in this project, such as mpv and yt-dlp,
> may not be able to function or may cause crashes in the building process.
Install build tools:
```bash
uv pip install -e ".[build]"
```
Build this project with PyInstaller:
```powershell
.\build.ps1 -Clean
```
2026-08-25 18:17:12 +08:00
The build is written to `dist\PlaylistSaver`. This includes only the
bundled mpv files matching the operating system and CPU architecture on which the
build is performed. Build each target platform on that platform.
2026-08-25 18:17:12 +08:00
## How to use