本文整理汇总了Python中myapp.ApiObject.ApiObject.set_list_if_empty方法的典型用法代码示例。如果您正苦于以下问题:Python ApiObject.set_list_if_empty方法的具体用法?Python ApiObject.set_list_if_empty怎么用?Python ApiObject.set_list_if_empty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类myapp.ApiObject.ApiObject
的用法示例。
在下文中一共展示了ApiObject.set_list_if_empty方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _append_list_core
# 需要导入模块: from myapp.ApiObject import ApiObject [as 别名]
# 或者: from myapp.ApiObject.ApiObject import set_list_if_empty [as 别名]
def _append_list_core(data,bookmark_key_list):
#batch get
try:
bookmark_list=db.get(bookmark_key_list)
except db.BadValueError as e:
logging.error(e)
bookmark_list=None
#BadValueError: Property follower_list is requiredの対策
if(bookmark_list==None):
bookmark_list=[]
for bookmark_key in bookmark_key_list:
try:
bookmark_list.append(db.get(bookmark_key))
except db.BadValueError as e:
logging.error(e)
#update and put
put_bookmark_list=[]
for bookmark in bookmark_list:
if(bookmark):
bookmark=ApiObject.set_list_if_empty(bookmark)
if(StackFeed._append_one_core(data,bookmark)):
put_bookmark_list.append(bookmark)
#batch put
if(len(put_bookmark_list)>=1):
db.put(put_bookmark_list)
put_bookmark_list=[]
示例2: _append_list_core
# 需要导入模块: from myapp.ApiObject import ApiObject [as 别名]
# 或者: from myapp.ApiObject.ApiObject import set_list_if_empty [as 别名]
def _append_list_core(data,bookmark_key_list):
#batch get
bookmark_list=db.get(bookmark_key_list)
#update and put
put_bookmark_list=[]
for bookmark in bookmark_list:
if(bookmark):
bookmark=ApiObject.set_list_if_empty(bookmark)
if(StackFeed._append_one_core(data,bookmark)):
put_bookmark_list.append(bookmark)
#batch put
if(len(put_bookmark_list)>=1):
db.put(put_bookmark_list)
put_bookmark_list=[]