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


Python User.find方法代碼示例

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


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

示例1: get_active_user_count

# 需要導入模塊: from website.project.model import User [as 別名]
# 或者: from website.project.model.User import find [as 別名]
def get_active_user_count(time):
    query = (
        Q('date_registered', 'lt', time) &
        Q('is_registered', 'eq', True) &
        Q('password', 'ne', None) &
        Q('merged_by', 'eq', None) &
        Q('date_confirmed', 'ne', None) &
        Q('date_disabled', ' eq', None)
    )
    return User.find(query).count()
開發者ID:alexschiller,項目名稱:osf.io,代碼行數:12,代碼來源:utils.py

示例2: revoke_oauth_access

# 需要導入模塊: from website.project.model import User [as 別名]
# 或者: from website.project.model.User import find [as 別名]
    def revoke_oauth_access(self, external_account, auth, save=True):
        """Revoke all access to an ``ExternalAccount``.

        TODO: This should accept node and metadata params in the future, to
            allow fine-grained revocation of grants. That's not yet been needed,
            so it's not yet been implemented.
        """
        for node in self.get_nodes_with_oauth_grants(external_account):
            try:
                node.get_addon(external_account.provider, deleted=True).deauthorize(auth=auth)
            except AttributeError:
                # No associated addon settings despite oauth grant
                # Remove grant in `for` loop below
                pass

        if User.find(Q('external_accounts', 'eq', external_account._id)).count() == 1:
            # Only this user is using the account, so revoke remote access as well.
            self.revoke_remote_oauth_access(external_account)

        for key in self.oauth_grants:
            self.oauth_grants[key].pop(external_account._id, None)
        if save:
            self.save()
開發者ID:crcresearch,項目名稱:osf.io,代碼行數:25,代碼來源:__init__.py

示例3: get_unregistered_users

# 需要導入模塊: from website.project.model import User [as 別名]
# 或者: from website.project.model.User import find [as 別名]
def get_unregistered_users():
    query = (
        Q('is_registered', 'eq', False)
    )
    return User.find(query).count()
開發者ID:alexschiller,項目名稱:osf.io,代碼行數:7,代碼來源:utils.py

示例4: get_all_user_count

# 需要導入模塊: from website.project.model import User [as 別名]
# 或者: from website.project.model.User import find [as 別名]
def get_all_user_count(time):
    query = Q('date_registered', 'lt', time)
    return User.find(query).count()
開發者ID:HalcyonChimera,項目名稱:osf.io,代碼行數:5,代碼來源:utils.py

示例5: get_queryset

# 需要導入模塊: from website.project.model import User [as 別名]
# 或者: from website.project.model.User import find [as 別名]
 def get_queryset(self):
     query = (
         Q('system_tags', 'eq', self.SPAM_TAG)
     )
     return User.find(query).sort(self.ordering)
開發者ID:alexschiller,項目名稱:osf.io,代碼行數:7,代碼來源:views.py

示例6: find_user_by_family_name

# 需要導入模塊: from website.project.model import User [as 別名]
# 或者: from website.project.model.User import find [as 別名]
 def find_user_by_family_name(family_name):
     user_list = User.find(Q('family_name', 'eq', family_name))
     return user_list[0] if user_list.count() == 1 else None
開發者ID:baylee-d,項目名稱:osf.io,代碼行數:5,代碼來源:views.py


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