當前位置: 首頁>>代碼示例>>Python>>正文


Python config.String方法代碼示例

本文整理匯總了Python中mopidy.config.String方法的典型用法代碼示例。如果您正苦於以下問題:Python config.String方法的具體用法?Python config.String怎麽用?Python config.String使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在mopidy.config的用法示例。


在下文中一共展示了config.String方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: get_config_schema

# 需要導入模塊: from mopidy import config [as 別名]
# 或者: from mopidy.config import String [as 別名]
def get_config_schema(self):
        schema = super().get_config_schema()
        schema["hostname"] = config.Hostname()
        schema["port"] = config.Port(optional=True)
        schema["password"] = config.Secret(optional=True)
        schema["max_connections"] = config.Integer(minimum=1)
        schema["connection_timeout"] = config.Integer(minimum=1)
        schema["zeroconf"] = config.String(optional=True)
        schema["command_blacklist"] = config.List(optional=True)
        schema["default_playlist_scheme"] = config.String()
        return schema 
開發者ID:mopidy,項目名稱:mopidy-mpd,代碼行數:13,代碼來源:__init__.py

示例2: get_config_schema

# 需要導入模塊: from mopidy import config [as 別名]
# 或者: from mopidy.config import String [as 別名]
def get_config_schema(self):
        schema = super(Extension, self).get_config_schema()
        schema['server'] = config.String()
        schema['username'] = config.String()
        schema['password'] = config.Secret()
        return schema 
開發者ID:havardgulldahl,項目名稱:mopidy_plex,代碼行數:8,代碼來源:__init__.py

示例3: get_config_schema

# 需要導入模塊: from mopidy import config [as 別名]
# 或者: from mopidy.config import String [as 別名]
def get_config_schema(self):
        schema = super(Extension, self).get_config_schema()
        schema['username'] = config.String(optional=True)
        schema['password'] = config.Secret(optional=True)
        schema['quality'] = config.String(optional=True)
        schema['difm'] = config.Boolean(optional=True)
        schema['radiotunes'] = config.Boolean(optional=True)
        schema['rockradio'] = config.Boolean(optional=True)
        schema['jazzradio'] = config.Boolean(optional=True)
        schema['frescaradio'] = config.Boolean(optional=True)
        return schema 
開發者ID:nilicule,項目名稱:mopidy-audioaddict,代碼行數:13,代碼來源:__init__.py

示例4: get_config_schema

# 需要導入模塊: from mopidy import config [as 別名]
# 或者: from mopidy.config import String [as 別名]
def get_config_schema(self):
        schema = super(Extension, self).get_config_schema()
        schema['username'] = config.String()
        schema['password'] = config.Secret()
        schema['quality'] = config.String(choices=["LOSSLESS", "HIGH", "LOW"])
        return schema 
開發者ID:tehkillerbee,項目名稱:mopidy-tidal,代碼行數:8,代碼來源:__init__.py

示例5: get_config_schema

# 需要導入模塊: from mopidy import config [as 別名]
# 或者: from mopidy.config import String [as 別名]
def get_config_schema(self):
        schema = super(Extension, self).get_config_schema()
        schema['client_id'] = config.String()
        schema['client_secret'] = config.String()
        schema['mopidy_token_url'] = config.String()
        schema['spotify_token_url'] = config.String()
        schema['use_mopidy_oauth_bridge'] = config.Boolean()
        schema['refresh_token'] = config.String()
        return schema 
開發者ID:lfcabend,項目名稱:mopidy-spotify-web,代碼行數:11,代碼來源:__init__.py

示例6: get_config_schema

# 需要導入模塊: from mopidy import config [as 別名]
# 或者: from mopidy.config import String [as 別名]
def get_config_schema(self):
        schema = super(Extension, self).get_config_schema()
        schema['topic'] = config.String()
        schema['mqtthost'] = config.String()
        schema['mqttport'] = config.Integer()
        schema['username'] = config.String()
        schema['password'] = config.String()
        schema['stoppedimage'] = config.String()
        schema['defaultimage'] = config.String()
        return schema 
開發者ID:magcode,項目名稱:mopidy-mqtt,代碼行數:12,代碼來源:__init__.py

示例7: get_config_schema

# 需要導入模塊: from mopidy import config [as 別名]
# 或者: from mopidy.config import String [as 別名]
def get_config_schema(self):
        schema = super().get_config_schema()
        schema["timeout"] = config.Integer(minimum=0)
        schema["filter"] = config.String(
            optional=True, choices=("station", "program")
        )
        return schema 
開發者ID:kingosticks,項目名稱:mopidy-tunein,代碼行數:9,代碼來源:__init__.py

示例8: get_config_schema

# 需要導入模塊: from mopidy import config [as 別名]
# 或者: from mopidy.config import String [as 別名]
def get_config_schema(self):
        schema = super().get_config_schema()
        schema["card"] = config.Integer(minimum=0)
        schema["control"] = config.String()
        schema["min_volume"] = config.Integer(minimum=0, maximum=100)
        schema["max_volume"] = config.Integer(minimum=0, maximum=100)
        schema["volume_scale"] = config.String(
            choices=("linear", "cubic", "log")
        )
        return schema 
開發者ID:mopidy,項目名稱:mopidy-alsamixer,代碼行數:12,代碼來源:__init__.py

示例9: get_config_schema

# 需要導入模塊: from mopidy import config [as 別名]
# 或者: from mopidy.config import String [as 別名]
def get_config_schema(self):
        schema = super(Extension, self).get_config_schema()
        schema['username'] = config.String()
        schema['user_id'] = config.String(optional=True)
        schema['password'] = config.Secret(optional=True)
        schema['hostname'] = config.String()
        schema['libraries'] = config.String(optional=True)
        schema['albumartistsort'] = config.String(optional=True)
        schema['port'] = config.Port(optional=True)
        schema['client_cert'] = config.String(optional=True)
        schema['client_key'] = config.String(optional=True)
        schema['album_format'] = config.String(optional=True)
        schema['max_bitrate'] = config.Integer(optional=True)

        return schema 
開發者ID:jellyfin,項目名稱:mopidy-jellyfin,代碼行數:17,代碼來源:__init__.py


注:本文中的mopidy.config.String方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。