music-kraken-core/development/actual_donwload.py

17 lines
356 B
Python
Raw Permalink Normal View History

2024-04-09 09:59:49 +00:00
import music_kraken
import logging
print("Setting logging-level to DEBUG")
logging.getLogger().setLevel(logging.DEBUG)
if __name__ == "__main__":
commands = [
2024-05-21 13:57:09 +00:00
"s: #a Crystal F",
"10",
2024-05-21 14:43:52 +00:00
"1",
2024-05-21 15:14:58 +00:00
"3",
2024-04-09 09:59:49 +00:00
]
music_kraken.cli.download(genre="test", command_list=commands, process_metadata_anyway=True)
_ = "debug"