Skip to content

Instantly share code, notes, and snippets.

View BrownCoatJustice's full-sized avatar

Habis Muhammed BrownCoatJustice

View GitHub Profile
#!/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