本文整理匯總了Python中persistence.PersistenceManager.get_league_by_id方法的典型用法代碼示例。如果您正苦於以下問題:Python PersistenceManager.get_league_by_id方法的具體用法?Python PersistenceManager.get_league_by_id怎麽用?Python PersistenceManager.get_league_by_id使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類persistence.PersistenceManager
的用法示例。
在下文中一共展示了PersistenceManager.get_league_by_id方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: get
# 需要導入模塊: from persistence import PersistenceManager [as 別名]
# 或者: from persistence.PersistenceManager import get_league_by_id [as 別名]
def get(self, league_id):
pm = PersistenceManager(myapp.db_connector)
league = pm.get_league_by_id(league_id)
ret = {}
ret[LEAGUE_NAME] = league.name
ret[LEAGUE_CHALLONGE_NAME] = league.challonge_name
tiers = league.tiers
tiers_data = []
ret[LEAGUE_TIERS] = tiers_data
for t in tiers:
tdata = {
TIER_NAME: t.name,
TIER_CHALLONGE_NAME: t.challonge_name,
TIER_DIVISIONS: [],
TIER_ID: t.id
}
for division in t.divisions:
division_players = []
for player in division.players:
division_players.append({PLAYER_NAME: player.name, PLAYER_ID: player.id})
tdata[TIER_DIVISIONS].append({DIVISION_NAME: division.name,
DIVISION_CHALLONGE_NAME: division.name,
DIVISION_ID: division.id,
DIVISION_PLAYERS: division_players
})
tiers_data.append(tdata)
return jsonify(ret)