music-kraken-core/development/actual_donwload.py
Lars Noack 9d0dcb412b
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: added m string
2024-05-07 13:34:18 +02:00

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