Bandcamp Album Organiser
Go to file
Lynne Megido e721a85fd2
its now a package babey
2021-01-18 22:26:28 +10:00
.idea silly intellij stuff 2021-01-18 22:25:59 +10:00
.run restructured into package 2021-01-18 19:58:49 +10:00
bcao shuffling of stufflings 2021-01-18 22:24:31 +10:00
.gitignore its now a package babey 2021-01-18 22:26:28 +10:00
README.md its now a package babey 2021-01-18 22:26:28 +10:00
bcao.pex its now a package babey 2021-01-18 22:26:28 +10:00
build.sh its now a package babey 2021-01-18 22:26:28 +10:00
mypy.ini my py dot ini 2020-10-26 23:39:36 +10:00
poetry.lock its now a package babey 2021-01-18 22:26:28 +10:00
pyproject.toml its now a package babey 2021-01-18 22:26:28 +10:00
requirements.txt its now a package babey 2021-01-18 22:26:28 +10:00

bcao

bandcamp album organiser - a python script to organise, rename, and apply cover art to zip files downloaded from bandcamp.

usage

./bcao.py [zip file] [options]

see the help menu (--help) for more.

installing

the very easy way

download bcao.pex and run it:

python bcao.pex [album name.zip]

the pretty easy way

requires poetry.

git clone https://git.bune.city/lynnesbian/bcao
cd bcao
poetry install
poetry run bcao

the other way

git clone https://git.bune.city/lynnesbian/bcao
cd bcao
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
python -m bcao

building it yourself

see build.sh