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


Python LocalGroup.find方法代码示例

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


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

示例1: search

# 需要导入模块: from indico.modules.groups.models.groups import LocalGroup [as 别名]
# 或者: from indico.modules.groups.models.groups.LocalGroup import find [as 别名]
    def search(cls, name, exact=False, providers=None):
        """Searches for groups

        :param name: The group name to search for.
        :param exact: If only exact matches should be found (much faster)
        :param providers: ``None`` to search in all providers and
                          local groups. May be a set specifying
                          providers to search in. For local groups, the
                          ``'indico'`` provider name may be used.
        """
        name = name.strip()
        if not name:
            return []
        if exact:
            criterion = db.func.lower(LocalGroup.name) == name.lower()
        else:
            criterion = db.func.lower(LocalGroup.name).contains(name.lower())
        result = set()
        if providers is None or "indico" in providers:
            result |= {g.proxy for g in LocalGroup.find(criterion)}
        result |= {
            GroupProxy(g.name, g.provider.name, _group=g)
            for g in multipass.search_groups(name, providers=providers, exact=exact)
        }
        return sorted(result, key=lambda x: x.name.lower())
开发者ID:k3njiy,项目名称:indico,代码行数:27,代码来源:core.py

示例2: validate_name

# 需要导入模块: from indico.modules.groups.models.groups import LocalGroup [as 别名]
# 或者: from indico.modules.groups.models.groups.LocalGroup import find [as 别名]
 def validate_name(self, field):
     query = LocalGroup.find(db.func.lower(LocalGroup.name) == field.data.lower())
     if self.group:
         query = query.filter(LocalGroup.id != self.group.id)
     if query.count():
         raise ValidationError(_('A group with this name already exists.'))
开发者ID:MichelCordeiro,项目名称:indico,代码行数:8,代码来源:forms.py

示例3: has_data

# 需要导入模块: from indico.modules.groups.models.groups import LocalGroup [as 别名]
# 或者: from indico.modules.groups.models.groups.LocalGroup import find [as 别名]
 def has_data(self):
     return bool(LocalGroup.find().count())
开发者ID:MichelCordeiro,项目名称:indico,代码行数:4,代码来源:groups.py


注:本文中的indico.modules.groups.models.groups.LocalGroup.find方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。