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


Python Mobile.gql方法代码示例

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


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

示例1: job

# 需要导入模块: from rogerthat.rpc.models import Mobile [as 别名]
# 或者: from rogerthat.rpc.models.Mobile import gql [as 别名]
def job(message, filter_src, buttons, cursor=None):
    from google.appengine.ext import deferred
    filter_function = eval(filter_src)
    query = Mobile.gql("WHERE status = %s" % (Mobile.STATUS_NEW | Mobile.STATUS_ACCOUNT_CREATED | Mobile.STATUS_REGISTERED))
    query.with_cursor(cursor)
    mobiles = query.fetch(100)
    for m in mobiles:
        logging.info("Applying filter on %s" % m.user.email())

        # Patch because bad test data appears to be in the datastore
        profile_info = get_profile_info(m.user)
        if profile_info.isServiceIdentity:
            continue
        # End Patch

        if filter_function(m):
            deferred.defer(send_to_user, message, m.user, buttons, _transactional=db.is_in_transaction())
    if len(mobiles) > 0:
        return deferred.defer(job, message, filter_src, buttons, query.cursor(), _transactional=db.is_in_transaction())
开发者ID:gitter-badger,项目名称:rogerthat-backend,代码行数:21,代码来源:admin_broadcast.py


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