Download your collection from Bandcamp.
Install Python, then install pipx
and use it to install bcamp-dl
:
python -m pip install --upgrade pip setuptools pipx
pipx install bcamp-dl
To use, login to Bandcamp using one of the supported browsers. All albums in your collection will be downloaded to the output directory, with subfolders, based on the filename format selected. If not specified, the defaults are to use Firefox and download as MP3 V0 to per-artist subfolders in the current directory.
bcamp-dl --browser <BROWSER> --file-format <FORMAT> --directory <DIR> <USERNAME>
For all options, run bcamp-dl --help
git clone https://github.com/ReK42/bcamp-dl.git
cd bcamp-dl
python -m venv .env
source .env/bin/activate
python -m pip install --upgrade pip pre-commit
pre-commit install
pip install -e .[test]
To manually run tests:
mypy src
ruff check src
black --check src