Downloading and Unzipping Bandcamp Collection on MacOS

Downloading and Unzipping Bandcamp Collection on MacOS
Photo by Josephina Kolpachnikof / Unsplash

Well I finally got the Android File Transfer app working on MacOS, so I updated my Bandcamp downloader scripts to work on MacOS.

Suuuuper easy:

#!/bin/zsh

python3 ~/code/bandcamp-downloader/bandcamp-downloader.py \
	kindohm \
	--download-since 2024-04-08 \
	--directory /Users/kindohm/bandcamp-downloaded \
	--filename-format "{artist}.{title}"

cd ~/bandcamp-downloaded

for f in *.zip; do unzip "$f" -d "${f%.zip}"; done