You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1 week ago | |
---|---|---|
.idea | 1 week ago | |
.run | 1 week ago | |
bcao | 1 week ago | |
.gitignore | 1 week ago | |
README.md | 1 week ago | |
bcao.pex | 1 week ago | |
build.sh | 1 week ago | |
mypy.ini | 3 months ago | |
poetry.lock | 1 week ago | |
pyproject.toml | 1 week ago | |
requirements.txt | 1 week ago |
README.md
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