{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "25b1d95f", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:26.060875Z", "iopub.status.busy": "2023-02-28T14:59:26.060368Z", "iopub.status.idle": "2023-02-28T14:59:26.763612Z", "shell.execute_reply": "2023-02-28T14:59:26.763926Z" }, "extensions": { "jupyter_dashboards": { "version": 1, "views": { "grid_default": {}, "report_default": { "hidden": true } } } }, "papermill": { "duration": 0.756539, "end_time": "2023-02-28T14:59:26.764050", "exception": false, "start_time": "2023-02-28T14:59:26.007511", "status": "completed" }, "slideshow": { "slide_type": "skip" }, "tags": [] }, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from IPython.display import Markdown as md\n", "from IPython.display import display, HTML\n", "import pandas as pd\n", "import numpy as np\n", "import ipywidgets as widgets\n", "from pathlib import Path\n", "from datetime import datetime\n", "from recopytex import flat_df_students, pp_q_scores\n", "from datetime import datetime\n", "\n", "\n", "import chart_studio.plotly as py\n", "import plotly.graph_objects as go\n", "import plotly.figure_factory as ff\n", "\n", "from plotly.offline import iplot, init_notebook_mode\n", "init_notebook_mode()" ] }, { "cell_type": "code", "execution_count": 2, "id": "3a865047", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:26.912665Z", "iopub.status.busy": "2023-02-28T14:59:26.912247Z", "iopub.status.idle": "2023-02-28T14:59:26.913413Z", "shell.execute_reply": "2023-02-28T14:59:26.913699Z" }, "extensions": { "jupyter_dashboards": { "version": 1, "views": { "grid_default": {}, "report_default": { "hidden": true } } } }, "papermill": { "duration": 0.076668, "end_time": "2023-02-28T14:59:26.913778", "exception": false, "start_time": "2023-02-28T14:59:26.837110", "status": "completed" }, "slideshow": { "slide_type": "skip" }, "tags": [ "parameters" ] }, "outputs": [], "source": [ "tribe = \"ES\"\n", "assessment = \"ds2\"\n", "date = \"14/10/19\"\n", "csv_file = Path(f\"../{tribe}/191014_{assessment}.csv\")" ] }, { "cell_type": "code", "execution_count": 3, "id": "76f73c11", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:27.062644Z", "iopub.status.busy": "2023-02-28T14:59:27.062296Z", "iopub.status.idle": "2023-02-28T14:59:27.063603Z", "shell.execute_reply": "2023-02-28T14:59:27.063875Z" }, "papermill": { "duration": 0.077335, "end_time": "2023-02-28T14:59:27.063957", "exception": false, "start_time": "2023-02-28T14:59:26.986622", "status": "completed" }, "tags": [ "injected-parameters" ] }, "outputs": [], "source": [ "# Parameters\n", "tribe = \"2gt1\"\n", "assessment = \"Ds4\"\n", "date = \"24/02/23\"\n", "csv_file = \"/home/lafrite/Cours/2022-2023/Notes/2gt1/230224_DS4.csv\"\n" ] }, { "cell_type": "code", "execution_count": 4, "id": "63832c37", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:27.213463Z", "iopub.status.busy": "2023-02-28T14:59:27.213110Z", "iopub.status.idle": "2023-02-28T14:59:27.214461Z", "shell.execute_reply": "2023-02-28T14:59:27.214733Z" }, "papermill": { "duration": 0.077937, "end_time": "2023-02-28T14:59:27.214814", "exception": false, "start_time": "2023-02-28T14:59:27.136877", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "/home/lafrite/Cours/2022-2023/Notes/2gt1/230224_DS4\n" ] } ], "source": [ "date = datetime.strptime(date, \"%d/%m/%y\")\n", "output_path = Path(csv_file[:-4])\n", "print(output_path)" ] }, { "cell_type": "code", "execution_count": 5, "id": "2a41f502", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:27.367480Z", "iopub.status.busy": "2023-02-28T14:59:27.367125Z", "iopub.status.idle": "2023-02-28T14:59:27.368635Z", "shell.execute_reply": "2023-02-28T14:59:27.368919Z" }, "extensions": { "jupyter_dashboards": { "version": 1, "views": { "grid_default": {}, "report_default": { "hidden": false } } } }, "papermill": { "duration": 0.081224, "end_time": "2023-02-28T14:59:27.368999", "exception": false, "start_time": "2023-02-28T14:59:27.287775", "status": "completed" }, "slideshow": { "slide_type": "slide" }, "tags": [] }, "outputs": [ { "data": { "text/markdown": [ "# Ds4 (23/02/24) pour 2gt1" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "if date is None:\n", " display(md(f\"# {assessment} pour {tribe}\"))\n", "else:\n", " display(md(f\"# {assessment} ({date:%y/%m/%d}) pour {tribe}\"))" ] }, { "cell_type": "code", "execution_count": 6, "id": "3149dc30", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:27.556422Z", "iopub.status.busy": "2023-02-28T14:59:27.529858Z", "iopub.status.idle": "2023-02-28T14:59:27.672229Z", "shell.execute_reply": "2023-02-28T14:59:27.671858Z" }, "extensions": { "jupyter_dashboards": { "version": 1, "views": { "grid_default": {}, "report_default": { "hidden": true } } } }, "papermill": { "duration": 0.229877, "end_time": "2023-02-28T14:59:27.672303", "exception": false, "start_time": "2023-02-28T14:59:27.442426", "status": "completed" }, "slideshow": { "slide_type": "skip" }, "tags": [] }, "outputs": [], "source": [ "stack_scores = pd.read_csv(csv_file, encoding=\"UTF8\")\n", "#comments = stack_scores.iloc[0]\n", "#stack_scores.drop([0], inplace=True)\n", "scores = flat_df_students(stack_scores).dropna(subset=[\"Score\"])\n", "scores = pp_q_scores(scores)\n", "#scores.head()\n", "#comments.drop()" ] }, { "cell_type": "code", "execution_count": 7, "id": "48cb4a36", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:27.824571Z", "iopub.status.busy": "2023-02-28T14:59:27.822678Z", "iopub.status.idle": "2023-02-28T14:59:27.827184Z", "shell.execute_reply": "2023-02-28T14:59:27.826836Z" }, "extensions": { "jupyter_dashboards": { "version": 1, "views": { "grid_default": {}, "report_default": { "hidden": true } } } }, "papermill": { "duration": 0.081613, "end_time": "2023-02-28T14:59:27.827255", "exception": false, "start_time": "2023-02-28T14:59:27.745642", "status": "completed" }, "slideshow": { "slide_type": "skip" }, "tags": [] }, "outputs": [], "source": [ "exercises_scores = scores.groupby([\"Exercice\", \"Eleve\"]).agg({\"Note\": \"sum\", \"Bareme\": \"sum\"})" ] }, { "cell_type": "code", "execution_count": 8, "id": "15025186", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:27.977591Z", "iopub.status.busy": "2023-02-28T14:59:27.977238Z", "iopub.status.idle": "2023-02-28T14:59:27.982314Z", "shell.execute_reply": "2023-02-28T14:59:27.982023Z" }, "papermill": { "duration": 0.081389, "end_time": "2023-02-28T14:59:27.982386", "exception": false, "start_time": "2023-02-28T14:59:27.900997", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NoteBareme
ExerciceEleve
Exercice 1ACHOUR Ilyes3.007
BELARBI Islem0.007
BEN ELALLID Hajar3.007
BISWAS Lina2.677
BOULAABA Rayan5.007
\n", "
" ], "text/plain": [ " Note Bareme\n", "Exercice Eleve \n", "Exercice 1 ACHOUR Ilyes 3.00 7\n", " BELARBI Islem 0.00 7\n", " BEN ELALLID Hajar 3.00 7\n", " BISWAS Lina 2.67 7\n", " BOULAABA Rayan 5.00 7" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "exercises_scores.head()" ] }, { "cell_type": "code", "execution_count": 9, "id": "71c672c0", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:28.132706Z", "iopub.status.busy": "2023-02-28T14:59:28.132290Z", "iopub.status.idle": "2023-02-28T14:59:28.133456Z", "shell.execute_reply": "2023-02-28T14:59:28.133740Z" }, "papermill": { "duration": 0.077782, "end_time": "2023-02-28T14:59:28.133824", "exception": false, "start_time": "2023-02-28T14:59:28.056042", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "assessment_scores = scores.groupby([\"Eleve\"]).agg({\"Note\": \"sum\", \"Bareme\": \"sum\"})" ] }, { "cell_type": "code", "execution_count": 10, "id": "d8a02878", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:28.284141Z", "iopub.status.busy": "2023-02-28T14:59:28.283722Z", "iopub.status.idle": "2023-02-28T14:59:28.285828Z", "shell.execute_reply": "2023-02-28T14:59:28.285486Z" }, "papermill": { "duration": 0.078551, "end_time": "2023-02-28T14:59:28.285895", "exception": false, "start_time": "2023-02-28T14:59:28.207344", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/plain": [ "Index(['Nom', 'Trimestre', 'Date', 'Exercice', 'Question', 'Competence',\n", " 'Domaine', 'Commentaire', 'Est_nivele', 'Bareme', 'Eleve', 'Score',\n", " 'Note', 'Niveau', 'Normalise'],\n", " dtype='object')" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "scores.columns" ] }, { "cell_type": "code", "execution_count": 11, "id": "b6717594", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:28.439475Z", "iopub.status.busy": "2023-02-28T14:59:28.439098Z", "iopub.status.idle": "2023-02-28T14:59:28.440321Z", "shell.execute_reply": "2023-02-28T14:59:28.440605Z" }, "papermill": { "duration": 0.080898, "end_time": "2023-02-28T14:59:28.440689", "exception": false, "start_time": "2023-02-28T14:59:28.359791", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "domain_scores = scores.groupby([\"Eleve\", \"Domaine\"]).agg({\"Note\": \"sum\", \"Bareme\": \"sum\"})\n", "domain_scores[\"Normalized\"] = domain_scores[\"Note\"] / domain_scores[\"Bareme\"]" ] }, { "cell_type": "code", "execution_count": 12, "id": "d87553e1", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:28.590946Z", "iopub.status.busy": "2023-02-28T14:59:28.590592Z", "iopub.status.idle": "2023-02-28T14:59:28.592342Z", "shell.execute_reply": "2023-02-28T14:59:28.592040Z" }, "papermill": { "duration": 0.077857, "end_time": "2023-02-28T14:59:28.592409", "exception": false, "start_time": "2023-02-28T14:59:28.514552", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "#domain_scores" ] }, { "cell_type": "code", "execution_count": 13, "id": "61a49219", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:28.746366Z", "iopub.status.busy": "2023-02-28T14:59:28.745895Z", "iopub.status.idle": "2023-02-28T14:59:28.747049Z", "shell.execute_reply": "2023-02-28T14:59:28.747337Z" }, "papermill": { "duration": 0.081107, "end_time": "2023-02-28T14:59:28.747422", "exception": false, "start_time": "2023-02-28T14:59:28.666315", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "competence_scores = scores.groupby([\"Eleve\", \"Competence\"]).agg({\"Note\": \"sum\", \"Bareme\": \"sum\"})\n", "competence_scores[\"Normalized\"] = competence_scores[\"Note\"] / competence_scores[\"Bareme\"]" ] }, { "cell_type": "code", "execution_count": 14, "id": "7c8ad2c9", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:28.901705Z", "iopub.status.busy": "2023-02-28T14:59:28.901337Z", "iopub.status.idle": "2023-02-28T14:59:28.902902Z", "shell.execute_reply": "2023-02-28T14:59:28.903191Z" }, "papermill": { "duration": 0.081904, "end_time": "2023-02-28T14:59:28.903273", "exception": false, "start_time": "2023-02-28T14:59:28.821369", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
NoteBaremeNormalized
EleveCompetence
TOURRETTE EliseRaisonner3.3380.42
Représenter3.6750.73
TROPHARDY ElineCalculer6.3370.90
Raisonner7.0080.88
Représenter4.6750.93
\n", "
" ], "text/plain": [ " Note Bareme Normalized\n", "Eleve Competence \n", "TOURRETTE Elise Raisonner 3.33 8 0.42\n", " Représenter 3.67 5 0.73\n", "TROPHARDY Eline Calculer 6.33 7 0.90\n", " Raisonner 7.00 8 0.88\n", " Représenter 4.67 5 0.93" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "competence_scores.tail()" ] }, { "cell_type": "markdown", "id": "3437315d", "metadata": { "papermill": { "duration": 0.073401, "end_time": "2023-02-28T14:59:29.051095", "exception": false, "start_time": "2023-02-28T14:59:28.977694", "status": "completed" }, "tags": [] }, "source": [ "### Bilans personnalisés" ] }, { "cell_type": "code", "execution_count": 15, "id": "dd4fa512", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:29.203343Z", "iopub.status.busy": "2023-02-28T14:59:29.202996Z", "iopub.status.idle": "2023-02-28T14:59:29.219589Z", "shell.execute_reply": "2023-02-28T14:59:29.219222Z" }, "papermill": { "duration": 0.09395, "end_time": "2023-02-28T14:59:29.219661", "exception": false, "start_time": "2023-02-28T14:59:29.125711", "status": "completed" }, "scrolled": true, "tags": [] }, "outputs": [], "source": [ "import pytex\n", "#scores.head()" ] }, { "cell_type": "code", "execution_count": 16, "id": "6a667215", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:29.442198Z", "iopub.status.busy": "2023-02-28T14:59:29.432437Z", "iopub.status.idle": "2023-02-28T14:59:29.443363Z", "shell.execute_reply": "2023-02-28T14:59:29.443653Z" }, "papermill": { "duration": 0.149598, "end_time": "2023-02-28T14:59:29.443738", "exception": false, "start_time": "2023-02-28T14:59:29.294140", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "datas = {\n", " \"assessment\": {\n", " \"name\": assessment,\n", " \"date\": date\n", " },\n", " #\"exercises\": scores[\"Exercice\"].unique(),\n", " #\"questions\": scores[[\"Exercice\", 'Question', 'Competence', 'Domaine', 'Commentaire', 'Bareme', 'Est_nivele']],\n", " \"eleves\": {}\n", "}\n", "for e in scores[\"Eleve\"].unique():\n", " edatas = {\n", " \"e\": e,\n", " \"assessment\": assessment_scores.loc[e],\n", " \"exercices\": exercises_scores.xs(e, level=\"Eleve\"), \"exercices\": exercises_scores.xs(e, level=\"Eleve\"),\n", " \"domains\": domain_scores.xs(e, level=\"Eleve\"),\n", " \"competences\": competence_scores.xs(e, level=\"Eleve\"),\n", " \"exscores\": {}\n", " }\n", " for i, ex in edatas[\"exercices\"].iterrows():\n", " edatas[\"exscores\"][i] = scores.loc[(scores.Exercice==i) & (scores.Eleve==e)]\n", " datas[\"eleves\"][e] = edatas" ] }, { "cell_type": "code", "execution_count": 17, "id": "16b39fd6", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:29.596604Z", "iopub.status.busy": "2023-02-28T14:59:29.596209Z", "iopub.status.idle": "2023-02-28T14:59:29.597824Z", "shell.execute_reply": "2023-02-28T14:59:29.597479Z" }, "papermill": { "duration": 0.07978, "end_time": "2023-02-28T14:59:29.597892", "exception": false, "start_time": "2023-02-28T14:59:29.518112", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "score_template = r\"\"\"\n", "\\documentclass[a5paper,10pt]{article}\n", "\\usepackage{fullpage}\n", "\\usepackage{booktabs}\n", "\\usepackage{longtable}\n", "\\usepackage{tikz}\n", "\\usepackage{multicol}\n", "\n", "\\usepackage{geometry}\n", "\\geometry{left=10mm,right=10mm, top=10mm}\n", "\n", "\\renewcommand{\\arraystretch}{1}\n", "\\setlength{\\columnseprule}{0pt}\n", "\n", "\\pagestyle{empty}\n", "\n", "\n", "\\begin{document}\n", "\n", "\n", " \\section*{\\Var{assessment.name} \\hfill \\Var{e} \\hfill \\Var{sc.assessment.Note}/\\Var{sc.assessment.Bareme}}\n", " %- for i,ex in sc.exercices.iterrows() \n", " \\subsection*{\\Var{i}: \\hfill \\Var{ex.Note} / \\Var{ex.Bareme}}\n", " \\begin{center}\n", " \\Var{sc.exscores[i].to_latex(index=False, columns=[\"Question\", \"Domaine\", \"Commentaire\", \"Note\", \"Bareme\"])}\n", " \\end{center}\n", " %- endfor\n", " \n", " \\subsection*{Compétences}\n", " \\begin{multicols}{2}\n", " %- for i,dom in sc.competences.iterrows()\n", " \\noindent\n", " \\Var{i} \\hfill\n", " \\begin{tikzpicture}[scale=0.7]\n", " \\draw [](0,0) rectangle (3, 1);\n", " \\draw [fill=black!20] (0, 0) rectangle (\\Var{dom.Normalized*3}, 1);\n", " \\end{tikzpicture}\n", " \\hfill\n", " %\\Var{dom.Normalized}\n", " \n", " %- endfor\n", " \\end{multicols}\n", "\n", "\\end{document}\n", "\"\"\"" ] }, { "cell_type": "code", "execution_count": 18, "id": "e7d7716e", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:29.757714Z", "iopub.status.busy": "2023-02-28T14:59:29.757138Z", "iopub.status.idle": "2023-02-28T14:59:34.219379Z", "shell.execute_reply": "2023-02-28T14:59:34.218221Z" }, "papermill": { "duration": 4.546299, "end_time": "2023-02-28T14:59:34.219450", "exception": false, "start_time": "2023-02-28T14:59:29.673151", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_ACHOUR Ilyes.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_ACHOUR Ilyes.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_ACHOUR Ilyes.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_ACHOUR Ilyes.tex\n", "Wrote 230224_Ds4_BELARBI Islem.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_BELARBI Islem.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_BELARBI Islem.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_BELARBI Islem.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_BEN ELALLID Hajar.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_BEN ELALLID Hajar.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_BEN ELALLID Hajar.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_BEN ELALLID Hajar.tex\n", "Wrote 230224_Ds4_BISWAS Lina.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_BISWAS Lina.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_BISWAS Lina.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_BISWAS Lina.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_BOULAABA Rayan.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_BOULAABA Rayan.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_BOULAABA Rayan.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_BOULAABA Rayan.tex\n", "Wrote 230224_Ds4_BREZUN Ines.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_BREZUN Ines.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_BREZUN Ines.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_BREZUN Ines.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_BUGNON Enzo.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_BUGNON Enzo.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_BUGNON Enzo.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_BUGNON Enzo.tex\n", "Wrote 230224_Ds4_CALLEWAERT Idaline.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_CALLEWAERT Idaline.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_CALLEWAERT Idaline.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_CALLEWAERT Idaline.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_CATTIN Clément.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_CATTIN Clément.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_CATTIN Clément.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_CATTIN Clément.tex\n", "Wrote 230224_Ds4_CHRISTMANN Nathan.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_CHRISTMANN Nathan.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_CHRISTMANN Nathan.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_CHRISTMANN Nathan.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_DECOSTER Clément.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_DECOSTER Clément.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_DECOSTER Clément.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_DECOSTER Clément.tex\n", "Wrote 230224_Ds4_DEHIMAT Launy.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_DEHIMAT Launy.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_DEHIMAT Launy.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_DEHIMAT Launy.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_DUPONT Jessica.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_DUPONT Jessica.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_DUPONT Jessica.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_DUPONT Jessica.tex\n", "Wrote 230224_Ds4_GASAN Jéssica.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_GASAN Jéssica.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_GASAN Jéssica.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_GASAN Jéssica.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_GEORGET Raphaël.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_GEORGET Raphaël.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_GEORGET Raphaël.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_GEORGET Raphaël.tex\n", "Wrote 230224_Ds4_HABBAZ Hajar.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_HABBAZ Hajar.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_HABBAZ Hajar.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_HABBAZ Hajar.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_JACQUEMIER Samuel.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_JACQUEMIER Samuel.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_JACQUEMIER Samuel.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_JACQUEMIER Samuel.tex\n", "Wrote 230224_Ds4_JACQUIER Juliette.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_JACQUIER Juliette.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_JACQUIER Juliette.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_JACQUIER Juliette.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_KASSI Cheïma.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_KASSI Cheïma.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_KASSI Cheïma.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_KASSI Cheïma.tex\n", "Wrote 230224_Ds4_KICHENASSAMY Sanjay.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_KICHENASSAMY Sanjay.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_KICHENASSAMY Sanjay.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_KICHENASSAMY Sanjay.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_LE VEUZIT Adrien.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_LE VEUZIT Adrien.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_LE VEUZIT Adrien.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_LE VEUZIT Adrien.tex\n", "Wrote 230224_Ds4_LETIF Ilef.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_LETIF Ilef.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_LETIF Ilef.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_LETIF Ilef.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_MANJALI Hiba.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_MANJALI Hiba.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_MANJALI Hiba.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_MANJALI Hiba.tex\n", "Wrote 230224_Ds4_NEIVA Hugo.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_NEIVA Hugo.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_NEIVA Hugo.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_NEIVA Hugo.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_OLLIET Gioia.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_OLLIET Gioia.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_OLLIET Gioia.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_OLLIET Gioia.tex\n", "Wrote 230224_Ds4_PERNOT Gabin.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_PERNOT Gabin.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_PERNOT Gabin.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_PERNOT Gabin.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_RIZZI Elisa.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_RIZZI Elisa.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_RIZZI Elisa.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_RIZZI Elisa.tex\n", "Wrote 230224_Ds4_ROSTANT Emma.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_ROSTANT Emma.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_ROSTANT Emma.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_ROSTANT Emma.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_SIBABA Moaad.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_SIBABA Moaad.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_SIBABA Moaad.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_SIBABA Moaad.tex\n", "Wrote 230224_Ds4_SOUJOL Damien.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_SOUJOL Damien.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_SOUJOL Damien.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_SOUJOL Damien.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_THORAL Fanny.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_THORAL Fanny.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_THORAL Fanny.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_THORAL Fanny.tex\n", "Wrote 230224_Ds4_TOURRETTE Elise.tex\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_TOURRETTE Elise.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_TOURRETTE Elise.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_TOURRETTE Elise.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! I can't find file `230224_Ds4_TROPHARDY Eline.tex'.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_TROPHARDY Eline.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: (Press Enter to retry, or Control-D to exit)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Please type another input file name\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! Emergency stop.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: <*> \"230224_Ds4_TROPHARDY Eline.tex\"\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: \n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 270 words of node memory still in use:\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: 1 hlist, 39 glue_spec nodes\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: avail lists: 2:12,3:1,4:1,5:1\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: ! ==> Fatal error occurred, no output PDF file produced!\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "pytex.pytex :: ERROR :: Transcript written on texput.log.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Wrote 230224_Ds4_TROPHARDY Eline.tex\n" ] } ], "source": [ "tpl = pytex.texenv.from_string(score_template)\n", "\n", "for e,sc in datas['eleves'].items():\n", " reportfilename = f\"{date:%y%m%d}_{assessment}_{e}.tex\"\n", " with open(output_path / reportfilename, \"w\") as f:\n", " f.write(tpl.render(sc=sc, e=e,**datas))\n", " print(f\"Wrote {reportfilename}\")\n", " pytex.pdflatex(reportfilename)" ] }, { "cell_type": "markdown", "id": "dfaf5d3d", "metadata": { "papermill": { "duration": 0.201831, "end_time": "2023-02-28T14:59:34.573238", "exception": false, "start_time": "2023-02-28T14:59:34.371407", "status": "completed" }, "tags": [] }, "source": [ "## Envoie des bilans par mail" ] }, { "cell_type": "code", "execution_count": 19, "id": "76384db8", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:34.890210Z", "iopub.status.busy": "2023-02-28T14:59:34.889738Z", "iopub.status.idle": "2023-02-28T14:59:34.891357Z", "shell.execute_reply": "2023-02-28T14:59:34.891750Z" }, "papermill": { "duration": 0.160246, "end_time": "2023-02-28T14:59:34.891858", "exception": false, "start_time": "2023-02-28T14:59:34.731612", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Bian du devoir Ds4\n", "Bonsoir,\n", "En pièce jointe, vous trouverez un document détaillant la note du devoir.\n", "B.Bertrand\n", "\n" ] } ], "source": [ "mailfrom = \"benjamin.bertrand@ac-lyon.fr\"\n", "subject = f\"Bian du devoir {assessment}\"\n", "message = \"\"\"Bonsoir,\n", "En pièce jointe, vous trouverez un document détaillant la note du devoir.\n", "B.Bertrand\n", "\"\"\"\n", "print(subject)\n", "print(message)" ] }, { "cell_type": "code", "execution_count": 20, "id": "71eb9a2b", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:35.194933Z", "iopub.status.busy": "2023-02-28T14:59:35.194593Z", "iopub.status.idle": "2023-02-28T14:59:35.205696Z", "shell.execute_reply": "2023-02-28T14:59:35.205383Z" }, "papermill": { "duration": 0.163028, "end_time": "2023-02-28T14:59:35.205767", "exception": false, "start_time": "2023-02-28T14:59:35.042739", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "import smtplib\n", "import os\n", "import sys\n", "from email.message import EmailMessage\n", "import mimetypes\n", "import time\n", "import random" ] }, { "cell_type": "code", "execution_count": 21, "id": "f2834e6b", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:35.506270Z", "iopub.status.busy": "2023-02-28T14:59:35.505926Z", "iopub.status.idle": "2023-02-28T14:59:35.507126Z", "shell.execute_reply": "2023-02-28T14:59:35.507421Z" }, "papermill": { "duration": 0.154338, "end_time": "2023-02-28T14:59:35.507501", "exception": false, "start_time": "2023-02-28T14:59:35.353163", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "def build_msg(subj, to_addr, from_addr, body, att):\n", " msg = EmailMessage()\n", " msg[\"Subject\"] = subj\n", " msg[\"To\"] = to_addr\n", " #msg[\"To\"] = \"lafrite26@gmail.com\"\n", " msg[\"From\"] = from_addr\n", " msg.set_content(body)\n", "\n", " if att != []:\n", " ctype, encoding = mimetypes.guess_type(att)\n", " if ctype is None or encoding is not None:\n", " ctype = 'application/octet-stream'\n", " maintype, subtype = ctype.split('/', 1)\n", " with open(att, \"rb\") as f:\n", " msg.add_attachment(f.read(),\n", " maintype=maintype,\n", " subtype=subtype,\n", " filename=att.name)\n", " return msg\n" ] }, { "cell_type": "code", "execution_count": 22, "id": "30311066", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:35.807898Z", "iopub.status.busy": "2023-02-28T14:59:35.807559Z", "iopub.status.idle": "2023-02-28T14:59:35.808878Z", "shell.execute_reply": "2023-02-28T14:59:35.809146Z" }, "papermill": { "duration": 0.152521, "end_time": "2023-02-28T14:59:35.809232", "exception": false, "start_time": "2023-02-28T14:59:35.656711", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "send = 0\n", "fake = 1" ] }, { "cell_type": "code", "execution_count": 23, "id": "d31598c3", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:36.114803Z", "iopub.status.busy": "2023-02-28T14:59:36.114464Z", "iopub.status.idle": "2023-02-28T14:59:36.115779Z", "shell.execute_reply": "2023-02-28T14:59:36.116059Z" }, "papermill": { "duration": 0.157249, "end_time": "2023-02-28T14:59:36.116137", "exception": false, "start_time": "2023-02-28T14:59:35.958888", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "if send:\n", " if fake:\n", " server = smtplib.SMTP(\"localhost\", 8025)\n", " server.ehlo()\n", " else:\n", " server = smtplib.SMTP(\"smtps.ac-lyon.fr\", 587)\n", " server.ehlo()\n", " server.starttls()\n", " server.ehlo()\n", " server.login(\"bbertrand\", os.popen(\"pass Prof/Lyon/bbertrand\").read()[:-1]) " ] }, { "cell_type": "code", "execution_count": 24, "id": "ca5690d7", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:36.419607Z", "iopub.status.busy": "2023-02-28T14:59:36.419258Z", "iopub.status.idle": "2023-02-28T14:59:36.422277Z", "shell.execute_reply": "2023-02-28T14:59:36.421939Z" }, "papermill": { "duration": 0.158371, "end_time": "2023-02-28T14:59:36.422345", "exception": false, "start_time": "2023-02-28T14:59:36.263974", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "try:\n", " eleves_data = pd.read_csv(f\"../../{tribe}.csv\")\n", "except FileNotFoundError:\n", " try:\n", " eleves_data = pd.read_csv(f\"../{tribe}.csv\")\n", " except FileNotFoundError:\n", " eleves_data = pd.read_csv(f\"{tribe}.csv\")\n", "eleves_data.fillna(\"\", inplace=True)\n", "#eleves_data" ] }, { "cell_type": "code", "execution_count": 25, "id": "b676f878", "metadata": { "execution": { "iopub.execute_input": "2023-02-28T14:59:36.721559Z", "iopub.status.busy": "2023-02-28T14:59:36.721203Z", "iopub.status.idle": "2023-02-28T14:59:36.726562Z", "shell.execute_reply": "2023-02-28T14:59:36.726842Z" }, "papermill": { "duration": 0.156141, "end_time": "2023-02-28T14:59:36.726924", "exception": false, "start_time": "2023-02-28T14:59:36.570783", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Pas de rapport pour ACHOUR Ilyes\n", "Pas de rapport pour BELARBI Islem\n", "Pas de rapport pour BEN ELALLID Hajar\n", "Pas de rapport pour BISWAS Lina\n", "Pas de rapport pour BOULAABA Rayan\n", "Pas de rapport pour BREZUN Ines\n", "Pas de rapport pour BUGNON Enzo\n", "Pas de rapport pour CALLEWAERT Idaline\n", "Pas de rapport pour CATTIN Clément\n", "Pas de rapport pour CHRISTMANN Nathan\n", "Pas de rapport pour DECOSTER Clément\n", "Pas de rapport pour DEHIMAT Launy\n", "Pas de rapport pour DUPONT Jessica\n", "Pas de rapport pour GASAN Jéssica\n", "Pas de rapport pour GEORGET Raphaël\n", "Pas de rapport pour HABBAZ Hajar\n", "Pas de rapport pour JACQUEMIER Samuel\n", "Pas de rapport pour JACQUIER Juliette\n", "Pas de rapport pour JOVIC Atanase\n", "Pas de rapport pour KASSI Cheïma\n", "Pas de rapport pour KICHENASSAMY Sanjay\n", "Pas de rapport pour LE VEUZIT Adrien\n", "Pas de rapport pour LETIF Ilef\n", "Pas de rapport pour MANJALI Hiba\n", "Pas de rapport pour MUTTONI Lou\n", "Pas de rapport pour NEIVA Hugo\n", "Pas de rapport pour OLLIET Gioia\n", "Pas de rapport pour PERNOT Gabin\n", "Pas de rapport pour RIZZI Elisa\n", "Pas de rapport pour ROSTANT Emma\n", "Pas de rapport pour SIBABA Moaad\n", "Pas de rapport pour SOUJOL Damien\n", "Pas de rapport pour THORAL Fanny\n", "Pas de rapport pour TOURRETTE Elise\n", "Pas de rapport pour TROPHARDY Eline\n" ] } ], "source": [ "for e in eleves_data.iterrows():\n", " reportfilename = Path(f\"{date:%y%m%d}_{assessment}_{e[1]['Nom']}.pdf\")\n", " try:\n", " assert reportfilename.exists()\n", " except:\n", " print(f\"Pas de rapport pour {e[1]['Nom']}\")\n", " else:\n", " if e[1][\"mail\"] != \"\":\n", " if send:\n", " msg = build_msg(subject, e[1][\"mail\"], mailfrom, message, reportfilename)\n", " server.send_message(msg)\n", " print(f\"\\tBilan envoyé à {e[1]['Nom']}\")\n", " else:\n", " print(f\"Pas de mail pour {e[1]['Nom']}\")\n", " " ] }, { "cell_type": "code", "execution_count": null, "id": "78e914c1", "metadata": { "papermill": { "duration": 0.150776, "end_time": "2023-02-28T14:59:37.025855", "exception": false, "start_time": "2023-02-28T14:59:36.875079", "status": "completed" }, "tags": [] }, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "24ff9733", "metadata": { "papermill": { "duration": 0.156133, "end_time": "2023-02-28T14:59:37.344154", "exception": false, "start_time": "2023-02-28T14:59:37.188021", "status": "completed" }, "tags": [] }, "outputs": [], "source": [] } ], "metadata": { "celltoolbar": "Diaporama", "extensions": { "jupyter_dashboards": { "activeView": "grid_default", "version": 1, "views": { "grid_default": { "cellMargin": 10, "defaultCellHeight": 20, "maxColumns": 12, "name": "grid", "type": "grid" }, "report_default": { "name": "report", "type": "report" } } } }, "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.9" }, "papermill": { "duration": 12.724282, "end_time": "2023-02-28T14:59:37.804177", "environment_variables": {}, "exception": null, "input_path": "templates/tpl_evaluation.ipynb", "output_path": "2gt1/230224_DS4/Ds4.ipynb", "parameters": { "assessment": "Ds4", "csv_file": "/home/lafrite/Cours/2022-2023/Notes/2gt1/230224_DS4.csv", "date": "24/02/23", "tribe": "2gt1" }, "start_time": "2023-02-28T14:59:25.079895", "version": "1.2.1" } }, "nbformat": 4, "nbformat_minor": 5 }