Docfile commited on
Commit
662cf94
·
verified ·
1 Parent(s): bbe9349

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +396 -0
app.py ADDED
@@ -0,0 +1,396 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from flask import Flask, render_template, request, send_file
2
+ import os
3
+ import convertapi
4
+ from docx import Document
5
+ from docx.shared import Pt, Cm, RGBColor
6
+ from docx.enum.text import WD_ALIGN_PARAGRAPH
7
+ from docx.enum.table import WD_TABLE_ALIGNMENT
8
+ from docx.oxml.ns import nsdecls
9
+ from docx.oxml import parse_xml
10
+
11
+ # Configuration des identifiants ConvertAPI
12
+ convertapi.api_credentials = 'secret_8wCI6pgOP9AxLVJG'
13
+
14
+ # --- Classe de génération de document ---
15
+ class EvaluationGymnique:
16
+ def __init__(self):
17
+ self.document = Document()
18
+ self.document.sections[0].page_height = Cm(29.7)
19
+ self.document.sections[0].page_width = Cm(21)
20
+ self.document.sections[0].left_margin = Cm(1.5)
21
+ self.document.sections[0].right_margin = Cm(1.5)
22
+ self.document.sections[0].top_margin = Cm(1)
23
+ self.document.sections[0].bottom_margin = Cm(1)
24
+
25
+ # Informations d'en-tête par défaut
26
+ self.centre_examen = "Centre d'examen"
27
+ self.type_examen = "Bac Général"
28
+ self.serie = "Série"
29
+ self.etablissement = "Établissement"
30
+ self.session = "2025"
31
+ self.nom_candidat = "Candidat"
32
+
33
+ # Liste vide pour les éléments techniques
34
+ self.elements_techniques = []
35
+ self.appreciations = ["M", "PM", "NM", "NR"]
36
+
37
+ def ajouter_entete_colore(self):
38
+ header_paragraph = self.document.add_paragraph()
39
+ header_paragraph.alignment = WD_ALIGN_PARAGRAPH.CENTER
40
+ header_paragraph.space_after = Pt(6)
41
+ header_run = header_paragraph.add_run("ÉVALUATION GYMNASTIQUE")
42
+ header_run.bold = True
43
+ header_run.font.size = Pt(14)
44
+ header_run.font.color.rgb = RGBColor(0, 32, 96)
45
+
46
+ header_table = self.document.add_table(rows=3, cols=2)
47
+ header_table.style = 'Table Grid'
48
+ header_table.autofit = False
49
+
50
+ for row in header_table.rows:
51
+ row.height = Cm(0.8)
52
+ for row in header_table.rows:
53
+ for cell in row.cells:
54
+ shading_elm = parse_xml(f'<w:shd {nsdecls("w")} w:fill="D9E2F3"/>')
55
+ cell._tc.get_or_add_tcPr().append(shading_elm)
56
+
57
+ # Première ligne
58
+ cell = header_table.cell(0, 0)
59
+ paragraph = cell.paragraphs[0]
60
+ run = paragraph.add_run("Centre d'examen: ")
61
+ run.bold = True
62
+ run.font.size = Pt(10)
63
+ run.font.color.rgb = RGBColor(0, 32, 96)
64
+ paragraph.add_run(self.centre_examen).font.size = Pt(10)
65
+
66
+ cell = header_table.cell(0, 1)
67
+ paragraph = cell.paragraphs[0]
68
+ run = paragraph.add_run("Examen: ")
69
+ run.bold = True
70
+ run.font.size = Pt(10)
71
+ run.font.color.rgb = RGBColor(0, 32, 96)
72
+ paragraph.add_run(self.type_examen).font.size = Pt(10)
73
+
74
+ # Deuxième ligne
75
+ cell = header_table.cell(1, 0)
76
+ paragraph = cell.paragraphs[0]
77
+ run = paragraph.add_run("Série: ")
78
+ run.bold = True
79
+ run.font.size = Pt(10)
80
+ run.font.color.rgb = RGBColor(0, 32, 96)
81
+ paragraph.add_run(self.serie).font.size = Pt(10)
82
+
83
+ cell = header_table.cell(1, 1)
84
+ paragraph = cell.paragraphs[0]
85
+ run = paragraph.add_run("Établissement: ")
86
+ run.bold = True
87
+ run.font.size = Pt(10)
88
+ run.font.color.rgb = RGBColor(0, 32, 96)
89
+ paragraph.add_run(self.etablissement).font.size = Pt(10)
90
+
91
+ # Troisième ligne
92
+ cell = header_table.cell(2, 0)
93
+ paragraph = cell.paragraphs[0]
94
+ run = paragraph.add_run("Session: ")
95
+ run.bold = True
96
+ run.font.size = Pt(10)
97
+ run.font.color.rgb = RGBColor(0, 32, 96)
98
+ paragraph.add_run(self.session).font.size = Pt(10)
99
+
100
+ cell = header_table.cell(2, 1)
101
+ paragraph = cell.paragraphs[0]
102
+ run = paragraph.add_run("Candidat: ")
103
+ run.bold = True
104
+ run.font.size = Pt(10)
105
+ run.font.color.rgb = RGBColor(0, 32, 96)
106
+ paragraph.add_run(self.nom_candidat).font.size = Pt(10)
107
+
108
+ self.document.add_paragraph().space_after = Pt(4)
109
+
110
+ def creer_tableau_elements(self):
111
+ table = self.document.add_table(rows=len(self.elements_techniques) + 1, cols=5)
112
+ table.style = 'Table Grid'
113
+ table.alignment = WD_TABLE_ALIGNMENT.CENTER
114
+
115
+ # Configuration des largeurs de colonnes
116
+ for cell in table.columns[0].cells:
117
+ cell.width = Cm(8)
118
+ for cell in table.columns[1].cells:
119
+ cell.width = Cm(3)
120
+ for cell in table.columns[2].cells:
121
+ cell.width = Cm(2)
122
+ for cell in table.columns[3].cells:
123
+ cell.width = Cm(2.5)
124
+ for cell in table.columns[4].cells:
125
+ cell.width = Cm(2.5)
126
+
127
+ for row in table.rows:
128
+ row.height = Cm(1)
129
+
130
+ # En-tête du tableau
131
+ header_row = table.rows[0]
132
+ for cell in header_row.cells:
133
+ shading_elm = parse_xml(f'<w:shd {nsdecls("w")} w:fill="BDD7EE"/>')
134
+ cell._tc.get_or_add_tcPr().append(shading_elm)
135
+
136
+ headers = ["ELEMENTS TECHNIQUES", "CATEGORIES D'ELEMENTS TECHNIQUES ET PONDERATION", "", "APPRECIATIONS", "POINTS Accordés"]
137
+ for i, header in enumerate(headers):
138
+ cell = table.cell(0, i)
139
+ cell.text = header
140
+ cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
141
+ run = cell.paragraphs[0].runs[0]
142
+ run.bold = True
143
+ run.font.size = Pt(9)
144
+ run.font.color.rgb = RGBColor(0, 32, 96)
145
+ table.cell(0, 1).merge(table.cell(0, 2))
146
+
147
+ # Ajout des éléments techniques
148
+ for i, element in enumerate(self.elements_techniques, 1):
149
+ element_cell = table.cell(i, 0)
150
+ element_cell.text = element["nom"]
151
+ element_cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.LEFT
152
+ run = element_cell.paragraphs[0].runs[0]
153
+ run.bold = True
154
+ run.font.size = Pt(9)
155
+
156
+ categorie_cell = table.cell(i, 1)
157
+ categorie_cell.text = element["categorie"]
158
+ categorie_cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
159
+ run = categorie_cell.paragraphs[0].runs[0]
160
+ run.bold = True
161
+ run.font.size = Pt(9)
162
+ run.italic = True
163
+
164
+ points_cell = table.cell(i, 2)
165
+ points_cell.text = str(element["points"])
166
+ points_cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
167
+ run = points_cell.paragraphs[0].runs[0]
168
+ run.bold = True
169
+ run.font.size = Pt(9)
170
+ run.italic = True
171
+
172
+ def ajouter_note_jury(self):
173
+ para = self.document.add_paragraph()
174
+ para.space_before = Pt(4)
175
+ para.space_after = Pt(4)
176
+ run = para.add_run("NB1 : Zone réservée aux membres du jury ! Le jury cochera le point correspondant au niveau de réalisation de l'élément gymnique par le candidat.")
177
+ run.bold = True
178
+ run.font.color.rgb = RGBColor(255, 0, 0)
179
+ run.font.size = Pt(9)
180
+
181
+ def creer_tableau_recapitulatif(self):
182
+ note_table = self.document.add_table(rows=3, cols=13)
183
+ note_table.style = 'Table Grid'
184
+ note_table.alignment = WD_TABLE_ALIGNMENT.CENTER
185
+
186
+ for row in note_table.rows:
187
+ row.height = Cm(0.6)
188
+ for cell in note_table.rows[0].cells:
189
+ shading_elm = parse_xml(f'<w:shd {nsdecls("w")} w:fill="BDD7EE"/>')
190
+ cell._tc.get_or_add_tcPr().append(shading_elm)
191
+
192
+ for col, (type_lettre, points) in enumerate([("A", "1pt"), ("B", "1,5pt"), ("C", "2pts"), ("D", "2,5pts"), ("E", "3pts")]):
193
+ idx = col * 2
194
+ if idx + 1 < len(note_table.columns):
195
+ cell = note_table.cell(0, idx)
196
+ cell.merge(note_table.cell(0, idx + 1))
197
+ cell.text = f"Type {type_lettre}\n{points}"
198
+ cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
199
+ for run in cell.paragraphs[0].runs:
200
+ run.bold = True
201
+ run.font.size = Pt(9)
202
+ run.font.color.rgb = RGBColor(0, 32, 96)
203
+
204
+ for col, (titre, points) in enumerate([("ROV", "2pts"), ("Projet", "2pts"), ("Réalisation", "16pts")], 10):
205
+ if col < len(note_table.columns):
206
+ cell = note_table.cell(0, col)
207
+ cell.text = f"{titre}\n{points}"
208
+ cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
209
+ for run in cell.paragraphs[0].runs:
210
+ run.bold = True
211
+ run.font.size = Pt(9)
212
+ run.font.color.rgb = RGBColor(0, 32, 96)
213
+
214
+ for col in range(5):
215
+ idx = col * 2
216
+ if idx + 1 < len(note_table.columns):
217
+ neg_cell = note_table.cell(1, idx)
218
+ neg_cell.text = "NEG"
219
+ neg_cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
220
+ for run in neg_cell.paragraphs[0].runs:
221
+ run.italic = True
222
+ run.font.size = Pt(9)
223
+
224
+ note_cell = note_table.cell(1, idx + 1)
225
+ note_cell.text = "Note"
226
+ note_cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
227
+ for run in note_cell.paragraphs[0].runs:
228
+ run.italic = True
229
+ run.font.size = Pt(9)
230
+
231
+ for col in range(10, 13):
232
+ if col < len(note_table.columns):
233
+ cell = note_table.cell(1, col)
234
+ cell.text = "Note"
235
+ cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
236
+ for run in cell.paragraphs[0].runs:
237
+ run.italic = True
238
+ run.font.size = Pt(9)
239
+
240
+ for col, type_lettre in enumerate(["A", "B", "C", "D", "E"]):
241
+ idx = col * 2
242
+ if idx < len(note_table.columns):
243
+ neg_cell = note_table.cell(2, idx)
244
+ neg_cell.text = ""
245
+ neg_cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
246
+
247
+ def ajouter_note_candidat_avec_cadre(self):
248
+ note_table = self.document.add_table(rows=1, cols=1)
249
+ note_table.style = 'Table Grid'
250
+ note_table.alignment = WD_TABLE_ALIGNMENT.CENTER
251
+
252
+ cell = note_table.cell(0, 0)
253
+ shading_elm = parse_xml(f'<w:shd {nsdecls("w")} w:fill="E2EFDA"/>')
254
+ cell._tc.get_or_add_tcPr().append(shading_elm)
255
+
256
+ p = cell.paragraphs[0]
257
+ run = p.add_run("NB2: Après le choix des catégories d'éléments gymniques par le candidat, ce dernier remplira la colonne de pointage selon l'orientation suivante: A (0.25; 0.5; 0.75; 1) B (0.25; 0.5; 0.75; 1; 1.25; 1.5) C (0.5; 0.75; 1; 1.25; 1.5; 2) D (0.75; 1; 1.25; 1.5; 2; 2.5) et E (0.75; 1; 1.5; 2; 2.5; 3) également, le candidat devra fournir 2 copies de son projet sur une page! (appréciations: NR, NM, PM, M).")
258
+ run.italic = True
259
+ run.font.size = Pt(8)
260
+
261
+ def ajouter_zone_note(self):
262
+ zone_note = self.document.add_table(rows=1, cols=2)
263
+ zone_note.style = 'Table Grid'
264
+ zone_note.alignment = WD_TABLE_ALIGNMENT.RIGHT
265
+
266
+ # Définir une largeur fixe pour les deux cellules
267
+ cell_width = Cm(2)
268
+
269
+ cell_libelle = zone_note.cell(0, 0)
270
+ cell_libelle.width = cell_width
271
+ cell_libelle.text = "Note finale"
272
+ cell_libelle.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.RIGHT
273
+ run = cell_libelle.paragraphs[0].runs[0]
274
+ run.bold = True
275
+ run.font.size = Pt(12)
276
+ run.font.color.rgb = RGBColor(0, 32, 96)
277
+
278
+ cell_saisie = zone_note.cell(0, 1)
279
+ cell_saisie.width = cell_width
280
+ zone_note.rows[0].height = cell_width
281
+ shading_elm = parse_xml(f'<w:shd {nsdecls("w")} w:fill="F2F2F2"/>')
282
+ cell_saisie._tc.get_or_add_tcPr().append(shading_elm)
283
+ cell_saisie.text = "/20"
284
+ cell_saisie.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
285
+ run = cell_saisie.paragraphs[0].runs[0]
286
+ run.bold = True
287
+ run.font.size = Pt(12)
288
+
289
+ # Ajouter plus d'espace avant la liste des correcteurs
290
+ self.document.add_paragraph().space_after = Pt(12)
291
+ self.document.add_paragraph().space_after = Pt(12)
292
+
293
+ def ajouter_lignes_correcteurs(self):
294
+ para_intro = self.document.add_paragraph()
295
+ para_intro.space_before = Pt(6)
296
+
297
+ for role in ["Projet", "principal", "ROV"]:
298
+ para = self.document.add_paragraph()
299
+ para.space_before = Pt(4)
300
+ para.space_after = Pt(4)
301
+ run = para.add_run(f"Correcteur {role} : ")
302
+ run.bold = True
303
+ para.add_run(".................................................................")
304
+
305
+ # Méthodes de modification des données
306
+ def modifier_centre_examen(self, nom):
307
+ self.centre_examen = nom
308
+
309
+ def modifier_type_examen(self, type_examen):
310
+ self.type_examen = type_examen
311
+
312
+ def modifier_serie(self, serie):
313
+ self.serie = serie
314
+
315
+ def modifier_etablissement(self, nom):
316
+ self.etablissement = nom
317
+
318
+ def modifier_session(self, annee):
319
+ self.session = annee
320
+
321
+ def modifier_candidat(self, nom):
322
+ self.nom_candidat = nom
323
+
324
+ def ajouter_element(self, nom, categorie, points):
325
+ self.elements_techniques.append({
326
+ "nom": nom,
327
+ "categorie": categorie,
328
+ "points": float(points)
329
+ })
330
+
331
+ def generer_document(self, nom_fichier="evaluation_gymnastique.docx"):
332
+ self.ajouter_entete_colore()
333
+ self.creer_tableau_elements()
334
+ self.ajouter_note_jury()
335
+ self.creer_tableau_recapitulatif()
336
+ self.ajouter_lignes_correcteurs()
337
+ self.ajouter_zone_note()
338
+ self.ajouter_note_candidat_avec_cadre()
339
+ self.document.save(nom_fichier)
340
+ return nom_fichier
341
+
342
+ # --- Application Flask ---
343
+ app = Flask(__name__)
344
+
345
+ @app.route("/", methods=["GET", "POST"])
346
+ def index():
347
+ if request.method == "POST":
348
+ # Récupération des informations depuis le formulaire
349
+ centre_examen = request.form.get("centre_examen", "Centre d'examen")
350
+ type_examen = request.form.get("type_examen", "Bac Général")
351
+ serie = request.form.get("serie", "Série")
352
+ etablissement = request.form.get("etablissement", "Établissement")
353
+ session_value = request.form.get("session", "2025")
354
+ nom_candidat = request.form.get("nom_candidat", "Candidat")
355
+
356
+ # Création et configuration du document
357
+ evaluation = EvaluationGymnique()
358
+ evaluation.modifier_centre_examen(centre_examen)
359
+ evaluation.modifier_type_examen(type_examen)
360
+ evaluation.modifier_serie(serie)
361
+ evaluation.modifier_etablissement(etablissement)
362
+ evaluation.modifier_session(session_value)
363
+ evaluation.modifier_candidat(nom_candidat)
364
+
365
+ # Récupération des éléments techniques ajoutés dynamiquement
366
+ element_names = request.form.getlist("new_element_name")
367
+ element_categories = request.form.getlist("new_element_categorie")
368
+ element_points = request.form.getlist("new_element_points")
369
+ for name, cat, pts in zip(element_names, element_categories, element_points):
370
+ if name and cat and pts:
371
+ evaluation.ajouter_element(name, cat, pts)
372
+
373
+ # Génération du document DOCX
374
+ filename = "evaluation_gymnastique.docx"
375
+ evaluation.generer_document(filename)
376
+
377
+ # Vérification du format de sortie demandé
378
+ output_format = request.form.get("format", "docx")
379
+ if output_format == "pdf":
380
+ # Conversion en PDF via ConvertAPI
381
+ result = convertapi.convert('pdf', {
382
+ 'File': filename,
383
+ 'FileName': 'evaluation_gymnastique',
384
+ 'ConvertMetadata': 'false',
385
+ 'ConvertHeadings': 'false'
386
+ }, from_format='doc')
387
+ pdf_filename = "evaluation_gymnastique.pdf"
388
+ result.save_files(pdf_filename)
389
+ return send_file(pdf_filename, as_attachment=True)
390
+ else:
391
+ return send_file(filename, as_attachment=True)
392
+
393
+ return render_template("index.html")
394
+
395
+ if __name__ == "__main__":
396
+ app.run(debug=True)