music-kraken-core/development/actual_donwload.py
Hellow 3e29e1d322
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
draft: fix collection appending
2024-04-29 22:37:07 +02:00

15 lines
333 B
Python

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