2016-11-26 15:44:13 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
|
2017-03-07 06:27:40 +00:00
|
|
|
from notes_tools.tools import extract_flat_marks, get_class_ws, digest_flat_df, term_tools
|
2016-11-26 15:44:13 +00:00
|
|
|
from .texenv import feed_template
|
|
|
|
import pandas as pd
|
|
|
|
import numpy as np
|
|
|
|
import xlrd
|
|
|
|
from path import Path
|
|
|
|
|
|
|
|
import logging
|
2017-03-07 10:08:50 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
2016-11-26 15:44:13 +00:00
|
|
|
|
|
|
|
def term_info(classe, ds_df):
|
|
|
|
"""TODO: Docstring for build_ds_info.
|
|
|
|
|
|
|
|
:param ds_df: TODO
|
|
|
|
:returns: TODO
|
|
|
|
|
|
|
|
|
|
|
|
# TODO: vérifier que toutes ces informations soient identiques sur les lignes |dim. nov. 6 16:06:58 EAT 2016
|
|
|
|
"""
|
|
|
|
eval_info = {}
|
|
|
|
eval_info["Classe"] = classe
|
|
|
|
eval_info["Trimestre"] = ds_df["Trimestre"].unique()[0]
|
|
|
|
return eval_info
|
|
|
|
|
|
|
|
def build_target_name(classe, term, path = Path("./")):
|
|
|
|
""" Build the path where the .tex will be sored
|
|
|
|
|
|
|
|
>>> build_target_name("312", "DS1")
|
2017-03-07 10:08:50 +00:00
|
|
|
Path('./312/report_DS1.tex')
|
2016-11-26 15:44:13 +00:00
|
|
|
>>> build_target_name("312", "DS1", Path("plop/"))
|
2017-03-07 10:08:50 +00:00
|
|
|
Path('plop/312/report_DS1.tex')
|
2016-11-26 15:44:13 +00:00
|
|
|
"""
|
2017-03-07 10:08:50 +00:00
|
|
|
return Path(path + "/{cls}/report_T{term}.tex".format(cls=classe, term=term))
|
2016-11-26 15:44:13 +00:00
|
|
|
|
2017-03-07 10:08:50 +00:00
|
|
|
def term_report(classe, term, path = Path('./'),
|
|
|
|
template = "tpl_reports_term.tex"):
|
|
|
|
""" Generate the report of a evaluation for a class
|
2016-11-26 15:44:13 +00:00
|
|
|
|
|
|
|
:param classe: the classe name
|
|
|
|
:param evalname: name of the evaluation
|
|
|
|
:param path: path where xlsx are stored
|
2017-03-07 10:08:50 +00:00
|
|
|
:param template: template for the report
|
2016-11-26 15:44:13 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
ws = get_class_ws(classe, path)
|
|
|
|
logger.info("Worksheets of {} imported".format(classe))
|
|
|
|
|
|
|
|
flat_df = extract_flat_marks(ws)
|
|
|
|
logger.info("Worksheets parsed")
|
|
|
|
|
2017-03-07 06:27:40 +00:00
|
|
|
term_df = flat_df[flat_df['Trimestre'] == term]
|
|
|
|
|
|
|
|
quest_df, exo_df, eval_df = digest_flat_df(term_df)
|
2017-03-10 05:15:30 +00:00
|
|
|
#conn_df = exo_df[exo_df["Nom"].str.contains('Conn')]
|
2016-11-26 15:44:13 +00:00
|
|
|
|
2017-03-07 10:08:50 +00:00
|
|
|
report_info = term_info(classe, eval_df)
|
2016-11-26 15:44:13 +00:00
|
|
|
|
2017-03-10 05:15:30 +00:00
|
|
|
students_pov = term_tools.students_pov(quest_df, exo_df, eval_df)
|
|
|
|
class_pov = term_tools.class_pov(quest_df, exo_df, eval_df)
|
|
|
|
|
|
|
|
datas = {"report_info": report_info,
|
|
|
|
"classe": class_pov,
|
|
|
|
"students":students_pov,
|
|
|
|
}
|
2016-11-26 15:44:13 +00:00
|
|
|
|
|
|
|
target = build_target_name(classe, term, path)
|
|
|
|
feed_template(target, datas, template)
|
|
|
|
|
|
|
|
|
|
|
|
# -----------------------------
|
|
|
|
# Reglages pour 'vim'
|
|
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
|
|
# cursor: 16 del
|