music-kraken-core/development/actual_donwload.py

15 lines
318 B
Python

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