music-kraken-core/development/actual_donwload.py
Lars Noack e20b14a9df
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: added fetching artworks to bandcamp
2024-04-19 12:37:14 +02:00

16 lines
346 B
Python

import music_kraken
import logging
print("Setting logging-level to DEBUG")
logging.getLogger().setLevel(logging.DEBUG)
if __name__ == "__main__":
commands = [
"s: #a Ghost Bath",
"0",
"d: 1",
]
music_kraken.cli.download(genre="test", command_list=commands, process_metadata_anyway=True)
_ = "debug"