Metadata-Version: 2.4
Name: cue2list
Version: 1.0.0
Summary: Convert CD Audio CUE sheets (.cue) into a Markdown or plain-text tracklist.
Author-email: elkarrde <nfalica@gmail.com>
License-Expression: MPL-2.0
Project-URL: Homepage, https://codeberg.org/elkarrde/Cue2List
Project-URL: Repository, https://codeberg.org/elkarrde/Cue2List
Project-URL: Mirror, https://github.com/elkarrde/cue2list
Keywords: cue,cuesheet,tracklist,markdown,cd-audio
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Sound/Audio
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Cue2List
---

Converts Cuefile (`.cue`) to Markdown list (`.md`) or text list (`.txt`).

Usage: `python3 cue2lst.py <cuefile> <output_format> [--verbose]`

- **cuefile**: cuefile `.cue`,
- **output_format**: `md` or `txt`,
- **verbose**: switch, if used, tracklist will be displayed.

## Install

Pure Python 3 standard library — no third-party dependencies.

### Option A — grab the single file (no install)

The whole tool is one self-contained script. Download it and run:

```bash
curl -O https://codeberg.org/elkarrde/Cue2List/raw/branch/master/cue2lst.py
python3 cue2lst.py album.cue md
```

Or drop it on your `$PATH` as a command (it has a shebang and is executable):

```bash
curl -o ~/.local/bin/cue2lst https://codeberg.org/elkarrde/Cue2List/raw/branch/master/cue2lst.py
chmod +x ~/.local/bin/cue2lst
cue2lst album.cue md
```

### Option B — install as a command with pipx

Installs into an isolated environment and puts a `cue2lst` command on your `$PATH`:

```bash
pipx install git+https://codeberg.org/elkarrde/Cue2List
cue2lst album.cue md
```

(Use `pip install git+...` instead of `pipx` if you prefer installing into the current environment.)

----

- Main repo: [Codeberg](https://codeberg.org/elkarrde/Cue2List)
- Mirror: [GitHub](https://github.com/elkarrde/cue2list)
- Website (Hugo source): [Codeberg](https://codeberg.org/elkarrde/Cue2List-web)
