本文整理匯總了Python中persistence.PersistenceManager.get_tourneys方法的典型用法代碼示例。如果您正苦於以下問題:Python PersistenceManager.get_tourneys方法的具體用法?Python PersistenceManager.get_tourneys怎麽用?Python PersistenceManager.get_tourneys使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類persistence.PersistenceManager
的用法示例。
在下文中一共展示了PersistenceManager.get_tourneys方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: export_all_lists
# 需要導入模塊: from persistence import PersistenceManager [as 別名]
# 或者: from persistence.PersistenceManager import get_tourneys [as 別名]
def export_all_lists():
pm = PersistenceManager(myapp.db_connector)
tourneys = pm.get_tourneys();
make_header = True
rows = []
for tourney in tourneys:
ret = get_tourney_lists_as_text(tourney, make_header)
make_header = False
rows.extend( ret )
event = Event(remote_address=myapp.remote_address(request),
event_date=func.now(),
event="export all tourney lists")
pm.db_connector.get_session().add(event)
pm.db_connector.get_session().commit()
return csv_response( rows, "all_lists_download.csv")
示例2: store_champs
# 需要導入模塊: from persistence import PersistenceManager [as 別名]
# 或者: from persistence.PersistenceManager import get_tourneys [as 別名]
def store_champs():
store_champs = simple_cache.get('store-champ-data')
if store_champs is None:
pm = PersistenceManager(myapp.db_connector)
tourneys = pm.get_tourneys()
store_champs = []
for tourney in tourneys:
for rank in tourney.rankings:
if tourney.is_store_championship():
rec = { 'tourney' : decode(tourney.tourney_name),
'num_participants': tourney.participant_count,
'player' : decode(rank.player.player_name),
'swiss_standing': rank.rank,
'championship_standing' : rank.elim_rank,
'pretty_print' : rank.pretty_print() }
store_champs.append(rec)
simple_cache.set( 'store-champ-data', store_champs, timeout=5*60)
return render_template( 'store_champ_lists.html', championship_lists=store_champs)