Python3 Migrate

This commit is contained in:
MariuszC
2020-01-18 20:01:00 +01:00
parent ea05af2d15
commit 6cd7e0fe44
691 changed files with 201846 additions and 598 deletions

View File

@@ -0,0 +1,31 @@
import logging
import os
import mopidy
from mopidy import config, ext
logger = logging.getLogger(__name__)
class Extension(ext.Extension):
dist_name = "Mopidy-M3U"
ext_name = "m3u"
version = mopidy.__version__
def get_default_config(self):
conf_file = os.path.join(os.path.dirname(__file__), "ext.conf")
return config.read(conf_file)
def get_config_schema(self):
schema = super().get_config_schema()
schema["base_dir"] = config.Path(optional=True)
schema["default_encoding"] = config.String()
schema["default_extension"] = config.String(choices=[".m3u", ".m3u8"])
schema["playlists_dir"] = config.Path(optional=True)
return schema
def setup(self, registry):
from .backend import M3UBackend
registry.add("backend", M3UBackend)