easlice / bandcamp-downloader

Download your bandcamp collection using this python script.
MIT License
281 stars 34 forks source link

Feature: Allow specifying a custom filename format #15

Closed puigru closed 1 year ago

puigru commented 1 year ago

Allows specifying a custom filename format for downloaded releases. Example: ./bandcamp-downloader.py --filename-format '{artist}/{item_id} {artist} - {title}' ...

By specifying {item_id} in the filename, we avoid running into #14

easlice commented 1 year ago

This is a great option, and I really appreciate how you set everything up in a similar style to how things were already done. I particularly liked the use of TRACK_INFO_KEYS. Very nice.