当前位置: 首页>>代码示例>>Python>>正文


Python config.Secret方法代码示例

本文整理汇总了Python中mopidy.config.Secret方法的典型用法代码示例。如果您正苦于以下问题:Python config.Secret方法的具体用法?Python config.Secret怎么用?Python config.Secret使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在mopidy.config的用法示例。


在下文中一共展示了config.Secret方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: get_config_schema

# 需要导入模块: from mopidy import config [as 别名]
# 或者: from mopidy.config import Secret [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 Secret [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 Secret [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 Secret [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 Secret [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.Secret方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。