mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
* Move spotdl.py inside spotdl directory * Fix Dockerfile * Re-upload FFmpeg binary * Small fixes ;)
15 lines
429 B
Python
15 lines
429 B
Python
from spotdl import const
|
|
from spotdl import handle
|
|
from spotdl import spotdl
|
|
import pytest
|
|
|
|
|
|
def load_defaults():
|
|
const.args = handle.get_arguments(raw_args='', to_group=False, to_merge=False)
|
|
const.args.overwrite = 'skip'
|
|
const.args.log_level = 10
|
|
|
|
spotdl.args = const.args
|
|
spotdl.log = const.logzero.setup_logger(formatter=const._formatter,
|
|
level=const.args.log_level)
|