music-kraken-core/development/actual_donwload.py
Hellow 6805d1cbe6
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: allowed to append none to source collection
2024-05-06 18:40:21 +02:00

15 lines
334 B
Python

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