music-kraken-core/development/actual_donwload.py
Lars Noack 960d3b74ac
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: prevent collection albums from being fetched from musify
2024-05-07 14:59:28 +02:00

15 lines
329 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",
"10"
]
music_kraken.cli.download(genre="test", command_list=commands, process_metadata_anyway=True)
_ = "debug"