This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # kebab case for life | |
| # thanks to Aiden Marsh of Stack Overflow (cant find their username anymore) for helping me convert this into a usable local bin script -- just needed that shebang and chmod +x | |
| from pathlib import Path | |
| from mutagen.flac import FLAC | |
| TAGS = ("artist", "composer", "lyricist") # todo: add more later, but not sure where this is going to be useful. | |
| DRY_RUN = False |