18 lines
554 B
Python
18 lines
554 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
from generate_bilan import generate_bilan
|
|
import optparse
|
|
|
|
parser = optparse.OptionParser()
|
|
parser.add_option("-c","--classe",action="store",type="string",dest="classe", help="The classe")
|
|
parser.add_option("-e","--evaluation",action="store",type="string",dest="ds_name", help="The evaluation name.")
|
|
(options, args) = parser.parse_args()
|
|
|
|
build_bilan(options.classe, options.ds_name)
|
|
|
|
# -----------------------------
|
|
# Reglages pour 'vim'
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
# cursor: 16 del
|