本文整理汇总了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())