Bandcamp Album Organiser
ファイルへ移動
Lynne Megido 6d12599767
remove workspace.xml
2023-03-19 11:16:49 +10:00
.idea remove workspace.xml 2023-03-19 11:16:49 +10:00
.run improvements to build script, very minor typing fixes 2021-04-19 10:08:52 +10:00
bcao update dependencies, remove fedi handle 2023-03-19 11:15:09 +10:00
.gitignore its now a package babey 2021-01-18 22:26:28 +10:00
README.md improvements to build script, very minor typing fixes 2021-04-19 10:08:52 +10:00
bcao.pex update deps, housecleaning 2021-09-17 20:02:44 +10:00
build.sh update deps, housecleaning 2021-09-17 20:02:44 +10:00
mypy.ini improvements to build script, very minor typing fixes 2021-04-19 10:08:52 +10:00
poetry.lock update dependencies, remove fedi handle 2023-03-19 11:15:09 +10:00
pyproject.toml update dependencies, remove fedi handle 2023-03-19 11:15:09 +10:00
requirements.txt update deps, housecleaning 2021-09-17 20:02:44 +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 astoundingly easy way

requires pipx. this will install and run bcao from a temporary location.

pipx run --spec git+https://git.bune.city/lynnesbian/bcao bcao [album name.zip]

the very easy way

download bcao.pex and run it:

python bcao.pex [album name.zip]

a pex file is a zip that contains everything needed for a python program to run, including its dependencies.

the pretty easy way

requires poetry. installs the package into a virtual environment in the current directory.

git clone https://git.bune.city/lynnesbian/bcao
cd bcao
poetry install
poetry run bcao [album name.zip]

the other way

you don't have to create a virtualenv, but, y'know, you should and all

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

building it yourself

see build.sh