Ejemplo n.º 1
0
def print_game(source, id):
    '''print all information for game in database
    :param source: ['gb64',..]
    :param id:     ['1',..]
    '''
    g = search_game(source, id)
    game.print_game(g)
Ejemplo n.º 2
0
def print_game(source, id):
    '''parse game on source and print all information
    :param source: ['gb64',..]
    :param id:     ['1',..]
    '''
    g = parse_game(source, id)
    game.print_game(g)