本文整理汇总了Python中filebrowser.settings.VERSIONS.get方法的典型用法代码示例。如果您正苦于以下问题:Python VERSIONS.get方法的具体用法?Python VERSIONS.get怎么用?Python VERSIONS.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类filebrowser.settings.VERSIONS
的用法示例。
在下文中一共展示了VERSIONS.get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _get_options
# 需要导入模块: from filebrowser.settings import VERSIONS [as 别名]
# 或者: from filebrowser.settings.VERSIONS import get [as 别名]
def _get_options(self, version_suffix, extra_options=None):
options = dict(VERSIONS.get(version_suffix, {}))
if extra_options:
options.update(extra_options)
if 'size' in options and 'width' not in options:
width, height = options['size']
options['width'] = width
options['height'] = height
return options
示例2: _get_namer
# 需要导入模块: from filebrowser.settings import VERSIONS [as 别名]
# 或者: from filebrowser.settings.VERSIONS import get [as 别名]
def _get_namer(self, version_suffix, file_object=None, **extra_options):
if not file_object:
file_object = self.F_IMAGE
extra_options.update(VERSIONS.get(version_suffix, {}))
return self.NAMER_CLASS(
file_object=file_object,
version_suffix=version_suffix,
filename_root=file_object.filename_root,
extension=file_object.extension,
options=extra_options,
)