當前位置: 首頁>>代碼示例>>Python>>正文


Python PersistenceManager.get_ship_pilot方法代碼示例

本文整理匯總了Python中persistence.PersistenceManager.get_ship_pilot方法的典型用法代碼示例。如果您正苦於以下問題:Python PersistenceManager.get_ship_pilot方法的具體用法?Python PersistenceManager.get_ship_pilot怎麽用?Python PersistenceManager.get_ship_pilot使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在persistence.PersistenceManager的用法示例。


在下文中一共展示了PersistenceManager.get_ship_pilot方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: add_squad

# 需要導入模塊: from persistence import PersistenceManager [as 別名]
# 或者: from persistence.PersistenceManager import get_ship_pilot [as 別名]
def add_squad():
         data         = request.json['data']
         points       = request.json['points']
         faction      = request.json['faction']

         tourney_id = request.args.get('tourney_id')
         tourney_list_id = request.args.get('tourney_list_id')

         pm = PersistenceManager(myapp.db_connector)
         tourney_list = pm.get_tourney_list(tourney_list_id)
         tourney_list.faction = Faction.from_string( faction )
         tourney_list.points  = points

         ships = []
         for squad_member in data:
             ship_pilot = pm.get_ship_pilot( squad_member['ship'], squad_member['pilot'] )
             ship       = Ship( ship_pilot_id=ship_pilot.id, tlist_id=tourney_list.id)
             tourney_list.ships.append( ship )
             for upgrade in squad_member['upgrades']:
                 upgrade = pm.get_upgrade(upgrade['type'], upgrade['name'])
                 ship_upgrade = ShipUpgrade( ship_id=ship.id,
                                             upgrade=upgrade )
                 ship.upgrades.append( ship_upgrade )
             ships.append( ship )

         tourney_list.generate_hash_key()
         pm.db_connector.get_session().add_all( ships )
         pm.db_connector.get_session().commit()

         return jsonify(tourney_id=tourney_id, tourney_list_id=tourney_list.id)
開發者ID:roshow,項目名稱:xwlists,代碼行數:32,代碼來源:xwlists.py

示例2: open

# 需要導入模塊: from persistence import PersistenceManager [as 別名]
# 或者: from persistence.PersistenceManager import get_ship_pilot [as 別名]
                            print "missing " + ship_name
                        if args['--db']:
                            ship_name_upper = ship_name.upper()
                            ship_name_canon = ship_name_upper + "_CANON_NAME"
                            print "%s = '%s'" % (ship_name_upper, ship_name)
                            print "%s = '%s'" % (ship_name_canon, ship['xws'])


    if args['pilots']:
        with open(pilots_file) as data_file:
            pilots = json.loads(data_file.read())
            for pilot in pilots:
                p = pilot['name']
                ship_xws = ship_map[ pilot['ship']]['xws']
                if not p in ship_exclusions:
                    db_pilot = pm.get_ship_pilot(pilot['ship'], p)
                    if db_pilot is None:
                        if args['--db']:
                            sql = "insert into pilot ( name, canon_name, cost, pilot_skill  ) " \
                                  "values ( '%s','%s', '%d', '%d' );" % \
                                  (pilot['name'], pilot['xws'], pilot['points'], pilot['skill'])
                            print sql
                            sql = "insert  ship_pilot ( ship_type, pilot_id) " \
                                  "select '%s', id from pilot where name='%s' and canon_name='%s';" % \
                                  (ship_xws,
                                   pilot['name'],
                                   pilot['xws'])
                            print sql
                        if args['--metadata']:
                            chassis = ship_map[pilot['ship']]
                            pp.pprint( { 'ship_size': chassis['size'], 'faction': None, 'name': pilot['name'], 'canon_name': pilot['xws'],
開發者ID:lhayhurst,項目名稱:xwlists,代碼行數:33,代碼來源:xwing-data-pull.py


注:本文中的persistence.PersistenceManager.get_ship_pilot方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。