15 lines
		
	
	
		
			334 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			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 And End...",
 | 
						|
        "d: 10",
 | 
						|
    ]
 | 
						|
 | 
						|
    
 | 
						|
    music_kraken.cli.download(genre="test", command_list=commands, process_metadata_anyway=True)
 | 
						|
    _ = "debug" |