From 122572d1b3f0688db4b4ec96cb66819d3bb60e46 Mon Sep 17 00:00:00 2001 From: Cherif Date: Tue, 4 Nov 2025 12:22:45 +0100 Subject: [PATCH] 04/11/2025 - 12h Signed-off-by: Cherif --- .idea/workspace.xml | 28 +- Dashbord_queries/BPF.py | 4 +- GlobalVariable.py | 13 +- Inscription_mgt.py | 8 +- Job_Cron.py | 326 +- Job_Cron_Common.py | 18 +- Log/log_file.log | 12316 +++++++++++++++++++++++++++++++ Session_Formation.py | 437 +- Session_Formation_Sequence.py | 3 + base_class_calcul_note.py | 25 +- class_mgt.py | 10 +- competence.py | 121 +- domaine_formation_mgt.py | 10 +- email_mgt.py | 20 +- email_queu/email_queu_mgt.py | 2 +- emargement.py | 2 +- ent_alert_messages.py | 350 + formulaire_mgt.py | 27 + main.py | 133 +- model_planning_sequence_mgt.py | 2 +- survey_mgt.py | 7 +- unite_enseignement_mgt.py | 29 + 22 files changed, 13800 insertions(+), 91 deletions(-) create mode 100644 ent_alert_messages.py diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 17491c5..8cc70ed 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,15 +4,29 @@ - @@ -522,6 +535,7 @@ - \ No newline at end of file diff --git a/Dashbord_queries/BPF.py b/Dashbord_queries/BPF.py index 1311637..2e2a91d 100644 --- a/Dashbord_queries/BPF.py +++ b/Dashbord_queries/BPF.py @@ -1239,7 +1239,7 @@ def Get_Qery_Generate_BPF_From_partner_invoice_header(diction): - print(" ### RetObject BPF = ", RetObject) + #print(" ### RetObject BPF = ", RetObject) RetObject = mycommon.JSONEncoder().encode(RetObject) return True, RetObject @@ -2462,7 +2462,7 @@ def Prepare_and_Print_BPF_PDF(diction): RetObject['filt_periode_end_date'] = str(filt_periode_end_date) RetObject['bpf_f1_type_apprenant'] = bpf_f1_type_apprenant - print(" ### RetObject BPF = ", RetObject) + #print(" ### RetObject BPF = ", RetObject) diff --git a/GlobalVariable.py b/GlobalVariable.py index b18b995..42a8926 100644 --- a/GlobalVariable.py +++ b/GlobalVariable.py @@ -712,7 +712,9 @@ TRAINING_LOCATION_TYPE = ['intra', 'extra', 'autre', ''] """ On definit les entrée scolaires autorisées """ -TRAINING_ENTREE_SCOLAIRE = ['2024', '2025', '2026','2027', '2028', '2029', ''] +TRAINING_ENTREE_SCOLAIRE = ['2024', '2025', '2026','2027', '2028', '2029', + '2024/2025','2025/2026','2026/2027', '2027/2028', + '2028/2029',''] """ @@ -980,3 +982,12 @@ Les type de ressources humaines sont : """ TYPE_RH = ['', '1'] + +""" +Priorité des messages d'alerte sur l'ENT +0 ==> 'urgent' +1 ==> 'important', +2 ==> 'info' + +""" +ENT_MESSAGE_PRIORITE = ['0', '1', '2'] \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 2deb682..09ecd90 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -1562,7 +1562,7 @@ def GetAllClassStagiaire(diction): if val not in diction: mycommon.myprint( str(inspect.stack()[0][3]) + " - : La valeur '" + val + "' n'est pas presente dans la liste des arguments ") - return False, "Impossible de récupérer la liste des stagiaires, Toutes les informations necessaires n'ont pas été fournies" + return False, "Toutes les informations necessaires n'ont pas été fournies" # Recuperation du recid du partner mydata = {} @@ -5589,7 +5589,7 @@ def GetListEvaluation_Session(diction): RetObject.append(mycommon.JSONEncoder().encode(user)) - print(" ### RetObject = ", RetObject) + #print(" ### RetObject = ", RetObject) return True, RetObject except Exception as e: @@ -13202,7 +13202,7 @@ def Get_Accepted_Insription_From_Session_id_Reduice_Fields(diction): if val not in diction: mycommon.myprint( str(inspect.stack()[0][3]) + " - : La valeur '" + val + "' n'est pas presente dans la liste des arguments ") - return False, "Impossible de récupérer la liste des stagiaires, Toutes les informations necessaires n'ont pas été fournies" + return False, "Toutes les informations necessaires n'ont pas été fournies" # Recuperation du recid du partner mydata = {} @@ -13319,7 +13319,7 @@ def Get_Insription_From_Session_id_Reduice_Fields_With_Filter(diction): if val not in diction: mycommon.myprint( str(inspect.stack()[0][3]) + " - : La valeur '" + val + "' n'est pas presente dans la liste des arguments ") - return False, "Impossible de récupérer la liste des stagiaires, Toutes les informations necessaires n'ont pas été fournies" + return False, "Toutes les informations necessaires n'ont pas été fournies" # Recuperation du recid du partner mydata = {} diff --git a/Job_Cron.py b/Job_Cron.py index 9cc42e9..e63937e 100644 --- a/Job_Cron.py +++ b/Job_Cron.py @@ -1364,6 +1364,286 @@ def Cron_Daily_Automatic_Qualiopi_Documents(): mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) return False, str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno) +""" +Cette fonction permet de lancer le traitement automatique pour un partenaire donné (partner_owner_recid) +""" + + +def Cron_Daily_Automatic_Qualiopi_Documents_For_Given_Partner(diction): + try: + print(" Cron : In function = Cron_Daily_Document_Sending") + + """ + Verification des input acceptés + """ + field_list = ['partner_owner_recid', 'code_session'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['partner_owner_recid',] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - La valeur '" + val + "' n'est pas presente dans la liste des arguments ") + return False, " Les informations fournies sont incorrectes" + + todays_date = str(date.today().strftime("%d/%m/%Y")) + todays_date_ISODATE = datetime.strptime(str(todays_date), '%d/%m/%Y') + + qry_list_session_concerned = {} + qry_list_session_concerned['valide'] = "1" + qry_list_session_concerned['automatic_traitement.actif'] = "1" + qry_list_session_concerned['automatic_traitement.valide'] = "1" + + qry_list_session_concerned['partner_owner_recid'] = str(diction['partner_owner_recid']) + + if( "code_session" in diction.keys() and diction['code_session']): + qry_list_session_concerned['code_session'] = str(diction['code_session']) + + # qry_list_session_concerned['automatic_traitement.statut'] = {"$ne": "2"} + + print(" ### qry_list_session_concerned = ", qry_list_session_concerned) + + for my_session in MYSY_GV.dbname['session_formation'].find(qry_list_session_concerned): + print(" # Code Session = ", my_session['code_session']) + print(" # Date Start Session = ", my_session['date_debut']) + print(" # Date End Session = ", my_session['date_fin']) + + # print(" # automatic_traitement = ", my_session['automatic_traitement']) + diction_for_notification_email = {} + diction_for_notification_email['session_id'] = str(my_session['_id']) + diction_for_notification_email['tab_message'] = [] + diction_for_notification_email['global_status'] = [] + + for data_automatic_traitement in my_session['automatic_traitement']: + if (data_automatic_traitement["actif"] == "1" and data_automatic_traitement["valide"] == "1" and + data_automatic_traitement["statut"] != "2"): + + print(" # Analyse Document = ", str(data_automatic_traitement['nom_document']), + " Pour la session_code = ", str(my_session['code_session']), ) + print(" # Target Date = ", data_automatic_traitement['action_target_date']) + print(" # Nb jour action = ", data_automatic_traitement['nb_jour_action']) + print(" # Date du jour = ", str(todays_date)) + + local_status, nb_jour_action_Int = mycommon.IsInt( + str(data_automatic_traitement['nb_jour_action']).strip()) + if (local_status is False): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " CRON WARNING : nb_jour_action_Int n'est pas une valeur entière. Session Formation = ", + str(my_session['_id'])) + # On log une erreur, et on continue le traitement dans la boucle. + continue + + local_session_start_date = datetime.strptime(str(my_session['date_debut']).strip(), '%d/%m/%Y') + local_session_end_date = datetime.strptime(str(my_session['date_fin']).strip(), '%d/%m/%Y') + local_session_target_date_added_nb_jour_action = "" + local_session_target_date_added_nb_jour_action_formated = "" + + if (data_automatic_traitement['action_target_date'] == "start_session"): + local_session_target_date_added_nb_jour_action = local_session_start_date + timedelta( + days=nb_jour_action_Int) + local_session_target_date_added_nb_jour_action_formated = str( + local_session_target_date_added_nb_jour_action.strftime("%d/%m/%Y")) + + elif (data_automatic_traitement['action_target_date'] == "end_session"): + local_session_target_date_added_nb_jour_action = local_session_end_date + timedelta( + days=nb_jour_action_Int) + local_session_target_date_added_nb_jour_action_formated = str( + local_session_target_date_added_nb_jour_action.strftime("%d/%m/%Y")) + + elif (data_automatic_traitement['action_target_date'] == "every_session_sequence_day"): + """ + Il faut aller voir si on a une sequence en date d'aujoud'hui pour cette session. + Si oui, alors on local_session_target_date_added_nb_jour_action = date to day + """ + local_session_target_date_added_nb_jour_action = datetime.strptime(str(todays_date).strip(), + '%d/%m/%Y') + + elif (data_automatic_traitement['action_target_date'] == "preinscription"): + """ + Il faut aller voir si on a une sequence en date d'aujoud'hui pour cette session. + Si oui, alors on local_session_target_date_added_nb_jour_action = date to day + """ + local_session_target_date_added_nb_jour_action = datetime.strptime(str(todays_date).strip(), + '%d/%m/%Y') + + print(" ### CMP 1 local_session_target_date_added_nb_jour_action = ", + local_session_target_date_added_nb_jour_action) + print(" ### CMP 2 datetime.strptime(str(todays_date).strip(), '%d/%m/%Y') = ", + datetime.strptime(str(todays_date).strip(), '%d/%m/%Y')) + + if (data_automatic_traitement['action_target_date'] != "preinscription" and + data_automatic_traitement['action_target_date'] != "inscription"): + if (data_automatic_traitement['action_target_date'] == "start_session"): + print(" ### delta day (start_session) = ", + datetime.strptime(str(todays_date).strip(), '%d/%m/%Y') - local_session_start_date) + if (data_automatic_traitement['action_target_date'] == "end_session"): + print(" ### delta day (end_session) = ", + datetime.strptime(str(todays_date).strip(), '%d/%m/%Y') - local_session_end_date) + + if (local_session_target_date_added_nb_jour_action > datetime.strptime(str(todays_date).strip(), + '%d/%m/%Y')): + print(" ### SUPPPPPP : Action à faire dans le futur ") + + elif (local_session_target_date_added_nb_jour_action < datetime.strptime( + str(todays_date).strip(), '%d/%m/%Y')): + print(" ### INFFFFFF : Alert il y a un pb sur une action non realiser ") + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue." + " Session Formation = " + str( + my_session['_id']) + " Id du CRON courrier_template_type_document_id = " + str( + data_automatic_traitement['courrier_template_type_document_id'])) + + courrier_template_type_document_data = MYSY_GV.dbname[ + 'courrier_template_type_document'].find_one( + {'ref_interne': data_automatic_traitement[ + 'courrier_template_type_document_ref_interne'], + 'valide': '1', + 'locked': '0'}) + + node_notification = {} + node_notification['message'] = "Cette tâche n'a pas été exécutée. " \ + " Date Initialement prévue " + str( + local_session_target_date_added_nb_jour_action_formated) + node_notification['status'] = "Warning" + node_notification['action'] = str(courrier_template_type_document_data['ref_interne']) + diction_for_notification_email['tab_message'].append(node_notification) + diction_for_notification_email['global_status'].append("warning") + + + elif (local_session_target_date_added_nb_jour_action == datetime.strptime( + str(todays_date).strip(), '%d/%m/%Y')): + + """ + Effectuer l'action + """ + """ + Recuperer le type de document concerné + """ + courrier_template_type_document_data = MYSY_GV.dbname[ + 'courrier_template_type_document'].find_one( + {'ref_interne': data_automatic_traitement[ + 'courrier_template_type_document_ref_interne'], + 'valide': '1', + 'locked': '0'}) + + if ( + courrier_template_type_document_data and 'ref_interne' in courrier_template_type_document_data.keys()): + print(" ### Action à faire : Envoyer le document de type ", + courrier_template_type_document_data['ref_interne']) + else: + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " CRON WARNING * Cron_Daily_Document_Sending: Impossible de trouver le type de document concerné " + " Session Formation = " + str( + my_session['_id']) + " Id du CRON courrier_template_type_document_id = " + str( + data_automatic_traitement['courrier_template_type_document_id'])) + + continue + + # print(" ### avant action 1 courrier_template_type_document_data = ", courrier_template_type_document_data) + # print(" ## data_automatic_traitement = ", data_automatic_traitement) + + local_diction = {} + local_diction['session_id'] = str(my_session['_id']) + local_diction['document_ref_intern'] = str( + courrier_template_type_document_data['ref_interne']) + local_diction['partner_owner_recid'] = str(my_session['partner_owner_recid']) + local_diction['courrier_template_type_document_ref_interne'] = str( + data_automatic_traitement['courrier_template_type_document_ref_interne']) + local_diction['courrier_template_type_document_id'] = str( + data_automatic_traitement['courrier_template_type_document_id']) + + # print( " ### local_diction for Send_document_from_base_document_automatic_setup = ", local_diction) + local_status, local_retval = Send_document_from_base_document_automatic_setup(local_diction) + + node_notification = {} + node_notification['message'] = str(courrier_template_type_document_data['ref_interne']) + + local_status_tanslate = "" + if (local_status is True): + local_status_tanslate = "Ok" + else: + local_status_tanslate = "Erreur" + + node_notification['status'] = str(local_status_tanslate) + node_notification['action'] = str(courrier_template_type_document_data['ref_interne']) + diction_for_notification_email['tab_message'].append(node_notification) + diction_for_notification_email['global_status'].append(str(local_status).lower()) + + """ + Mettre à jour le document + + Important : 17/04/25 : Lorsqu'il s'agit d'une action d'emargement avec un targuet = 'every_session_sequence_day', alors + on ne desactive l'action que si la date du jous >= a la date de fin de session + + """ + if (data_automatic_traitement['action_target_date'] != "every_session_sequence_day" or + (data_automatic_traitement['action_target_date'] == "every_session_sequence_day" and + local_session_end_date <= datetime.strptime(str(todays_date).strip(), + '%d/%m/%Y'))): + + local_update = MYSY_GV.dbname['session_formation'].update_many( + {'_id': ObjectId(str(my_session['_id'])), + 'partner_owner_recid': str(my_session['partner_owner_recid']), + 'valide': '1', + 'automatic_traitement.courrier_template_type_document_id': str( + data_automatic_traitement['courrier_template_type_document_id']) + }, + {'$set': + { + 'automatic_traitement.$[xxx].actif': "-1", + 'automatic_traitement.$[xxx].statut': "2", + 'automatic_traitement.$[xxx].date_traitement_cron': str(datetime.now()), + 'automatic_traitement.$[xxx].date_update': str(datetime.now()), + 'automatic_traitement.$[xxx].update_by': "Automatic Cron", + } + }, + upsert=False, + array_filters=[ + {"xxx.courrier_template_type_document_id": str( + data_automatic_traitement['courrier_template_type_document_id'])} + ] + + ) + if (local_update.matched_count < 1): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " CRON WARNING * Cron_Daily_Document_Sending: La mise à jour du statut (actif = -1) du cron ne s'est " + " PAS bien passé : Session Formation = " + str(my_session['_id']) + + " Id du CRON courrier_template_type_document_id = " + + str(data_automatic_traitement[ + 'courrier_template_type_document_id'])) + + local_status, my_partner = mycommon.Get_Connected_User_Partner_Data_From_RecID( + str(my_session['partner_owner_recid'])) + if (local_status is not True): + return local_status, my_partner + + diction_for_notification_email['token'] = str(my_partner['token']) + + local_status, local_retval = Job_Cron_Common.Cron_Qualiopi_Automatic_Traitement_Notification( + diction_for_notification_email) + + return True, "OK" + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno) """ @@ -1474,11 +1754,13 @@ def Send_document_from_base_document_automatic_setup(diction): local_diction_doc['class_id'] = session_class_id local_diction_doc['partner_owner_recid'] = str(diction['partner_owner_recid']) + #print(" ## Cron_Get_Given_Class_List_Default_Documents_For_Given_Type_Doc local_diction_doc = ", local_diction_doc) local_document_q_position_doc_status, local_document_q_position_doc_retval = Job_Cron_Common.Cron_Get_Given_Class_List_Default_Documents_For_Given_Type_Doc( local_diction_doc) if (local_document_q_position_doc_status): document_q_position = local_document_q_position_doc_retval + #print(" ## local_document_q_position_doc_retval = ", local_document_q_position_doc_retval) if (document_q_position == ""): local_default_form_count = MYSY_GV.dbname['formulaire'].count_documents( @@ -1510,6 +1792,7 @@ def Send_document_from_base_document_automatic_setup(diction): init_diction['sending_date'] = "" init_diction['related_collection'] = "inscription" + #print(" ### BEFORE Cron_Init_Survey_Tab_For_Inscrit_Not_Init init_diction = ", init_diction) local_status_init, local_retval_init = Job_Cron_Common.Cron_Init_Survey_Tab_For_Inscrit_Not_Init(init_diction) if( local_status_init is False ): @@ -1594,28 +1877,30 @@ def Send_document_from_base_document_automatic_setup(diction): """ Evaluation du formateur mis que la session de formation, si formateur """ - """ - Si il ya une evaluation formateur par defaut sur la formation, alors aller la chercher - """ - document_formateur_eval = "" - local_diction_doc = {} - local_diction_doc['document_type'] = "EVAL_FORMATION_FORMATEUR" - local_diction_doc['class_id'] = session_class_id - local_diction_doc['partner_owner_recid'] = str(diction['partner_owner_recid']) + # 1 - Verifier s'il y a un formateur valide sur la session + session_data = MYSY_GV.dbname['session_formation'].find_one({'_id': ObjectId(str(diction['session_id']))}, + {'_id': 1, 'formateur_id': 1}) - local_document_formateur_eval_status, local_document_formateur_eval_retval = Job_Cron_Common.Cron_Get_Given_Class_List_Default_Documents_For_Given_Type_Doc( - local_diction_doc) - if (local_document_formateur_eval_status): - document_formateur_eval = local_document_formateur_eval_retval + if (session_data and "formateur_id" in session_data.keys() and session_data['formateur_id']): + """ + Si il ya une evaluation formateur par defaut sur la formation, alors aller la chercher + """ + document_formateur_eval = "" + local_diction_doc = {} + local_diction_doc['document_type'] = "EVAL_FORMATION_FORMATEUR" + local_diction_doc['class_id'] = session_class_id + local_diction_doc['partner_owner_recid'] = str(diction['partner_owner_recid']) - if (document_formateur_eval == ""): - print(" ### DEBUT Initialiser le questionnaire d'évaluation du formateur mis sur la session ") + local_document_formateur_eval_status, local_document_formateur_eval_retval = Job_Cron_Common.Cron_Get_Given_Class_List_Default_Documents_For_Given_Type_Doc( + local_diction_doc) + if (local_document_formateur_eval_status): + document_formateur_eval = local_document_formateur_eval_retval - #1 - Verifier s'il y a un formateur valide sur la session - session_data = MYSY_GV.dbname['session_formation'].find_one({'_id':ObjectId(str(diction['session_id']))}, {'_id':1, 'formateur_id':1}) + print(" ### Eval formateur document_formateur_eval = ", document_formateur_eval) + + if (document_formateur_eval == ""): + print(" ### DEBUT Initialiser le questionnaire d'évaluation du formateur mis sur la session ") - if( session_data and "formateur_id" in session_data.keys() and session_data['formateur_id']): - # Aller chercher le formulaire par défaut pour l'evaluation des enseignants local_default_form_count = MYSY_GV.dbname['formulaire'].count_documents( {'type': 'human_eval', 'valide': '1', @@ -1650,6 +1935,7 @@ def Send_document_from_base_document_automatic_setup(diction): init_diction['related_collection'] = "ressource_humaine" init_diction['related_collection_id'] = str(session_data['formateur_id']) + print(' I?IIIII init_diction = ', init_diction) local_status_init, local_retval_init = Job_Cron_Common.Cron_Init_Survey_Tab_For_Inscrit_Not_Init( init_diction) @@ -1658,7 +1944,6 @@ def Send_document_from_base_document_automatic_setup(diction): return local_status_init, local_retval_init print(" ### DEBUT Envoyer le questionnaire de Evaluation du formateur ") - print(" envoi eval formateur init_diction = ", init_diction) local_status_send, local_retval_send = Job_Cron_Common.Cron_Send_Survey_TabIds(init_diction) if (local_status_send is False): @@ -1673,7 +1958,7 @@ def Send_document_from_base_document_automatic_setup(diction): """ document_cold_eval = "" local_diction_doc = {} - local_diction_doc['document_type'] = "EVAL_FORMATION_HOT" + local_diction_doc['document_type'] = "EVAL_FORMATION_COLD" local_diction_doc['class_id'] = session_class_id local_diction_doc['partner_owner_recid'] = str(diction['partner_owner_recid']) @@ -1721,6 +2006,7 @@ def Send_document_from_base_document_automatic_setup(diction): init_diction['sending_date'] = str(today_plus_90_jours_string) init_diction['related_collection'] = "inscription" + local_status_init, local_retval_init = Job_Cron_Common.Cron_Init_Survey_Tab_For_Inscrit_Not_Init( init_diction) diff --git a/Job_Cron_Common.py b/Job_Cron_Common.py index ab378bb..2dc8a6b 100644 --- a/Job_Cron_Common.py +++ b/Job_Cron_Common.py @@ -1158,6 +1158,12 @@ def Cron_Init_Survey_Tab_For_Inscrit_Not_Init(diction): """ for local_inscrit in tab_my_inscription_ids_all: + + print(" QRYY is_inscrit_exist_in_survey_count = ", {'partner_owner_recid': str(my_partner['recid']), + 'session_id': str(diction['session_id']), + 'survey_type': str(diction['survey_type']), + 'inscription_id':str(local_inscrit)}) + is_inscrit_exist_in_survey_count = MYSY_GV.dbname['survey'].count_documents( {'partner_owner_recid': str(my_partner['recid']), 'session_id': str(diction['session_id']), @@ -1174,7 +1180,6 @@ def Cron_Init_Survey_Tab_For_Inscrit_Not_Init(diction): {'_id': ObjectId(str(diction['formulaire_id'])), 'valide': '1', 'locked': '0', - 'default': '1', 'partner_owner_recid': str(my_partner['recid'])}) if (is_valide_form <= 0): @@ -1187,7 +1192,7 @@ def Cron_Init_Survey_Tab_For_Inscrit_Not_Init(diction): Les inscriptions etant toutes valides, on va proceder à 1 - la creation de l'enquete """ - + print(" {{{ UUU tab_my_inscription_ids = ", tab_my_inscription_ids) for my_inscription_id in tab_my_inscription_ids: # Recuperation des données de l'inscript @@ -1322,11 +1327,6 @@ def Cron_Create_One_Survey_To_Inscrit(diction): """ Recuperer les données de l'inscrit """ - print(" qry insc = ", {'_id': ObjectId(str(diction['inscrit_id'])), - 'valide': '1', - - 'partner_owner_recid': str( - my_partner['recid'])}) my_inscrit_data = MYSY_GV.dbname['inscription'].find_one({'_id': ObjectId(str(diction['inscrit_id'])), 'valide': '1', @@ -1553,7 +1553,7 @@ def Cron_Send_Survey_TabIds(diction): 'valide': '1', 'locked': '0', 'partner_recid': str(my_partner['recid'])}, {'_id':1, 'nom':1, 'prenom':1, 'email':1, 'civilite':1}) - print(" ### local_survey_retval = ",local_survey_retval) + #print(" ### local_survey_retval = ",local_survey_retval) courrier_ref_interne = "" if ( "survey_type" in local_survey_retval.keys() and local_survey_retval['survey_type'] == "pos"): courrier_ref_interne = "QUESTION_POSITIONNEMENT" @@ -3375,7 +3375,6 @@ def Cron_Get_Given_Class_List_Default_Documents_For_Given_Type_Doc(diction): data_cle['valide'] = "1" data_cle['locked'] = "0" - #print(" ### Get_Partner_List_Partner_Client data_cle = ", data_cle) RetObject = [] val_tmp = 0 @@ -3384,7 +3383,6 @@ def Cron_Get_Given_Class_List_Default_Documents_For_Given_Type_Doc(diction): if( str(diction['document_type']) in retval.keys() ): retval_document_id = retval[str(diction['document_type'])] - return True, retval_document_id except Exception as e: diff --git a/Log/log_file.log b/Log/log_file.log index b4b3dc1..1ba16f6 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -16513,3 +16513,12319 @@ INFO:werkzeug:127.0.0.1 - - [29/Oct/2025 22:04:31] "POST /myclass/api/Get_List_b INFO:werkzeug:127.0.0.1 - - [29/Oct/2025 22:04:31] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - INFO:root:2025-10-29 22:04:32.725229 : Security check : IP adresse '127.0.0.1' connected INFO:werkzeug:127.0.0.1 - - [29/Oct/2025 22:04:32] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 12:37:48.347466 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 12:37:48.348472 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 12:37:48.348472 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 12:37:48.349464 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 12:37:48.349464 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 12:39:18.001653 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 12:39:18.001653 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 12:39:18.002655 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 12:39:18.002655 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 12:39:18.008660 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-10-30 12:43:57.217189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:43:57] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:44:00.180364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:44:00.186701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:44:00.194398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:44:00.201398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:44:00.212913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:44:00.246913 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-10-30 12:44:00.250921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:00] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:44:00.265433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:44:00.277432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:44:00.286454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:44:00.314596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:44:00.317609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:00] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:44:07.491996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:44:07.497984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:44:07.507004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:07] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:07] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:44:07.523126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:44:07.532132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:07] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:44:07.546128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:44:07.562127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:07] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:07] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:44:07.576126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:44:07.585127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:07] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:44:07.598126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:07] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:07] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:07] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:44:09.458170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:09] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:44:18.828026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:18] "POST /myclass/api/Update_Competence/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:44:18.907755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:44:18] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 12:55:55.359047 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 12:55:55.359047 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 12:55:55.359047 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 12:55:55.359047 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 12:55:55.359047 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 12:56:16.145944 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 12:56:16.146943 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 12:56:16.146943 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 12:56:16.146943 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 12:56:16.146943 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-10-30 12:56:16.263835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:56:16.265754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:56:16.268755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:56:16.272756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:56:16.278754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:56:16.281234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:56:16.287235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:56:16.292234 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:56:16.297279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:56:16.299234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:56:16.302236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:56:16.311624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:56:16.315302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:56:16.323351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:56:16.325299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:56:16.328319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:16] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:56:19.828411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:56:19] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:57:34.985014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:57:34.993014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:57:35.002022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:57:35] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:57:35.015551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:57:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:57:35.032550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:57:35] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:57:35] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:57:35.048553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:57:35.054552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:57:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:57:35.069551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:57:35.077550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:57:35] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:57:35] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:57:35.093547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:57:35] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:57:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:57:35.109559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:57:35] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:57:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:59:21.933239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:59:21.939049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:59:21.945064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:59:21.951064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:59:21.956181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 12:59:21.961080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:59:21] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:59:21] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:59:21] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:59:21.978755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:59:21] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:59:21] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:59:21.989636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:59:21] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:59:21.996642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:59:22] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:59:22.006352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:59:22] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 12:59:22.014244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:59:22] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:59:22] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 12:59:22] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:02:05.609211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:02:05.614726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:02:05.621725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:02:05.625235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:02:05.656758 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:02:05.665762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:02:05.674773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:02:05.677761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:02:05.682761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:02:05.688766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:02:05.698763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:02:05.743773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:02:05.748770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:02:05.756143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:02:05.761153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:02:05.775146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:02:05] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:04:54.808911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:04:54.814690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:04:54.829705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:04:54.836706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:54] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:04:54.857719 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:04:54.876264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:04:54.879261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:04:54.884265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:04:54.890255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:04:54.907256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:04:54.912257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:54] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:54] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:54] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:04:54.939259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:54] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:04:54.952272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:54] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:04:54.962807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:04:54.971806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:54] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:04:54.987807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:54] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:55] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:04:55] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:05:33.758040 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:05:33.764039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:05:33.772046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:05:33.776042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:05:33.786039 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:05:33.820561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:05:33.823562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:05:33.827572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:05:33.832570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:05:33.838570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:05:33.848088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:05:33.853790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:05:33.861792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:05:33.863791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:05:33.871798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:05:33.887796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:05:33] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:20.734678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:20.738381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:20.742875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:20.750935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:20.761323 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:20.800635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:20.803631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:20.807146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:20.813147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:20.818147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:20.821147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:20.832317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:20.838318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:20.848587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:20.858871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:20.860871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:20] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:22.642085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:22] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:52.698035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:52.703033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:52.709160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:52.716034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:52] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:52.724147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:52.729029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:52] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:52.740036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:52] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:52] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:52] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:52.753948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:06:52.761368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:52] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:52] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:52.774036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:52] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:06:52.781014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:52] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:52] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:06:52] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:07:46.028779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:07:46.034739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:07:46.039947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:07:46.047017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:07:46.055044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:07:46.064034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:07:46] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:07:46] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:07:46] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:07:46] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:07:46.083048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:07:46] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:07:46.091034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:07:46] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:07:46.099326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:07:46.104332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:07:46] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:07:46.111405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:07:46] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:07:46] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:07:46] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:07:46] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\competence.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 13:09:01.311636 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 13:09:01.311636 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 13:09:01.312637 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 13:09:01.312637 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 13:09:01.312637 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-10-30 13:09:01.391028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:09:01.392923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:09:01.394920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:09:01.395921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:09:01.400921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:09:01.402921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:09:01.404921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:09:01.411925 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:09:01.415920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:09:01.418920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:09:01.424923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:09:01.425924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:09:01.428921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:09:01.432921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:09:01.433922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:09:01.439002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:01] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:09:06.703928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:06] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:09:17.420707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:17] "POST /myclass/api/Update_Competence/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:09:17.495077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:09:17] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\competence.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 13:10:14.390995 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 13:10:14.390995 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 13:10:14.390995 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 13:10:14.392000 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 13:10:14.392000 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\competence.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 13:15:07.908121 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 13:15:07.908121 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 13:15:07.908121 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 13:15:07.908121 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 13:15:07.908121 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 13:15:24.844120 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 13:15:24.844120 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 13:15:24.844120 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 13:15:24.844120 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 13:15:24.844120 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-10-30 13:15:24.942646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:15:24.944647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:15:24.947754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:15:24.949514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:15:24.951055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:15:24.954250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:15:24.970768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:24] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:15:24.978773 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:24] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:15:24.984772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:15:24.989799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:24] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:15:24.993816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:15:24.998788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:15:25.004841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:25] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:15:25.014437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:25] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:15:25.022431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:25] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:25] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:15:25.030424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:25] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:15:28.400684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:28] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:15:41.308096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:41] "POST /myclass/api/Update_Competence/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:15:41.399215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:15:41] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\competence.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 13:17:08.586574 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 13:17:08.586574 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 13:17:08.586574 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 13:17:08.586574 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 13:17:08.586574 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-10-30 13:17:08.714124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:17:08] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:17:11.359683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:17:13.161936 : Get_Competence_no_filter -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 337 +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:17:13] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\competence.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 13:18:10.303014 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 13:18:10.304020 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 13:18:10.304020 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 13:18:10.304020 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 13:18:10.304020 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-10-30 13:18:13.094820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:13] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:18:16.809868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:16] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:18:48.165077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:18:48.169588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:18:48.179609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:18:48.183116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:18:48.201630 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:18:48.267355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:18:48.273348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:18:48.278356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:18:48.288513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:18:48.293531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:18:48.305530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:18:48.308522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:18:48.311889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:18:48.327390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:18:48.337391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:18:48.345958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:18:48] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:19:01.445400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:19:02.158672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:02] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:19:58.312794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:19:58.314798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:19:58.325792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:19:58.346316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:19:58.372718 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:19:58.389944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:19:58.397829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:19:58.404938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:19:58.411828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:19:58.421946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:19:58.442967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:19:58.453017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:19:58.469123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:19:58.482028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:19:58.489023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:19:58.527134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:19:58] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:20:04.838701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:20:04.843707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:20:04.848709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:20:04.870225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:20:04.887226 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:04] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:20:04.906228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:20:04.913232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:20:04.921365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:20:04.929364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:20:04.936385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:04] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:20:04.947281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:04] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:04] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:04] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:20:04.972921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:04] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:20:04.979908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:04] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:20:04.993911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:20:05.006916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:20:05.023968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:05] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:05] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:05] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:20:06.337681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:20:06] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:21:23.208569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:21:23.214601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:21:23.220615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:21:23.229635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:21:23] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:21:23.237883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:21:23.242081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:21:23] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:21:23.250728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:21:23.256700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:21:23] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:21:23] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:21:23] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:21:23.267693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:21:23] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:21:23] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:21:23.279179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:21:23.287209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:21:23] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:21:23] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:21:23] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:21:23] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:21:27.942380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:21:27] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:22:12.440599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:22:12.442606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:22:12.448609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:22:12.452630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:22:12.461630 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:22:12.474031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:22:12.476546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:22:12.481308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:22:12.485308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:22:12.492314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:22:12.498810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:22:12.503811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:22:12.508815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:22:12.516811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:22:12.520811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:22:12.528898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:12] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:22:14.514370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:22:14] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:03.820988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:03.824275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:03.826508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:03.829780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:03.832778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:03] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:03] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:03.839483 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:03] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:03.847752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:03.852256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:03] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:03.856262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:03.859265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:03] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:03.865786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:03] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:03] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:05.496062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:05] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:37.244015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:37.247015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:37.251079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:37.256470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:37] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:37.264927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:37.268937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:37] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:37.275388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:37] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:37] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:37] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:37.286760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:37.291869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:37] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:37.299869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:37.305869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:37] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:37] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:37] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:37] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:37] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:43.033547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:43.038546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:43.044547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:43.062065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:43.070069 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:43.093598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:43.099597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:43.106598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:43.111597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:43.114598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:43.130373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:43.153127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:43.167129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:43.183125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:23:43.194125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:43.204134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:43] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:44.462931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:44] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:51.153910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:51] "POST /myclass/api/Update_Competence/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:23:51.258327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:23:51] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:24:01.311635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:01] "POST /myclass/api/Update_Competence/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:24:01.382726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:01] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:24:03.673122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:24:04.259558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:04] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:24:44.370874 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:24:44.375912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:24:44.380912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:24:44.382971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:24:44.391471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:44] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:44] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:24:44.402932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:24:44.404651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:44] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:44] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:24:44.415660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:24:44.418671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:24:44.426779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:44] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:44] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:24:44.434779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:44] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:44] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:44] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:24:44] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:34:52.550598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:34:52] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:35:03.749830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:35:03.753840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:35:03.757080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:35:03] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:35:03.763812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:35:03] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:35:03] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:35:03] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:35:06.108173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:35:06] "POST /myclass/api/Get_List_base_calcul_note_class_and_ue_With_Filter HTTP/1.1" 200 - +INFO:root:2025-10-30 13:35:06.171870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:35:06.174759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:35:06] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:35:06] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:36:14.839979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:36:14.844385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:36:14.848949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:36:14.852943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:36:14] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:36:14] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:36:14] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:36:14] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:36:37.575105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:36:37] "POST /myclass/api/Get_List_base_calcul_note_class_and_ue_With_Filter HTTP/1.1" 200 - +INFO:root:2025-10-30 13:36:37.650534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:36:37.653549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:36:37] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:36:37] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:root:2025-10-30 13:37:11.534555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:37:11.547577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:37:11.559562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-30 13:37:11.574565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:37:11] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:37:11] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:37:11] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Oct/2025 13:37:11] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 21:24:50.070066 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 21:24:50.070066 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 21:24:50.070066 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 21:24:50.070066 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 21:24:50.070066 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 21:25:13.048801 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 21:25:13.049802 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 21:25:13.049802 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 21:25:13.049802 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 21:25:13.049802 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\GlobalVariable.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-30 21:39:40.351676 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-30 21:39:40.351676 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-30 21:39:40.351676 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-30 21:39:40.351676 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-30 21:39:40.351676 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 10:33:33.321820 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 10:33:33.321820 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 10:33:33.321820 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 10:33:33.321820 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 10:33:33.321820 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 10:33:43.492941 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 10:33:43.492941 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 10:33:43.492941 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 10:33:43.492941 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 10:33:43.492941 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-10-31 10:34:12.122492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:12] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:34:13.421062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:34:13.422477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:34:13.426584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:34:13.429578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:34:13.432959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:34:13.457492 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:13] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:34:13.499200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:34:13.505197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:34:13.509197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:34:13.514199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:13] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:34:13.521199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:34:13.532223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:13] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:13] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:13] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:13] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:34:17.198604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:17] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:34:17.211061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:17] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:34:40.030929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:40] "POST /myclass/api/Update_Evaluation_Type/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:34:40.081263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:34:40] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:36:43.172386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:43.219584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:43.224900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:43.227898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:43.234086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:43] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:36:43.242080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:43.244251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:43] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:43] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:43] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:43] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:36:45.868079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:36:46.953968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:46.957070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:46.958599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:46.961608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:46.964622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:46.970145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:46.975687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:46] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:36:46.982689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:46] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:36:46.990367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:46] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:36:46.999766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:47] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:36:47.009198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:47] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:36:47.015401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:47] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:36:47.025221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:47] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:47] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:47] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:47] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:36:47.258216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:47.262204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:47.264205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:47] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:47] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:47] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:36:48.739282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:36:48.743283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:48] "POST /myclass/api/Get_List_base_calcul_note_class_and_ue_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:36:48] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:38:15.366741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:38:15.373759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:38:15.382749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:38:15.389759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:38:15.406773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:38:15.416768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:38:15.428320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:38:15.455317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:38:15.469340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:38:15.481317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:38:15.490316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:38:15.505322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:38:15.517323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:38:15.840759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:38:15.847761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:38:15.854763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:15] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:38:18.459025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:38:18.464928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:18] "POST /myclass/api/Get_List_base_calcul_note_class_and_ue_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:38:18] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:27.095931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:27.105925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:27.129946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:27.131946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:27] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:27.164479 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:27.168478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:27.178022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:27.205563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:27.212563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:27.244930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:27.258925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:27] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:29.837111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:29] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:30.931489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:30.933773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:30.937890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:30.941183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:30.945395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:30.953642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:30.960648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:30.965641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:30] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:30.975640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:30] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:30.983105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:30.988116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:30.993115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:30] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:31] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:31.008115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:31] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:31] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:31] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:31.205032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:31.209029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:31.213395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:31] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:31] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:31] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:33.938738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:33.942750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:33] "POST /myclass/api/Get_List_base_calcul_note_class_and_ue_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:33] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:50.258877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:39:50.346222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:39:50.350733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:39:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:40:16.268764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:40:16.277780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:40:16.286778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:40:16.295310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:40:16.309308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:40:16.330827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:40:16.342871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:40:16.355385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:40:16.372431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:40:16.384429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:40:16.411439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:40:16.428428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:40:16.442473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:40:16.821503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:40:16.829515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:40:16.839688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:40:21.281949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:40:21.288972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:21] "POST /myclass/api/Get_List_base_calcul_note_class_and_ue_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:40:21] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:19.162127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:19.164130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:19.175127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:19.182131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:19.192138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:19.216141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:19.229149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:19.247676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:19.259676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:19.280669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:19.291688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:19.312682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:19.318676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:19.667076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:19.674171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:19.682071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:23.340977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:23.346917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:23] "POST /myclass/api/Get_List_base_calcul_note_class_and_ue_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:23] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:41.482056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:47.110104 : update_class - La formation a bin ete mise à jour =6655b721fd47c656dcaf8f05 +INFO:root:2025-10-31 10:41:47.115102 : external_code = MYS_LIC_INF ==> MySy Licence Informatique +INFO:root:2025-10-31 10:41:48.216776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:48.227776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:48.238767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:48.259795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:48.278068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:48.287430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:48.300450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:48.322449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:48.335449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:48.346447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:48.360458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:48.386516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:48.427046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:48] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:48.568170 : La formation indexée (champ title) =6655b721fd47c656dcaf8f05 +INFO:root:2025-10-31 10:41:48.569170 : 1 ont été indexes => title +INFO:root:2025-10-31 10:41:48.572679 : external_code = MYS_LIC_INF ==> licene_info +INFO:root:2025-10-31 10:41:49.519042 : La formation indexée (champs objectif) =6655b721fd47c656dcaf8f05 +INFO:root:2025-10-31 10:41:49.519042 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:49] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:41:50.329882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:50.337920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:41:50.345908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:50] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:41:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 10:43:23.355406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 10:43:23.359420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:43:23] "POST /myclass/api/Get_List_base_calcul_note_class_and_ue_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 10:43:23] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 11:01:43.347378 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 11:01:43.347378 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 11:01:43.347378 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 11:01:43.347378 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 11:01:43.347378 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 11:06:41.398314 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 11:06:41.399917 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 11:06:41.399917 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 11:06:41.399917 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 11:06:41.399917 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 11:07:50.849745 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 11:07:50.849745 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 11:07:50.849745 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 11:07:50.849745 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 11:07:50.849745 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 11:10:09.827863 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 11:10:09.827863 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 11:10:09.827863 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 11:10:09.828863 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 11:10:09.828863 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 11:12:00.963828 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 11:12:00.963828 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 11:12:00.963828 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 11:12:00.963828 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 11:12:00.963828 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 11:12:56.717184 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 11:12:56.717184 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 11:12:56.717184 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 11:12:56.717184 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 11:12:56.717184 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 11:15:50.132945 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 11:15:50.132945 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 11:15:50.132945 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 11:15:50.132945 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 11:15:50.132945 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 11:16:51.610830 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 11:16:51.610830 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 11:16:51.611855 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 11:16:51.611855 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 11:16:51.611855 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 11:18:33.566153 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 11:18:33.567163 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 11:18:33.567163 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 11:18:33.567163 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 11:18:33.568157 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 17:52:33.641627 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 17:52:33.641627 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 17:52:33.642629 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 17:52:33.642629 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 17:52:33.642629 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-10-31 17:53:00.599447 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-10-31 17:53:00.600453 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-10-31 17:53:00.600453 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-10-31 17:53:00.600453 : ++ FLASK PORT 5001 ++ +INFO:root:2025-10-31 17:53:00.600453 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-10-31 21:21:29.203668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:29.206661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:29.224795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:29.231877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:29.237068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:29.243068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:29.247792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:29.250855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:29.254848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:29] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:29] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:21:29.352165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:21:29.364177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:29] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:21:29.376165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:29] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:21:33.222833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:33.231065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:33.235119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:33.239120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:33.243782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:21:33.253780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:33] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:21:33.262856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:33] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:33] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:33] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:21:40.070715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:21:40.074728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:21:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:22:48.243890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:22:48.251413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:22:48] "POST /myclass/api/Get_Given_Class_List_Default_Documents_For_Given_Type_Doc/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:22:48] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:24:17.165925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:24:17.169873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:24:17] "POST /myclass/api/Get_Given_Class_List_Default_Documents_For_Given_Type_Doc/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:24:17] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:24:21.771641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:24:21.775640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:24:21] "POST /myclass/api/Get_Given_Class_List_Default_Documents_For_Given_Type_Doc/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:24:21] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:27:05.242657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:27:05] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:27:05.256805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:27:05.261066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:27:05.262075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:27:05.268080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:27:05.272396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:27:05.279397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:27:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:27:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:27:05] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:27:05] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:27:05] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:27:05] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:27:07.451284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:27:07.455423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:27:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:27:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:17.524661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:17.529231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:17.532867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:17.538911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:17.547439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:17.552834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:17.554846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:17.565847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:17] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:17.573845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:17] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:17.580026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:17] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:17.589539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:17.597320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:17] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:17] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:21.076366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:21.082430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:21.090388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:21] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:21.108759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:21.119774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:21.128754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:21.136865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:21] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:21] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:21] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:21] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:29.225097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:29.230839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:29.235428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:29.241470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:29.248033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:28:29.251447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:29.258447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:29] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:31.080408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:28:39.815285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:28:39] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:40.180360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:29:40.186476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:29:40.194364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:29:40.208085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:40.222975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:29:40.231982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:40.244527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:40] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:40.258274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:40] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:40.267287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:29:40.276391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:40] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:40] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:40.304285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:40.334290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:42] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:46.528165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:29:46.536186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:29:46.542960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:29:46.552955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:29:46.559514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:46.575606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:46.598487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:49.084527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:50.894236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:54.705967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:29:59.062538 : CreateTableauEmargement_From_Sequence - INFO : 0 Documents supprimés de la collection : emargement : session = 68fb8e6a0438bff16569753c +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:59] "POST /myclass/api/CreateTableauEmargement_From_Sequence/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:29:59.131940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:29:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:30:12.407693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:30:12.413688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:30:12] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:30:14] "POST /myclass/api/Create_Emargement_Send_Email_From_Inscription/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:30:14.365292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:30:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:30:41.264942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:30:41] "POST /myclass/api/Check_Emargement_QR_Code_From_Inscription_No_Token/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:33:02.906634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:33:02] "POST /myclass/api/Check_Emargement_QR_Code_From_Inscription_No_Token/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:34:45.443303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:34:45.451298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:34:45.458296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:34:45.467294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:34:45.481312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:34:45] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:34:45] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:34:45.493838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:34:45] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:34:45.507374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:34:45] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:34:45.520366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:34:45] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:34:45.532366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:34:45] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:34:45] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:34:45.544366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:34:45.553375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:34:45] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:34:45] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:34:45] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:34:45] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:34:47.571402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:34:47] "POST /myclass/api/Get_List_Message_To_Mail_Queue/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:14.314465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:14.323572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:14.336469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:14.353468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:14.382470 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:14.399990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:14.412997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:14.422990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:14.440617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:14.453691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:14.467742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:14.484651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:14.500205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:14.525196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:14.541207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:14.554184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:14] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:16.404002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:16] "POST /myclass/api/Get_List_Message_To_Mail_Queue/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:52.190109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:52.202396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:52.209530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:52.225086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:52.233205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:52] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:52] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:52.249243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:52] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:52.264146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:52] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:52] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:52.280143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:52.290147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-10-31 21:39:52.299184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:52] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:52] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:52.323271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:52] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:52] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:52] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:52] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-10-31 21:39:54.231137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Oct/2025 21:39:54] "POST /myclass/api/Get_List_Message_To_Mail_Queue/ HTTP/1.1" 200 - +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 08:01:39.218349 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 08:01:39.218349 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 08:01:39.219375 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 08:01:39.219375 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 08:01:39.219375 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 08:02:12.711956 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 08:02:12.712956 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 08:02:12.712956 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 08:02:12.712956 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 08:02:12.712956 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 08:50:31.967190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:32] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:50:33.852542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:50:33.856676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:50:33.860676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:50:33.861676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:50:33.864676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:50:33.906191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:50:33.907191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:50:33.914190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:50:33.936192 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:50:33.939199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:33] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:50:33.943198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:50:33.984709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:34] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:34] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:34] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:34] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:50:39.715836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:50:39.719820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:50:39.725821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:50:39.731820 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:39] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:39] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:50:47.452237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:50:47] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:51:00.792112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:51:00.795111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:51:00.797112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:00] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:00] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:51:07.609751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:51:07.630664 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:07] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:51:09.331749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:51:09.335771 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 08:51:07.630664', 'token': 'zJSGy_Rewepd71kaLDX5fcZqQskXmLyjMg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:09] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:51:09.354750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:09] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:51:09.436707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:51:09.441706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:51:09.446726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:51:09.448706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:51:09.459703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:51:09.462725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:51:09.468721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:51:09.475703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:51:09.485741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:51:15.939983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:51:15.944529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:15] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:15] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:51:20.019063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:51:20] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:53:18.060080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:53:18.065247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:53:18] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:53:18] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:53:38.210784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:53:38.214765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:53:38] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:53:38] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:53:54.187976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:53:54] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:53:55.778815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:53:55] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:04.779259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:54:04.782515 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 08:51:07.630664', 'token': 'zJSGy_Rewepd71kaLDX5fcZqQskXmLyjMg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:04] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:04.797522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:04] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:04.826018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:54:04.828053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:54:04.831019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:04.838019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:54:04.840530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:54:04.844527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:04.847528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:04.849528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:04.855528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:14.577450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:54:14.582451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:14.586446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:14.591465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:54:14.593802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:14.600067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:14.607075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:54:14.614073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:54:14.618627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:54:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:37.275158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:56:37.281741 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 08:51:07.630664', 'token': 'zJSGy_Rewepd71kaLDX5fcZqQskXmLyjMg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:37] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:37.295789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:37] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:37.336790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:56:37.343805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:37.353820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:37.362806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:37.370794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:37.381811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:37.388380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:37.403379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:56:37.409383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:41.017639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:56:41.021655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:41.031656 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 08:51:07.630664', 'token': 'zJSGy_Rewepd71kaLDX5fcZqQskXmLyjMg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:41] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:51.684466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:56:51.688465 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 08:51:07.630664', 'token': 'zJSGy_Rewepd71kaLDX5fcZqQskXmLyjMg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:51] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:51.701468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:51] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:51.732661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:51.737758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:56:51.739781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:51.743763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:56:51.747326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:51.752348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 08:56:51.758458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:56:51.762030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 08:56:51.767009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 08:56:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:04:06.917491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:04:06.924739 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 08:51:07.630664', 'token': 'zJSGy_Rewepd71kaLDX5fcZqQskXmLyjMg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:04:06] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:04:06.977771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:04:07] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:04:07.032467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:04:07.037468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:04:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:04:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:04:07.047469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:04:07.049467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:04:07.052454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:04:07.055475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:04:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:04:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:04:07.062475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:04:07.069997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:04:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:04:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:04:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:04:07.078562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:04:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:04:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:58.594710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:58.597709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:58.600714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:58.601713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:58.603714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:58] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:58] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:58] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:58] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.031179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.037180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:59.042179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:59.048179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:59.053179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.059179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.070180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.076179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.085165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:59.089180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:59.096179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.103192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.110209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:59.114729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.121758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.148897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.161904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.171436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:59.175452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:59.181437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.185434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.203028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:59.205025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.219451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:59.222466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:59.229465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.237466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.250452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:05:59.263460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:05:59.276466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:05:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.618737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:36.619738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:36.621243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:36.623277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:36.624281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.851961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:36.856956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.862957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:36.865473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.872474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.887991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.896543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:36.901777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.918205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:36.921183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.932744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:36.938762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.944743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.949760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.962744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.977787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:36.980771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.989319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:36.996838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:36.999837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:37.011837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:37.017839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:37.022843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:37.032840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:37.041855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:37.043837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:37.047838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:37.051837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:37.062854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:37.066854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:46.884157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:46.887686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:46.888722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:46] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:46] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:08:50.442105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:08:50.451092 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:08:50] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.454435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.456434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.456434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.458453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.459467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.722178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.727456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.731815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.732829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.738226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.747305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.761746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.766032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.771760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.775214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.782087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.786091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.789678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.794158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.801158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.816185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.820189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.825183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.827185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.837621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.840620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.849610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.855051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.861334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.868335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.878460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.885454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.893036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:02.899821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:02.918775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:24.220596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:24.222595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:24.223597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:24] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:24] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:29.379140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:29.388141 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:29] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:41.948516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:41.952528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:41.953528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:41.955542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:41.958542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:41] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.440550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:42.447100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.453100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:42.457124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:42.464122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.477699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:42.484699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.493249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:42.496249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.502248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:42.512813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.524835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.536369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.543938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.557963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.572524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:42.575526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:42.584524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:42.596531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.620158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.627158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:42.631158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.640159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:42.646159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:42.651159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.667158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.688159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.700183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.706735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:42.714734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:55.022798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:55.027066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:09:55.031593 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:09:29.388141', 'token': 'Y8UJ8Gr-7cEdl_kesmObObfhlQIjgNDguA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:55] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:09:55.033591 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:09:29.388141', 'token': 'Y8UJ8Gr-7cEdl_kesmObObfhlQIjgNDguA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:09:55] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:10:57.143578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:10:57.144578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:10:57.147579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:10:57] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:10:57] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:00.949331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:00.958287 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:00] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.005195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.009195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.011195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.013195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.015181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.496051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.501050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.508050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.513051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.516050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.526050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.535050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.543050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.555051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.558037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.566050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.572050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.579075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.598622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.609173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.614728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.616752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.629750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.633302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.654867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.666867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.674892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.682892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.688447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.694005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.704014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.709005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.719034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:14.724036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:14.735200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:31.825330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:31.827330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:31.830355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:31] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:31] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:34.963534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:34.972523 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:34] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:35.658049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:35.664604 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:11:34.972523', 'token': 'KIzRR2j6UlFCBy39oR4nJ81rB3b-XtH0MQ'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:35] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:35.679116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:35] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:35.773762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:35.779762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:35.785302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:35.791301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:35.797304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:35.805304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:35.812305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:35.820837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:35.830841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:38.948461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:38.950462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:38.952462 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:11:34.972523', 'token': 'KIzRR2j6UlFCBy39oR4nJ81rB3b-XtH0MQ'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:38] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:38.953462 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:11:34.972523', 'token': 'KIzRR2j6UlFCBy39oR4nJ81rB3b-XtH0MQ'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:38] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.135862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:55.136865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:55.138867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:55.139867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:55.140866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.426355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:55.428354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.432354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:55.437355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:55.444357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.454355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:55.458356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.465356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.470355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.474354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.479387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.485355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.489359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.498354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.509359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.515374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.525877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.532873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.538906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:55.542888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.555412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:55.562426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.570412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.580423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:55.582404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.589413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.593405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.596405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:11:55.598405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:11:55.605405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:11:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:14.830570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:14.833794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:14.835795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:14.839304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:14.847815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:14.857818 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:14] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:14.877332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:14.879333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:14.884333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:14] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:14.890333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:14.895332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:14] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:14.900332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:14] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:14] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:19.784086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:19.788084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:19.791079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:19] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:19] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:23.524429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:23.532428 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:23] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:24.012776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:24.018774 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:12:23.533461', 'token': 'P4McSFP3acm11Va4eyg_lTfCWrnE2c-AcA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:24] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:24.033796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:24] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:24.111617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:24.117615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:24.125618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:24.134620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:24.140616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:24.152616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:24.157620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:24.173640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:24.181621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:28.902263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:28.920264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:28.924265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:28.929298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:28.933767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:29] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:29] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:30.954373 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:30] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:30.956601 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:30] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:32.009800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:32.019100 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:32] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:32.046226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:32.050243 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:12:32.019100', 'token': 'acI3Sz3Im9Eka7Dd35iO0m5j5M5XZ-htNg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:32] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:32.056249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:32] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:32.088553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:32.089553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:32.093552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:32.096553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:32.100552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:32.105575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:32.106574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:32.112574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:32.120062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:33.774290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:33.777292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:33.780805 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:12:32.019100', 'token': 'acI3Sz3Im9Eka7Dd35iO0m5j5M5XZ-htNg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:33] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:33.781804 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:12:32.019100', 'token': 'acI3Sz3Im9Eka7Dd35iO0m5j5M5XZ-htNg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:33] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:36.701585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:36.705587 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:12:32.019100', 'token': 'acI3Sz3Im9Eka7Dd35iO0m5j5M5XZ-htNg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:36] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:36.719586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:36] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:36.760231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:36.764795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:36.766793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:36.770280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:36.773285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:36.780286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:36.783835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:36.786850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:36.799194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:38.283410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:38.285409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:38.289922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:38] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:38.294928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:12:38.299930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:38] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:12:38.304934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:38] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:38] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:38] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:12:38] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:18:42.790418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:18:42.795457 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:12:32.019100', 'token': 'acI3Sz3Im9Eka7Dd35iO0m5j5M5XZ-htNg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:18:42] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:20:07.791348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:20:07.812349 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:12:32.019100', 'token': 'acI3Sz3Im9Eka7Dd35iO0m5j5M5XZ-htNg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:20:07] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:20:25.943254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:20:25.948246 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:12:32.019100', 'token': 'acI3Sz3Im9Eka7Dd35iO0m5j5M5XZ-htNg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:20:25] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:21:32.365984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:21:32.369986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:21:32.374985 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:12:32.019100', 'token': 'acI3Sz3Im9Eka7Dd35iO0m5j5M5XZ-htNg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:21:32] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:21:32] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:21:32.729009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:21:32.731009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:21:32.736518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:21:32.738524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:21:32.741523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:21:32.746523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:21:32.749524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:21:32.758036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:21:32.759037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:22:23.692481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:22:23.700489 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:12:32.019100', 'token': 'acI3Sz3Im9Eka7Dd35iO0m5j5M5XZ-htNg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:22:23] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:22:23.841797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:22:23.847823 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:12:32.019100', 'token': 'acI3Sz3Im9Eka7Dd35iO0m5j5M5XZ-htNg'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:22:23] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:16.212158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:16.217704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:16.224727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:16.226710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:16.231701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:16] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:16.238701 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:16.241703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:16.248708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:16] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:16] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:16.301734 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:27.518861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:27.522880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:27] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:27.632626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:27.635640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:27.641640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:27] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:27] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:27] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.598289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:28.603287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.608290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.614289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.621290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.630290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:28.635288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:28.638294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:28.645775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.657819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.666822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.676297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:28.683296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.690523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.700086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.708114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:28.719423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.729440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.739465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:28.746466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.753996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.763996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.781995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.790996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:28.795996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.803996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.811995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:28.817983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.829997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.835996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:28.988136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:28.990136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.004136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.008136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.010122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.563993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.568993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.572995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.582010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.587010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.592996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.597000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.608011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.614010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.620996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.627996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.634993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.640000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.665102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.667102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.674102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.684114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.688130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.695652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.704745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.716295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.720564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.727565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.734553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.743581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.761129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.766133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.773144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:26:29.802129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:26:29.807142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:26:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:42:56.222480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:42:56.223463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:42:56.226450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:42:56] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:42:56] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:42:59.462146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:42:59.470854 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:42:59] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:00.884063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:00.896032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:00.903066 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:42:59.470854', 'token': '6tngaIveR8gzT5JAJjP_FuvgarPoCI4_Ig'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:00] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:00] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:00.936592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:00.943576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:00.948594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:00.957578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:00.962578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:00.968580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:00.972581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:00.983578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:00.988586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:05.066139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:05.070139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:05.070139 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:05] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:05.074652 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:05] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:06.567148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:06.570148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:06.573163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:06] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:06] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:10.011247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:10.020695 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:10] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:10.052695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:10.056704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:10.061702 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:10] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:10] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:10.090257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:10.090257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:10.096766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:10.100767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:10.098783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:10.103769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:10.111767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:10.116766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:10.120801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:12.714512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:12.717511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:12] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:12.723558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:12.725533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:12.729517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:12.735128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:12] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:12] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:12] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:12] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:12] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:14.754590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:14.758178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:14.766178 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:14] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:24.834701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:24.837702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:24.842704 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:24] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:24] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:24.874703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:24.877731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:24.881700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:24.884701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:24.891706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:24.896705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:24.897706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:24.902278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:24.907300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:43:28.185720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:28.188720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:28.193717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:43:28.200717 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:28] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:28] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:43:28] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:45:55.040698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:45:55.050702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:45:55.057702 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:55] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:55] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:45:55.149233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:45:55.155216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:45:55.160214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:45:55.171217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:45:55.177222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:45:55.182224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:45:55.189739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:55] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:45:55.206742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:45:55.215741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:55] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:45:57.149640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:45:57.152641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:45:57.154639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:45:57.159644 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:57] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:57] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:45:57] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:47:39.973211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:47:39.976717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:47:39.980723 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:47:39] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:47:39.982721 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:47:39] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:47:44.601272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:47:44.612204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:47:44.617226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:47:44] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:47:44.636749 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:47:44] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:47:44] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:56:29.494204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:56:29.497206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:56:29.501208 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:29] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:56:29.503209 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:29] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:56:39.269813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:56:39.275779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:56:39.281779 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:39] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:39] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:56:39.679992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:56:39.685978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:56:39.689001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:56:39.693998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:56:39.694977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:56:39.704021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:56:39.708023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:56:39.710020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:56:39.718562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:56:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:35.709085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:57:35.713697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:35] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:35.717701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:57:35.721701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:57:35.725697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:35] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:35.732698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:35] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:35] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:35] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:35] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:41.544915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:57:41.547916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:57:41.549914 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:41] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:41.551914 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:41] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:44.800638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:57:44.807639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:57:44.812640 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:44] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:44] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:45.142924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:57:45.144318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:45.149121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:45.152610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:57:45.156082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:45.161875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:45.165389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:45.169394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:45.176409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:49.340211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:57:49.343211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 09:57:49.346749 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:49] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 09:57:49.348766 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 09:57:49] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:07:02.728285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:07:02.732284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:07:02.735287 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:02] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:07:02.742285 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:02] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:07:13.844987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:07:13.847994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:07:13.855987 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:13] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:13] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:07:14.234348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:07:14.235353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:07:14.243372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:07:14.248353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:07:14.249353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:07:14.251353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:07:14.258354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:07:14.261352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:07:14.269357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:07:20.902684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:07:20.904188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:07:20.907194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:07:20.911194 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:20] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:20] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:20] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:07:36.456916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:07:36.460919 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:07:36] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:08:33.813880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:08:33.820867 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:08:33] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:08:50.966499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:08:50.969499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:08:50.974501 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:08:50] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:08:50] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:08:51.005500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:08:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:08:51.009500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:08:51.012538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:08:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:08:51.016529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:08:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:08:51.020501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:08:51.025546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:08:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:08:51.029539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:08:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:08:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:08:51.037528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:08:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:08:51.048057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:08:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:08:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:28:00.530838 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:28:00.530838 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:28:00.530838 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:28:00.530838 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:28:00.530838 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:30:05.870650 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:30:05.870650 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:30:05.871649 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:30:05.871649 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:30:05.871649 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:30:28.559443 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:30:28.559443 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:30:28.559443 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:30:28.559443 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:30:28.559443 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:30:41.157963 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:30:41.157963 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:30:41.157963 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:30:41.157963 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:30:41.157963 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:30:56.859000 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:30:56.859000 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:30:56.859000 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:30:56.859000 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:30:56.859000 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:31:10.700098 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:31:10.700098 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:31:10.700098 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:31:10.700098 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:31:10.700098 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\domaine_formation_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:35:58.565075 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:35:58.565075 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:35:58.565075 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:35:58.565075 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:35:58.565075 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\domaine_formation_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:36:22.791475 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:36:22.791475 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:36:22.791475 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:36:22.791475 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:36:22.791475 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\domaine_formation_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:37:09.884884 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:37:09.884884 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:37:09.884884 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:37:09.884884 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:37:09.884884 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:37:36.674898 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:37:36.674898 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:37:36.674898 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:37:36.674898 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:37:36.674898 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:39:58.661036 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:39:58.661036 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:39:58.661036 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:39:58.661036 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:39:58.661036 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:40:28.223003 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:40:28.224004 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:40:28.224004 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:40:28.224004 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:40:28.224004 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:41:10.344182 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:41:10.344182 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:41:10.344182 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:41:10.344182 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:41:10.344182 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:41:24.499604 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:41:24.499604 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:41:24.499604 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:41:24.499604 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:41:24.499604 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:42:03.983431 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:42:03.983431 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:42:03.983431 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:42:03.983431 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:42:03.983431 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:46:33.588471 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:46:33.588471 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:46:33.588471 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:46:33.588471 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:46:33.588471 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 10:46:48.257451 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 10:46:48.258475 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 10:46:48.258475 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 10:46:48.258475 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 10:46:48.258475 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 10:57:54.054977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:57:54.057960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:57:54.067869 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:57:54] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:57:54] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:57:54.160385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:57:54.164386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:57:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:57:54.170371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:57:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:57:54.175368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:57:54.181383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:57:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:57:54.188387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:57:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:57:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:57:54.203369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 10:57:54.212391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:57:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:57:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 10:57:54.219901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:57:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 10:57:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:00:08.408624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:00:08.431517 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:00:08] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:00:24.318451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:00:24.322467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:00:24.329968 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:00:24] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:00:26.942407 : Get_List_Ent_Alert_Message -'recid' - Line : 313 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:00:26] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 11:01:30.104324 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 11:01:30.104324 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 11:01:30.104324 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 11:01:30.104324 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 11:01:30.104324 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 11:01:35.912402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:01:35.914408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:01:35.924427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:01:35.949599 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:01:35] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:01:36] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:01:36.117203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:01:36.126186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:01:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:01:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:01:36.139187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:01:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:01:36.150186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:01:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:01:36.163204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:01:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:01:36.172187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:01:36.179197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:01:36.186207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:01:36.197250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:01:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:01:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:01:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:01:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:01:38.124951 : Get_List_Ent_Alert_Message -'recid' - Line : 314 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:01:38] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 11:02:41.190432 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 11:02:41.190432 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 11:02:41.190432 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 11:02:41.190432 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 11:02:41.190432 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 11:02:50.164388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:02:50.166358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:02:50.168360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:02:50.172361 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:02:50] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:02:50] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:02:50] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:02:50.199548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:02:50.200532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:02:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:02:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:02:50.202532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:02:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:02:50.208532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:02:50.208532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:02:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:02:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:02:50.210532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:02:50.212541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:02:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:02:50.215534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:02:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:02:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:02:50.217532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:02:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 11:07:11.245532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:07:11.250547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 11:07:11.255534 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 09:43:10.020695', 'token': 'mgrc6S-B_Y4vjbBgtvcsHHxiAOtrQj83IA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:07:11] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 11:07:11] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\competence.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 11:44:22.759498 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 11:44:22.759498 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 11:44:22.760493 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 11:44:22.760493 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 11:44:22.760493 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\competence.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 12:00:23.330524 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 12:00:23.330524 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 12:00:23.331524 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 12:00:23.331524 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 12:00:23.331524 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 12:04:32.203277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:32] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:33.628865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:33.638866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:33.646880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:33.654863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:33.665863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:33.687420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:33.695437 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:33.703446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:33] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:33.719437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:33.731421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:33] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:33.746445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:33.759947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:35.988705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:35.990270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:35.994286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:36.000284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:36] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:36] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:36] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:42.625133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:42.627107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:42] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:42] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:43.926002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:43.951507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:43.955505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:43.957508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:43.966508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:43.973507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:43] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:43] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:43.985508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:43] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:43] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:44] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:44.835539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:44.837540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:44.840539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:44.844151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:44] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:44] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:44] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:44] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:46.134659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:46] "POST /myclass/api/Get_List_base_calcul_note_class_and_ue_With_Filter HTTP/1.1" 200 - +INFO:root:2025-11-01 12:04:46.190657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:04:46.193660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:46] "POST /myclass/api/Get_Given_Unite_Enseignement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:04:46] "POST /myclass/api/Get_List_Unite_Enseignement_Planif_lines/ HTTP/1.1" 200 - +INFO:root:2025-11-01 12:05:12.542652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:05:12.544653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:05:12.547653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 12:05:12.549653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:05:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:05:12] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:05:12] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 12:05:12] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 15:29:17.889247 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 15:29:17.889247 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 15:29:17.889247 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 15:29:17.889247 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 15:29:17.889247 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 15:30:10.473193 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 15:30:10.473193 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 15:30:10.473193 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 15:30:10.473193 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 15:30:10.476194 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 15:33:20.523219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:20] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:22.126554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:22.133066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:22.137064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:22.141068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:22.148068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:22] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:22.170597 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:22.177598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:22.181596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:22.188787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:22.196788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:22.199788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:22] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:22] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:22.211787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:22] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:22] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:22] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:29.872922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:29.875939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:29.879924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:29] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:29.894924 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:29] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:31.386716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:31] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:34.724288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:34.727258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:34.729258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:34] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:34] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:39.291075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:39.300062 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:39] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:41.381198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:41.383197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:41.386219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:41.391197 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:41] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:41] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:41] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:41.423376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:41.426375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:41.430375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:41.431375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:41.438399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:41.442397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:33:41.447380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:41.449891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:33:41.453910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:33:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:34:04.976664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:34:04.979664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:34:04.982665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:34:04.987663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:34:04.994663 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:34:04] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:34:05] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:34:05] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:34:05] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:34:11.107879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:34:11.110881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:34:11.113878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:34:11.115883 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:34:11] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:34:11.123884 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:34:11] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:34:11] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:35:11.704362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:35:11.710362 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:35:11] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:35:39.027412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:35:39.035453 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:35:39] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:37:31.405464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:37:31.430461 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:37:31] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:38:01.363875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:38:01.373426 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:38:01] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:39:45.915163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:39:45.918210 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:39:45] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:40:56.844637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:40:56.848877 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:40:56] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:41:23.829483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:41:23.841508 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:41:23] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:41:45.078063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:41:45.081087 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:41:45] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:42:34.715853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:42:34.720699 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:42:34] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:43:19.762258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:43:19.766369 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:43:19] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:43:49.069030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:43:49.073032 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:43:49] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:45:02.071999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:45:02.076983 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:02] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:45:16.958931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:45:16.960935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:45:16.966937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:45:16.974444 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:16] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:16] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:17] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:45:17.023562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:45:17.026555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:45:17.028570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:45:17.033553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:45:17.039553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:45:17.041569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:45:17.044586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:45:17.051553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:45:17.063609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:45:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:47:44.774010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:47:44.776009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:47:44.785014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:47:44.790014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:47:44.799519 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:47:44] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:47:44] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:47:44] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:47:44] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:26.065001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:26] "POST /myclass/api/get_all_published_articles_avis/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:29.499001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:29.504043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:29.505043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:29.507419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:29.513425 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:29] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:29] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:29] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:29] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:33.692898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:33.693919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:33.698897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:33.702898 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:33] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:33] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:33] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:33.763828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:33.770832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:33.775937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:33.780959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:33.784983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:33.791961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:33.793958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:33.807545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:33.809540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:34.801793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:34.802789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:34] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:34.810290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:34.815322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:34.819290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:34.826287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:34] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:34] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:34] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:34] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:34] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:36.925456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:36.928457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:36] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:36] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:41.969497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:41] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:41.974497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:41.977495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:41.980497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:41.983507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:41] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:41] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:41.993503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:42] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:42] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:42] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:49:43.563612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:49:43.568612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:43] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:49:43] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:50:09.480977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:50:09] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:53:44.720362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:53:44.723865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:53:44.728387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:53:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:53:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:53:44.736386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:53:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:53:44.743386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:53:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:53:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:53:44.754386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:53:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:53:44.760386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:53:44.765385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:53:44.770385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:53:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:53:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:53:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 15:53:44.785383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:53:44.790386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:53:44.796386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 15:53:44.798388 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:53:44] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:53:44] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 15:53:44] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:32.545232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:32.584001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:32.593043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:32.594047 : {'_id': ObjectId('6846a7f397eb82bb3be50ab5'), 'apprenant_id': '66c0de150e1a068abd777dc3', 'email': 'mysy1000formation+04@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'type': 'student', 'active': '1', 'adr_city': 'ville06', 'adr_country': 'pays06', 'adr_street': 'adresse06', 'civilite': 'neutre', 'code_postal': 'code_postal06', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-06-09 11:22:59.922942', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '10101', 'nom': 'part nom5_client', 'notification_send': '0', 'prenom': 'part 5', 'pwd': '-ixOA5HBpag', 'lastconnexion': '2025-11-01 15:33:39.300062', 'token': 'c1v8FgOLUaSkpT-lsw-zc60KTd3hKaKj-w'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:32] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:32] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:35.707490 : Get_Ent_Student_Participant_Notes -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 1049 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:35] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:48.844511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:48.846511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:48.849014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:48.853020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:48.859020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:48.870021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:48.870021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:48.885020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:48.890020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:48] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:48.906019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:48.915048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:48.923021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:51.597028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:51.602039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:51.606032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:51.617583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:51] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:51.624586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:51.626586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:51] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:51.634589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:51] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:51] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:58.579677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:58.584686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:58.588685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:03:58.593689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:58.600205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:58] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:58.611211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:03:58.615208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:58] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:03:58] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:00.830006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:02.784184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:02.785203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:02.788254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:02.794262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:02.798275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:02] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:02] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:02] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:02.803716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:02] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:10.843796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:10.846798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:10.848805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:10.853805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:10.859805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:10.861806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:10.871859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:10] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:10] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:10] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:10] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:12.402415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:14.771662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:14.774678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:14.778675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:14.781698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:14.788705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:14.798681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:14] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:14] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:14] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:14] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:39.441665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:39.445681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:39.446682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:39.454664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:39.462667 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:39.510243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:39.512260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:39.514242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:39.523271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:39.527286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:39.532774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:39.535795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:39.544780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:39.546795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:39.549802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:39.566812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:39.573810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:45.030649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:45.034653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:45.037648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:45.041156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:45.048161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:45.049164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:45.054162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:45.066163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:45] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:45] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:45] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:45.083161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:04:45.090193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:45] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:45] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:04:49.083999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:04:49] "POST /myclass/api/Get_Apprenant_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:00.776397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:05.756226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:06.895405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:05:06.897405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:05:06.900919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:05:06.901918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:05:06.910955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:05:06.912919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:06] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:06] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:06] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:06] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:08.899804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:18.186565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:18] "POST /myclass/api/Get_Apprenant_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:38.312877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:38.323886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:05:38.326885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:05:38.332395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:38] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:38.346408 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:38.371531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:05:38.376514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:05:38.383513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:05:38.389515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:05:38.402512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:05:38.414514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:38.434517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:38.489551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:38.706828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:39] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:05:39.025215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:39] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:39] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:05:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:16.192996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:06:16.195995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:06:16.198996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:06:16.201996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:16.213014 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:16.240299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:06:16.243298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:06:16.245317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:06:16.249312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:06:16.254298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:16.261316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:16.267301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:16.275314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:16.282321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:06:16.284339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:06:16.295326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:16.312299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_Given_Apprenant_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:16.319307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_Apprenant_Recorded_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:16.333825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/Get_Apprenant_List_Inscription/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:42.581125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:42] "POST /myclass/api/Get_Apprenant_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:52.061082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:55] "POST /myclass/api/ENT_Create_Apprenant_Account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:06:55.067050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:06:55] "POST /myclass/api/Get_Apprenant_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:34.407600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:34.408600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:34.413600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:34] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:34] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:39.061688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:39.066703 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:39] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:40.173069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:40.188051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:40.198067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:40] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:40.206069 : {'_id': ObjectId('6843041ea83b1bf7474a1a23'), 'email': 'mysy1000formation+01_lot2@gmail.com', 'pwd': 'cherif1', 'active': '1', 'locked': '0', 'date_update': '2025-06-10 19:34:17.926626', 'type': 'student', 'apprenant_id': '66b5eba08479169d46bfe2ba', 'firstconnexion': '0', 'lastconnexion': '2025-11-01 16:07:39.066703', 'token': 'zCwoAlfcSmr9TTbY36Js9ljRRNy7YiAr8Q', 'adr_city': '111', 'adr_country': 'fr', 'adr_street': 'adr_01_lot2@', 'adr_zip': '1411', 'mob_phone': '01020305', 'nom': 'Nom_01_lot22', 'prenom': 'prenommmm uuu', 'link_linkedin': 'ddd', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:40] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:40] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:40.444244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:40.532981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:40.537023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:44.744138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:44] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:45.057841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:45.063851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:45.065838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:45.070854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:45] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:45.079864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:45] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:45] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:45] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:45] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:46.934398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:46.936387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:46] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:46] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:49.855320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:49] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:50.161738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:50.164742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:50] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:58.852250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:58.861455 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:58] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:59.100658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:59.191701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:59.192706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:59.193706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:59.195708 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:07:58.861455', 'token': 'ktFRfL6bXDsh0IFGLDJtgyP1M6qw7Y_YoA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:59.478703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:59.482723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:59.485721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:59.508831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:59.511830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:59.514830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:59.807328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:59.811315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:59.814328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:07:59.835139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:59.837216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:07:59.841228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:07:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:00.134129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:00.139135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:00.142136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:00.151135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:00.154145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:00.162130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:00.468084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:00.472088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:00.477085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:00.486087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:00.496087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:00.498595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:00.790384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:00.798388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:00.805765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:00.810762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:00.826753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:00.830761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:01.108371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:01.110370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:01.137686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:01.141700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:01] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:01.144709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:21.792667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:21.797665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:21.796651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:21.804665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:21] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:21.817700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:21] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:21.826692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:21] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:21] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:21] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:21] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:24.211923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:24.222070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:24] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:24] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:31.509689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:31.518691 : Get_Ent_Student_Participant_Notes -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 1049 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:31] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:31.852989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:31] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:31.882620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:31.898190 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:07:58.861455', 'token': 'ktFRfL6bXDsh0IFGLDJtgyP1M6qw7Y_YoA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:31] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:55.363264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:55.370264 : Get_Ent_Student_Participant_Notes -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 1049 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:55] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:08:55.982261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:08:55.990275 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:08:55] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:08.310372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:08.315372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:08.318405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:08.323378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:08.334387 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:07:58.861455', 'token': 'ktFRfL6bXDsh0IFGLDJtgyP1M6qw7Y_YoA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:08] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:08] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:08] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:08] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:14.263224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:14.278231 : Get_Ent_Student_Participant_Notes -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 1049 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:14] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:14.617860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:14.621841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:14.624901 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:07:58.861455', 'token': 'ktFRfL6bXDsh0IFGLDJtgyP1M6qw7Y_YoA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:14] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:14] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:22.153257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:22] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:22.465619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:22.467623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:22] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:29.676487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:29.679502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:29.682485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:29] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:29] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:43.794762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:43.803747 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:43.860582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:43.864583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:43.869584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:43.873600 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:09:43.803747', 'token': '1Mg1k4uAEEVMgXdHBR2cDo3gDDE0QZ6SxQ'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:43.941590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:43.942591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:43.944085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:43.947091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:43.955609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:43.962606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:43.967608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:43.975606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:43.987611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:43.990628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:43.994642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:43.997628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.002633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.008182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:44.018183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.036181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.044207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.048211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:44.052752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.057749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.068748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.073747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:44.076748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.087730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:44.089731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.095747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.098730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.102747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.106752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.116731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:44.120749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.122747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.126731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.138757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:44.151783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:44.154333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:48.530954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:48.533949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:48] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:48.538951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:48.542972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:09:48.545948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:48] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:09:48.552003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:48] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:48] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:48] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:09:48] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:10.562166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:10] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:20.933681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:20.937683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:20] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:20.942186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:20.946262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:20.948259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:20.957308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:20] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:20] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:20] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:20] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:20] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:22.727204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:22.730204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:22] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:22] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:29.712855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:29.715854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:29.717854 : La session de connexion n'est pas valide +INFO:root:2025-11-01 16:10:29.718855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:29] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:29.722360 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:29] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:29.740405 : get_user_account Le token est vide +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:29] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:29.855266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:29.858263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:29.862260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:29] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:29] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:35.997511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.006508 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.057629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.059631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.062630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.065628 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.132181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.136185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.139184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.142186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.148185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.151694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.155694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.162695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.167698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.177693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.185695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.187694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.190693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.195695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.202693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.206694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.210693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.213695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.218694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.221710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.225716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.233695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.238697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.248699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.253207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.255207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.259716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.263748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.265721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.267726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.276782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.281764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.297270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.300276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:36.306271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:36.308269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:43.945349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:43.958348 : Get_Ent_Student_Participant_Notes -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 1049 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:43] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:10:43.962347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:43.965354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:10:43.968352 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:43] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:10:43] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:15:23.709815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:15:23.714831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:15:23.724814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:15:23.730851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:15:23.737833 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:15:23] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:15:23] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:15:23] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:15:23] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:20:31.201142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:20:31.203140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:20:31.206142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:20:31.213648 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:20:31] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:20:31] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:20:31] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:20:43.095847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:20:43] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:21:02.540676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:21:02] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:21:33.721396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:21:33] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:21:53.835927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:21:53.843539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:21:53.852055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:21:53.856054 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:21:53] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:21:53] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:21:54] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:02.636028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:02] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:24.733203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:24.737207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:24.739204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:24.742203 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:24.892487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:24.894600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:24.898860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:24.902862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:24.904867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:24.909887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:24.911868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:24.920405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:24.926406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:24.945390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:24.953391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:24.961408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:24.968402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:24.975913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:24.989956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:24.995465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:25.007476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:25.010492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:25.017477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:25.029037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:25.034042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:25.037047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:25.043566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:25.049576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:25.064097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:25.067097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:25.072131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:25.079097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:25.083096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:25.092102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:25.095121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:25.106117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:25.109102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:25.116100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:25.119625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:25.121638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:28.940226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:28.941731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:28.943739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:28.946737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:28] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:22:28.950737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:22:28.954736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:28] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:28] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:28] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:28] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:22:28] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:23:05.176554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:23:05] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:23:17.497835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:23:17] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:24:41.027921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:24:41.031484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:24:41.034501 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:24:41] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:24:41] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:26:30.899591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:26:50.005352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:50] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:26:53.499422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:26:53.523436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:53] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:26:53.534439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:53] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:26:53.555426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:53] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:53] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:26:54.440123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:26:54.446647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:26:54.447678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:26:54.451667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:54] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:26:54.464232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:26:54.475234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:54] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:54] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:26:54.494229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:54] "POST /myclass/api/Get_List_Jury_Soutenenace_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:26:54] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:27:11.770175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:27:12] "POST /myclass/api/Push_Document_To_ENT_For_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:27:50.629022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:27:50.633022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:27:50] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:27:50.638046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:27:50.641049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:27:50.646080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:27:50.653183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:27:50] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:27:50] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:27:50] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:27:50] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:27:50] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:27:59.779567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:27:59.783092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:27:59] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:27:59] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:28:07.684737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:28:07.688738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:28:07] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:28:07] "POST /myclass/api/Get_Ent_Student_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:55.973637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:55.981642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:55.984638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:55.988636 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:55] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:55] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.439800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.440800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.442870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.451875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.452879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.458400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.461410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.464908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.480947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.484955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.487960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.491955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.492953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.496958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.503954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.504954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.509956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.513956 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.514955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.515957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.524955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.525957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.528956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.532953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.535954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.537955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.539954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.541954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.544957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.550956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.554960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.555960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.557987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:30:56.559962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.567463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:30:56.569468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:30:56] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:31:22.142947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:31:22.187432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:31:22] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:31:22] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:31:22.227549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:31:22] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:31:22.261097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:31:22.274114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:31:22] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:31:22.338131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:31:22] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:31:22] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.047502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.048503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.053502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.058501 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.130869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.134868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.137870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.140870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.144869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.148868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.151869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.154898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.165870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.170870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.174870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.176869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.179930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.183911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.187914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.201456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.204456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.206455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.210456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.214456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.224484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.227466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.230462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.238784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.242284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.244289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.249313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.251291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.257305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.263291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.276291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.293830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.304842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.312842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:07.317837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:07.320859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:12.757900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:12.761901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:12] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:12.766898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:12.769901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:32:12.774904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:12] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:32:12.780897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:12] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:12] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:12] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:32:12] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:43:05.791866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:43:05.792865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:43:05.796867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:43:05.800868 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:43:05] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:43:05] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:43:05] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:43:10.596578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:43:10] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:43:22.428395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:43:22] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:43:57.032900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:43:57] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:43:58.332204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:43:58] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:44:43.962103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:44:44] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:44:55.556947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:44:55] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.190513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:10.194512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:10.197700 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.200913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.730233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:10.733234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:10.734721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.736726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.738726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.739726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:10.742730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.746729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.754731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.757990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.759997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.761997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:10.762997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.765998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.769997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.771997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.773997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.774998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.780002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.785003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.792035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.800021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:10.804060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.811079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.814067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.816070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.817574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.819580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.821580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.826118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:10.828604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.831611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:10.833611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.838615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:10.841611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:10.842611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:27.135712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:27.139710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:27.143708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:27] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:27.149708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:45:27.153710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:27] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:45:27.158708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:27] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:27] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:27] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:45:27] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.037071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.041106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.042072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.050093 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.224865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.227864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.231865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.235864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.238863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.243865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.250877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.257876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.269389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.272389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.277385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.281924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.285941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.289938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.300028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.305027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.307026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.314027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.316056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.320027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.326028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.331029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.341028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.344027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.348027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.353032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.356033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.359062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.362035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.372576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.375578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.378578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.387601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.391583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:16.395090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:16.400599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:23.740500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:23.743503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:23.745501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:23.748502 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:23] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:23] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:23] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:43.008313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:43] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:46.488876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:46.492876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:46.497873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:46] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:46:46.500873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:46.505876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:46:46.511874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:46] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:46] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:46] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:46] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:46:46] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:48:36.849025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:48:36] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:48:48.078316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:48:48] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:49:05.344903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:49:05] "GET /myclass/api/Get_Ent_Student_Stored_Downloaded_File/IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A//66432a8b41efccf7bb038fe4 HTTP/1.1" 404 - +INFO:root:2025-11-01 16:49:12.422022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:49:12] "GET /myclass/api/Get_Ent_Student_Stored_Downloaded_File/IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A/CorrigeTD01_20251101162711_20251101_162711_43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89.pdf/66432a8b41efccf7bb038fe4 HTTP/1.1" 200 - +INFO:root:2025-11-01 16:50:42.160501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:50:42] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:52:05.341296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:52:05.342313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:52:05.348300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:52:05.350300 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:52:05] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:52:05] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:52:05] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:52:25.327217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:52:25.336211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:52:25.350221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:52:25.352223 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:52:25] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:52:25] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:52:25] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:16.193555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:16.197557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:16.202101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:16.206837 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:16] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:16] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:16] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.260320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.278318 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.282324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.289322 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.447432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.454419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.460432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.463433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.468417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.473431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.480419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.484420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.490416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.504459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.515023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.518008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.521007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.528020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.532033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.544023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.549008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.551007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.556024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.566008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.579008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.585007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.590015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.593050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.609556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.613537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.618562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.621578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.627556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.633540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.645537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.657554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.663542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.664555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:17.672554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:17.677540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:31.493231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:31.498231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:31.504228 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:31] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:31.513244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:31] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:31] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:31.863062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:31.874058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:31.888104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:31.906681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:31.927693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:31.954307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:31.967850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:31.992058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:32.014057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:32.033083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:32.052647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.758593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.769593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.782135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.794139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.800137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:32.803134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.811133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.826150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.845161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.858333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.871333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:32.876362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.901886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.915424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.926933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.940946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.952489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.969531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:32.980107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:32.991076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:33.016093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:33.041104 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:33.058633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:33.069627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:33.084626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 16:57:35.612534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:35.617533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:35.621532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 16:57:35.625058 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:35] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:35] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 16:57:35] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:05:13.934544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:05:13.941105 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:05:13] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:05:13.944113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:05:13] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:05:14.006273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:05:14.011291 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:05:14] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:05:14.016312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:05:14] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:05:46.310372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:05:46.320372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:05:46.320372 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:05:46] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:05:46.336371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:05:46] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:05:46.347372 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:05:46] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:05:46.365692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:05:46] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:05:58.330900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:05:58.332917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:05:58.339900 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:05:58] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:05:58] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:05:58.891624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:05:58.893623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:05:58.896630 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:05:58] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:05:58] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:06:35.929747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:06:35.932269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:06:35.936284 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:06:35] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:06:35] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:06:36.782361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:06:36.788359 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:06:36] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:06:36.791342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:06:36] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:07:34.419736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:07:34.427281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:07:34.429281 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:07:34] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:07:34.433267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:07:34.437275 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:07:34] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:07:34.441283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:07:34] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:07:34] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:07:39.952700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:07:39.955701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:07:39.958698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:07:39.961701 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:07:39] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:07:39] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:07:40] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:08:03.437679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:08:03.437679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:08:03.446191 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:08:03] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:08:03] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:08:04.241423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:08:04.246449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:08:04.248434 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:08:04] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:08:04] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:09:19.512859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:09:19.521860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:09:19.522860 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:09:19] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:09:19] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:09:19.588072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:09:19.595068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:09:19.598052 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:09:19] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:09:19] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:09:24.903031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:09:24.905031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:09:24.910542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:09:24.915544 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:09:24] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:09:24] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:09:24] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:10:22.395386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:10:22.400372 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:10:22] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:10:22.412539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:10:22] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:10:22.480679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:10:22.484667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:10:22.487681 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:10:22] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:10:22] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:10:52.836257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:10:52.837256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:10:52.841254 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:10:52] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:10:52] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:10:53.210193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:10:53.214300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:10:53.218196 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:10:53] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:10:53] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:11:07.054794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:11:07.059794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:11:07.066318 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:11:07] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:11:07] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:11:07.164876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:11:07.173883 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:11:07] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:11:07.180897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:11:07] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:11:38.261053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:11:38.266067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:11:38.271049 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:11:38] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:11:38] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:11:38.850217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:11:38.853219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:11:38.856225 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:11:38] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:11:38] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:12:29.196756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:12:29.203271 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:12:29] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:12:29.208270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:12:29] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:12:29.232253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:12:29.239267 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:12:29] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:12:29.256268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:12:29] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:12:41.803377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:12:41.806374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:12:41.809397 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:12:41] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:12:41] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:12:42.591239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:12:42.596799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:12:42.599798 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:12:42] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:12:42] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:13:04.874287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:13:04.876286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:13:04.880357 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:13:04] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:13:04] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:13:05.801444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:13:05.806444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:13:05.808445 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:13:05] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:13:05] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:13:19.316252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:13:19.319259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:13:19.324257 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:13:19] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:13:19] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:13:20.203205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:13:20.207889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:13:20.209777 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:13:20] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:13:20] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:14:15.926909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:14:15.929909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:14:15.940457 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:14:15] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:14:15] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:14:16.824751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:14:16.829607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:14:16.830626 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:14:16] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:14:16] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:15:53.057596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:15:53.099618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:15:53.118618 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:15:53] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:15:53] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:15:58.354695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:15:58.365717 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:15:58] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:15:58.390232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:15:58] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:16:57.830522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:16:57.836527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:16:57.842597 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:16:57] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:16:57] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:16:57.865613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:16:57.868620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:16:57.874151 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:16:57] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:16:57] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:17:30.025720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:17:30.027749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:17:30.032717 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:17:30] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:17:30] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:17:30.270552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:17:30.278567 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:17:30] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:17:30.281567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:17:30] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:19:13.124261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:19:13.128268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:19:13.132899 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:19:13] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:19:13] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:19:13.534415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:19:13.541423 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:19:13] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:19:13.545431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:19:13] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:19:23.365824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:19:23.374824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:19:23.381823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:19:23.391823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:19:23] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:19:23.427824 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:19:23] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:19:23] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:19:23] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:20:58.526497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:20:58.529496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:20:58.532497 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:20:58] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:20:58] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:20:58.563610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:20:58.570502 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:root:2025-11-01 17:20:58.571503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:20:58] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:20:58] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:21:05.889509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:21:05.895070 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:21:05] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:21:05.898087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:21:05.909087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:21:05] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:21:05.916087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:21:05.918072 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:21:05] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:21:05] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\GlobalVariable.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 17:24:04.695580 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 17:24:04.695580 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 17:24:04.696579 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 17:24:04.696579 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 17:24:04.696579 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 17:26:36.780568 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 17:26:36.780568 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 17:26:36.780568 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 17:26:36.780568 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 17:26:36.780568 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 17:26:59.180166 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 17:26:59.180166 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 17:26:59.180166 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 17:26:59.180166 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 17:26:59.181170 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 17:27:23.355725 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 17:27:23.355725 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 17:27:23.355725 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 17:27:23.356711 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 17:27:23.356711 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 17:27:41.083744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:27:41.089744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:27:41.090746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:27:41.093745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:27:41.105815 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:27:41] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:27:41] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:27:41] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:27:41] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 17:28:23.932863 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 17:28:23.932863 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 17:28:23.932863 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 17:28:23.932863 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 17:28:23.932863 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 17:28:24.002824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:28:24.004794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:28:24.006797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:28:24.007796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:28:24.014304 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:28:24] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:28:24] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:28:24] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:28:24] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 17:28:53.038309 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 17:28:53.038309 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 17:28:53.038309 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 17:28:53.038309 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 17:28:53.038309 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 17:28:53.253523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:28:53.257504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:28:53.265517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:28:53.271517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:28:53.278086 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:28:53] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:28:53.282073 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:28:53] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:28:53] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:28:53] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:03.720239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:03.728240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:03.733239 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:03] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:03.737244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:03] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.055710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.062711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.069712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.075710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.084711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.091738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:04.099748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:04.103729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:04.109312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:04.117852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:04.125852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.673195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.677225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.689201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.701196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:04.703194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.706196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:04.709212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.712194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.716196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.723195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.727196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.731196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:04.733196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.748238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:04.750764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.755771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.758799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:04.762770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.767774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.777770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.783800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.795932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:29:04.797560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.805152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:29:04.809707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:29:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 17:30:06.357680 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 17:30:06.357680 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 17:30:06.357680 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 17:30:06.358680 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 17:30:06.358680 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 17:30:06.593096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:06.599095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:06.604098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:06.608110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:06.617112 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:06] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:06] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:06] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:06.644628 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:06] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 17:30:41.406906 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 17:30:41.406906 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 17:30:41.406906 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 17:30:41.406906 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 17:30:41.406906 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 17:30:41.640590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.646590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.651488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.664838 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.817858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.819860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.822859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.829857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.834865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.841865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.841865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.849230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.861303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.863322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.870303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.871303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.875322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.882334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.892338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.895302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.900303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.911303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.919304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.929311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.936302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.940306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.951307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.952307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.960819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.964834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.964834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.975818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:41.986826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.993868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:41.997818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:42.000836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:42.009818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:42.012818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:42.021817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:42.029825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.590723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.595724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.604722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.606763 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.836409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.838409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.842414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.846415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.855423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.860720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.865735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.881281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.886286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.891302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.894281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.902314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.906281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.910308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.921280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.927280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.934281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.941279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.947282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.949306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.959307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.962286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.971444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.975443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.982477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.985474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:45.988444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.993465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:45.998443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:46.008461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:46.014444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:46.016469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:46.026460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:46.032445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:30:46.034443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:30:46.037442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:30:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:36.478021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:36.482021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:36.487004 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:36] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:36] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:36.580723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:36.587760 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:36] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:36.598760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:36] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:39.755258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:39.765273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:39.770275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:39.776271 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:39] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:39] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:39.810314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.072385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.080385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.092424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.099449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.111440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.119937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.129525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.134514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.141525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.153513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.160525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.484862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.492844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.506853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.516862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.524395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.533400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.539935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.548515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.553515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.559514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.565504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.616250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.621272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.627302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.632301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.634300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.640300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.645321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.647303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.650301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.656300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.674301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.681301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:34:40.684300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:34:40.691301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:34:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:06.005627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:06.010644 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:06] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:06.170163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:06.178162 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:06] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.339124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:09.345124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:09.356125 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.508665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.513665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.520665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.527686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.537749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.546749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.554783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.571772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.584265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.599782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.611781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:09.623804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:09.631802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:09.641344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:09.646428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:09.651412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:09.658968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.112812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.116836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.129844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.137355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.142360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.145871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.155388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:10.157384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.162893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:10.165895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.168894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.171910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.181894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.186897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.190896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.198895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.201899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:10.205895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:10.209894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:14.265970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:14.268978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:14.271976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:14.276976 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:14] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:14] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:14] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.035265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:20.038263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:20.043262 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.128291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:20.130295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.134293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.137294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.141294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.142292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.146298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.152300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.159801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:20.163309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.169410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.173917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.177916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.180947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.191917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:20.195916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.203917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.207922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.213922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:20.215923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.226991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.232994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.242990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:20.245990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.253996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.259993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:20.264997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.269991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.282990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.288991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:20.292994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.297023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.307001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.312997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.317999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:20.324976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:23.627313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:23.629310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:23.635313 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:23] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:23] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:28.020151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:28] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.005809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.007808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.012810 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.185534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.188538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.191539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.193534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.198535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.201535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.206536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.208538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.211537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.220533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.222533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.230534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.232534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.236540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.240533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.249533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.255534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.259540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.262563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.273544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.276055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.281055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.283053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.286056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.296055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.301053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.304055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.307056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.319054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.320053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.323061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.336564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.338571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.342569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:32.348568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:32.350569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:39.706302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:39.710296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:39.715311 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:39] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:39] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:39.788410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:39.793410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:39.796409 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:39] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:39] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:39.924115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.078204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:40.084231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.090217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.098217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.107218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.120245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:40.125742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.129297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.145826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.153826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.160827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.167813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.176852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.190938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:40.198504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.206512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.213513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:40.217518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.225518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.240056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.247041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.253055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:40.258057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.271056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.278055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:40.279055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:40.283044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.289063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.298055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.309055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:40.312070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.323080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:40.326080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:35:40.342630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:40.343629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:40.349183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 17:35:55.409417 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 17:35:55.409417 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 17:35:55.409417 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 17:35:55.409417 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 17:35:55.409417 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 17:35:59.813338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:59.820338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:59.827340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:35:59.850366 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:59] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:35:59] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.186076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.195081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.203076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.215097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.227609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.240609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.250636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.261190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.267188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.275238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.287229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.661034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.672562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.685548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.687546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.690546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.694546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.698548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.701547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.707557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.709556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.715572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.720557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.726068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.726068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.738066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.742066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.744101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.749075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.751073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.759091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.766646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.774694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.778694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:00.781693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:00.786693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ent_alert_messages.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-01 17:36:24.696485 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-01 17:36:24.696485 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-01 17:36:24.697484 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-01 17:36:24.697484 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-01 17:36:24.697484 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-01 17:36:24.981175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:24.985059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:24.989054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:25.004084 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.035633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.171113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:25.176108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.182121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.187107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.196131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.210688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.218237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:25.219236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.233252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:25.235236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.241238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.246270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:25.248281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.253264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.264837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.267837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.274854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.280433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.282394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.293410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:25.297437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.302421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.305422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.313001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.317985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:25.319990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.323997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.328990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.331993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.335541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.346545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:25.349563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:25.352546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:25.363562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:25.365562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:25.366562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:37.764704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:37.767703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:37.769704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:37.775703 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:37] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:37] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:37.793715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:37] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:37] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:37.962887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:37.964893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:37.968895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:37.970892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:37.978899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:37.980897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:37.983898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:37.989909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.003892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.011934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.027255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.072256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:38.097254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.103238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.111266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.114282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.118267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.121265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.125798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.127815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:38.131799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.142800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.144817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.148816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.157799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.161814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:38.166801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:38.168825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.174802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.182802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:38.187818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:38.189815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.196815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.206817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:38.214841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:38.215842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:45.494217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:45.499235 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:45.507218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:45.536353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:45] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:45.544347 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 16:10:36.006508', 'token': 'IK7hOrFHwyC6ZzfB4pPEJUj9n7R4X1Pn9A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:45] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:45] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:36:45.654527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:36:45.660524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:45] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:45] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:36:45] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:00.077603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:00.080620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:00.082619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:00] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:00] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.210534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.214548 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.235536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.239080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.240083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.245051 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:37:08.214548', 'token': 'A_LEwCN5gEBrEpHcOTdHZeECJ_0ut9DK8Q'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.263050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.335571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.337076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.342592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.349102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.351101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.358102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.362119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.365117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.370106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.386658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.391657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.395658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.401659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.404659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.409663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.411664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.418663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.435177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.440405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.444404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.453404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.456406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.460403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.474404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.475406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.481427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.485407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.490675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.502684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.505684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.509683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.515190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.526221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:08.530221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.536221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:08.541249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:12.442644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:12.444651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:12.446650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:12] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:12] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.766598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:16.775628 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.800170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:16.801171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:16.805683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:16.808719 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:37:16.775628', 'token': '9KhvoRZIyeITk2mfwFmNi7-_2P1VKBxIbA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.829038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.887271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:16.890270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:16.892268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.897791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.901777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.905781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:16.907781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.913781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.918290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.943863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.948862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.959845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:16.965861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.970878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:16.973890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.986400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:16.992408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:16.993424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.000421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.014434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.019437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:17.027561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.030543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.048562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:17.057562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.064562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.072550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:17.076565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.080552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.085549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.095065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.101063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:17.103098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.114080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:17.117081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:17.122082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:22.235189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:22.239187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:22.243187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:22] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:22] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:24.409203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:24.412202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:24.414202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:24] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:24] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:37:33.126113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:33.130104 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:37:33.133104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:33] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:37:33] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:06.900997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:06.910006 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:06] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:10.752930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:10.754920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:10.757950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:10.763478 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:38:06.911005', 'token': 'wTi7liPZHtjbGM9CMqI6Bcn7jG2dxV3F2A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:10] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:10] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:10] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:11.001286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:11.138267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:11.452559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:11.455123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:11.461109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:11.462624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:11.468668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:11.472672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:11.766013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:11.769991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:11.779704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:11.786735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:11.787751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:11.796915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:12.092288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:12.097300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:12.102374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:12.108368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:12.114375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:12.117382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:12.422690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:12.426675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:12.428678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:12.438242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:12.440224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:12.455792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:12.749543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:12.756577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:12.764563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:12.768578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:12.772136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:12.787130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:13.075406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:13.079378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:13.089402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:13.101899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:13.102929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:17.882890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:17.886890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:17.888889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:17.894903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:17.901942 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:38:06.911005', 'token': 'wTi7liPZHtjbGM9CMqI6Bcn7jG2dxV3F2A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:17] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:17] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:17] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:17] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:18.147254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:18] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:18.304493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:18] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:23.794671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:23] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:27.608992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:27] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:28.729728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:28] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:38.154117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:38.157116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:38.159133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:38.165118 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:38:06.911005', 'token': 'wTi7liPZHtjbGM9CMqI6Bcn7jG2dxV3F2A'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:38] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:38] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:38] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:38.402163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:38] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:38.495960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:38.777682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:38.779696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:38.783687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:38.787683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:38.790691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:38.805867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:39.107329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:39.110310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:39.114315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:39.116310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:39.121327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:39.123316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:39.419765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:39.423766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:39.432806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:39.438793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:39.449272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:39.457272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:39.731898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:39.748619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:39.753611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:39.754611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:39.770595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:39.775030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:40.045428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:40.077003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:40.082010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:40.095009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:40.098011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:40.104557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:40.371771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:40.403586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:40.412487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:40.413484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:40.424958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:48.296193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:48.299192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:48.301194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:48] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:48] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:49.850577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:49.859593 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:49] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:50.200926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:50.204931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:50.207925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:50.215916 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:38:49.859593', 'token': 'nlA5_HXq6OCo_SuPNeKT6p9xATxQZFbaiA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:50] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:50] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:50] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:50.448852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:50] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:50.567573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:50.884782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:50.888784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:50.892780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:50.896781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:50.902779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:50.906778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:50] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:51.212531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:51.218502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:51.221504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:51.232535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:51.238501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:51.241528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:51.538158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:51.544149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:51.550151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:51.557157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:51.559167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:51.564196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:51.867976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:51.868979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:51.875987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:51.879987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:51.896546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:51.894536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:52.194180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:52.197191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:52.204190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:52.209203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:52.212201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:52.219187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:52.509753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:52.514291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:52.523317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:52.538341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:52.542359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:38:53.290097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:53.291660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:38:53.295660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:53] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:38:53] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:17.883359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:17.888362 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:17] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:18.212013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:18.214011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:18.217011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:18.219521 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:39:17.888362', 'token': 'qx7SPVTvFxslLHWAhajZnj4ys2iPI-aBrw'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:18] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:18] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:18] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:18.467694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:18] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:18.628081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:18] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:18.941728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:18.942754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:18.948838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:18.951860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:18] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:18.960731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:18] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:18.969779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:18] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:18] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:19.269544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:19.274433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:19.275427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:19.283431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:19.285427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:19.291557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:19.595352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:19.600363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:19.603380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:19.605363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:19.615404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:19.617440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:19.913928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:19.917909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:19.922442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:19.927459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:19.947481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:19.953463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:20.225999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:20.235555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:20.238549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:20.258549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:20.264566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:20.268567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:20.537956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:20.553093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:20.561085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:20.569071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:20.573085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:22.589825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:22.591838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:22.594822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:22.601147 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:39:17.888362', 'token': 'qx7SPVTvFxslLHWAhajZnj4ys2iPI-aBrw'} +INFO:root:2025-11-01 17:39:22.602146 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:39:17.888362', 'token': 'qx7SPVTvFxslLHWAhajZnj4ys2iPI-aBrw'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:22] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:22] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:22] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:22.848410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:22.854389 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:39:17.888362', 'token': 'qx7SPVTvFxslLHWAhajZnj4ys2iPI-aBrw'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:22] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:36.276864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:36] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:36.592350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:36.595358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:36.599355 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:39:17.888362', 'token': 'qx7SPVTvFxslLHWAhajZnj4ys2iPI-aBrw'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:36] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:36] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:36.751002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:36.755003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:36.759002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:36.767531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:36.917075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:36.923059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:37.081731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:37.085226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:37.096241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:37.097223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:37.238491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:37.241506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:37.412309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:37.413314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:37.414830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:37.415878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:37.553366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:37.556364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:37.737648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:37.754637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:37.755635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:37.759184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:37.882282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:37.885811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:38.067019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:38.080641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:38.087697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:38.092727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:38.205565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:38.210381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:38.396990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:38.399009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:38.415335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:38.419887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:38.534649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:38.535651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:38.720304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:38] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:39.145681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:39.149317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:39.151267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:39.152311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:39.153269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:39.158414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:39.489800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:39.490801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:39.493840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:39.495801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:39.503113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:39.515967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:39.827789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:39.830794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:39.834068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:39.845826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:39.852357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:39.856869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:40.142727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:40.158409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:40.161756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:40.162946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:40.177553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:40.181057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:40.470825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:40.479402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:40.481410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:40.492866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:40.495863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:40.500403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:40.781256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:40.798445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:40.804466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:40.829464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:40.833462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:40.840062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:48.984870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:48.988905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:48.991901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:49] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:49] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:51.128125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:51] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:39:51.434736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:39:51.436733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:39:51] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:10.108641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:10.122692 : Ajout Token OK, _id = 68f23fd115d6ff1cb9f4ec72 +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:10] "POST /myclass/api/Ent_Student_login/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:10.803012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:10] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:11.113999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:11.117011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:11.120554 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:40:10.122692', 'token': 'Xe3Hh3WL8KfGnRdGA1Y10nvRWD00i-xkHA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:11.208469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:11.209469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:11.215469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:11.219466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:11.428922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:11.433463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:11.522726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:11.541847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:11.546360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:11.549361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:11.741657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:11.747752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:11.851714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:11.856232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:11.870393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:11.874922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:12.053982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:12.057997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:12.178599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:12.179598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:12.187396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:12.188662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:12.365618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:12.368618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:12.491799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:12.492793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:12.500775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:12.502784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:12.678707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:12.683325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:12.802024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:12.803534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:12.815664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:12.817654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:13.005713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:13.006706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:13.129199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:13] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:13.676862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:13.677868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:13.678882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:13.680393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:13.685939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:13.687937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:13.991653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.006654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.011654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:14.015671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.019139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:14.023184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.319758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:14.324461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.338632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:14.340632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.346179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:14.348176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.643935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:14.645401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.652637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.656807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:14.656807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:14.657853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.957978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:14.962530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.968516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:14.975585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.980561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:14.990620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:15.269663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:15.285401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:15.292089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:15.301730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:15.307298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:15.315879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:31.675854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:31.678326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:31.682798 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:40:10.122692', 'token': 'Xe3Hh3WL8KfGnRdGA1Y10nvRWD00i-xkHA'} +INFO:root:2025-11-01 17:40:31.684208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:31] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:31.689224 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:40:10.122692', 'token': 'Xe3Hh3WL8KfGnRdGA1Y10nvRWD00i-xkHA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:31] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:31] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:31.937916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:31.941462 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:40:10.122692', 'token': 'Xe3Hh3WL8KfGnRdGA1Y10nvRWD00i-xkHA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:31] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:38.808870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:38] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:39.124889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:39.126889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:39.133417 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:40:10.122692', 'token': 'Xe3Hh3WL8KfGnRdGA1Y10nvRWD00i-xkHA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:39.219126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:39.222667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:39.224660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:39.230801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:39.451444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:39.451444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:39.529009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:39.541563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:39.544088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:39.549082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:39.765933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:39.768917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:39.845348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:39.867549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:39.874442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:39.880995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:39] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:40.084630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:40.085629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:40.176988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:40.191579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:40.191579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:40.197120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:40.409028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:40.410533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:40.502051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:40.503052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:40.509450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:40.510454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:40.720827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:40.724988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:40.815228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:40.819194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:40.821702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:40.835331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:41.035091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:41.040596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:41.145445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:41.547668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:41.548685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:41.553686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:41.560729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:41.564734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:41.569735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:41.876854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:41.879836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:41.881853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:41.885837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:41.891836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:41.903837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:41] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:42.203744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:42.204741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:42.218793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:42.224983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:42.228964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:42.232496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:42.537497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:42.540497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:42.544070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:42.558694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:42.560711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:42.565990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:42.860727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:42.866756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:42.867781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:42.872787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:42.874888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:42.879870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:42] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:43.176339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:43.179339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:43.181890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:43.193873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:43.197871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:43.199872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:43] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:43] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:44.244696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:44.246678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:44.256685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:44.263750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:44] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:44.292413 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:40:10.122692', 'token': 'Xe3Hh3WL8KfGnRdGA1Y10nvRWD00i-xkHA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:44] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:44] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:44] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:44.507031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:44] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:44.678180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:44] "POST /myclass/api/Get_Ent_Student_List_Session_Promotion/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:47.480508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:47] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:52.226500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:52.234363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:52.240870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:52.242892 : {'_id': ObjectId('6906220dd3d7adc37cb3fc93'), 'apprenant_id': '66432a8b41efccf7bb038fe4', 'type': 'student', 'email': 'mysy1000formation+02@gmail.com', 'partner_owner_recid': '43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89', 'active': '1', 'adr_city': '', 'adr_country': '', 'adr_street': '', 'civilite': 'neutre', 'code_postal': '', 'creation_by': '65f04934549224c14c3f6039', 'creation_date': '2025-11-01 16:06:53.957236', 'firstconnexion': '0', 'locked': '0', 'mob_phone': '023456789', 'nom': 'ccc', 'notification_send': '0', 'prenom': 'sss', 'pwd': 'Sdj3X7hCbFo', 'lastconnexion': '2025-11-01 17:40:10.122692', 'token': 'Xe3Hh3WL8KfGnRdGA1Y10nvRWD00i-xkHA'} +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:52] "POST /myclass/api/get_user_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:52] "POST /myclass/api/Get_List_Ent_Alert_Message/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:52] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:52.495559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:52] "POST /myclass/api/Get_Ent_Student_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:52.671702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:52.977472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:52.980451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:52.983482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:52] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:52.990449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:52.993449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:52.996449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:52] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:53.308221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:53.311760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:53.318288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:53.321840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:53.329818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:53.337954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:53.634091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:53.635089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:53.643774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:53.646788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:53.650770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:53.678197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:53.958243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:53.961756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:53.965774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:53.969308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:53.975150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:53.988180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:53] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:54.271862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:54.275862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:54.286960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:54.295136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:54.296137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:54.301669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:54.582455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:54.586004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:54.599053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:54.614591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:54.624841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:56.086848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:56.088848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:56.089847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:56.095849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-01 17:40:56.101849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:56] "POST /myclass/api/get_Ent_Student_Given_Class_From_Class_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-01 17:40:56.114412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:56] "POST /myclass/api/Get_Ent_Student_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:56] "POST /myclass/api/Get_Ent_Student_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:56] "POST /myclass/api/Get_Ent_Student_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:56] "POST /myclass/api/Get_Ent_Student_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Nov/2025 17:40:56] "POST /myclass/api/Get_Ent_Student_Participant_Notes/ HTTP/1.1" 200 - +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 10:11:11.972258 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 10:11:11.972258 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 10:11:11.973259 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 10:11:11.973259 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 10:11:11.973259 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 10:11:48.269140 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 10:11:48.270146 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 10:11:48.270146 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 10:11:48.270146 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 10:11:48.270146 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-02 10:44:45.823799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:45] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-11-02 10:44:47.556250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 10:44:47.559251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 10:44:47.562251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 10:44:47.567255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 10:44:47.570254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:47] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-02 10:44:47.600260 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 10:44:47.609257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 10:44:47.611257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 10:44:47.617798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 10:44:47.622801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:47] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 10:44:47.629800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 10:44:47.636798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:47] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:47] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:47] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:47] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-02 10:44:52.528020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:52] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-11-02 10:44:52.531977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:52] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 10:44:59.107417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:44:59] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 10:45:01.680730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 10:45:01.684722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:45:01] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:45:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-02 10:45:38.394809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 10:45:38] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 10:52:32.917617 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 10:52:32.917617 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 10:52:32.917617 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 10:52:32.918617 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 10:52:32.918617 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 10:53:20.774961 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 10:53:20.774961 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 10:53:20.774961 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 10:53:20.775961 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 10:53:20.775961 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 10:53:46.091726 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 10:53:46.092723 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 10:53:46.092723 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 10:53:46.092723 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 10:53:46.092723 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 10:55:55.528647 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 10:55:55.528647 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 10:55:55.529650 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 10:55:55.529650 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 10:55:55.529650 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 10:57:36.233435 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 10:57:36.233435 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 10:57:36.233435 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 10:57:36.233435 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 10:57:36.233435 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:06:30.364681 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:06:30.364681 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:06:30.365684 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:06:30.365684 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:06:30.365684 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:07:19.188355 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:07:19.189352 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:07:19.189352 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:07:19.189352 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:07:19.189352 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:10:12.817956 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:10:12.817956 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:10:12.817956 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:10:12.817956 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:10:12.817956 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:10:50.639028 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:10:50.640034 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:10:50.640034 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:10:50.640034 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:10:50.640034 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:14:54.137584 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:14:54.137584 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:14:54.137584 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:14:54.137584 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:14:54.137584 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:15:19.290150 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:15:19.290150 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:15:19.290150 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:15:19.290150 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:15:19.290150 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:15:58.299530 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:15:58.299530 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:15:58.299530 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:15:58.299530 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:15:58.299530 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:16:27.556482 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:16:27.556482 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:16:27.556482 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:16:27.556482 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:16:27.556482 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:16:39.957477 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:16:39.957477 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:16:39.957477 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:16:39.957477 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:16:39.957477 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:21:06.478809 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:21:06.478809 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:21:06.479794 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:21:06.479794 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:21:06.479794 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:21:49.757036 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:21:49.757036 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:21:49.757036 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:21:49.757036 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:21:49.757036 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:24:16.696827 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:24:16.696827 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:24:16.696827 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:24:16.696827 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:24:16.696827 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:25:09.743829 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:25:09.743829 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:25:09.743829 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:25:09.743829 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:25:09.744806 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:32:02.086772 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:32:02.086772 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:32:02.086772 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:32:02.086772 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:32:02.086772 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-02 11:34:54.446952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:34:54.448500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:34:54.452499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:34:54.456500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:34:54.459148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:34:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:34:54] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:34:54.487593 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:34:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:34:54.489596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:34:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:34:54.491623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:34:54.495627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:34:54.499618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:34:54.506611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:34:54] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:34:54.513594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:34:54] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:34:54] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:34:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:34:54] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:34:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:34:54] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:00.642136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:01.556447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:01.559447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:01.561446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:01.564447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:01.566447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:01.573479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:01.587475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:01.592987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:01.596985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:01.602985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:01.607985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:01.614992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:01.619990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:01.747616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:01.750616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:01.753129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:04.684198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:04.687198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:04.690198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:04.697229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:04.703201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:04.711204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:04.726205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:04.731198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:04] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:04] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:04.743208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:04.748717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:04.751718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:04.758052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:04] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:07.700799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:07.704800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:07.708799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:07.713801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:07.718801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:07.725801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:07.730800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:07] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:11.455615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:11.456615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:11.460630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:11.462616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:11.470183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:11] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:11.479738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:11] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:11] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:11] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:11] "POST /myclass/api/Get_List_Specific_Survey_Internal_Code/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:15.186846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:35:15.190851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:15] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:15] "POST /myclass/api/Get_Given_Class_List_Default_Documents_For_Given_Type_Doc/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:16.535126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:16] "POST /myclass/api/Init_Survey_Tab_For_All_Session_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:35:16.644597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:35:16] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\survey_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:40:08.505520 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:40:08.505520 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:40:08.505520 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:40:08.505520 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:40:08.505520 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\survey_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:45:17.990947 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:45:17.991948 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:45:17.991948 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:45:17.991948 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:45:17.991948 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-02 11:45:32.656949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:45:32.663935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:45:32.668934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:45:32.672935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:45:32.675958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:45:32.680987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:45:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:45:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:45:32] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:45:32] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:45:32] "POST /myclass/api/Get_List_Specific_Survey_Internal_Code/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:45:32] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:46:06.896667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:46:06.900473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:46:06.906489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 11:46:06.914518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:46:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:46:06.925484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:46:06] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:46:06] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 11:46:06.933525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:46:06] "POST /myclass/api/Get_List_Specific_Survey_Internal_Code/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:46:06] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 11:46:06] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\survey_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 11:56:25.623973 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 11:56:25.623973 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 11:56:25.623973 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 11:56:25.624954 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 11:56:25.624954 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:07:00.069324 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:07:00.069324 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:07:00.069324 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:07:00.069324 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:07:00.070429 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:11:03.222503 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:11:03.222503 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:11:03.222503 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:11:03.222503 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:11:03.222503 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:12:54.968987 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:12:54.968987 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:12:54.968987 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:12:54.968987 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:12:54.968987 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:14:36.816077 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:14:36.816077 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:14:36.816077 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:14:36.817085 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:14:36.817085 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:16:38.863722 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:16:38.863722 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:16:38.863722 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:16:38.863722 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:16:38.863722 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:22:56.441548 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:22:56.441548 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:22:56.441548 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:22:56.441548 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:22:56.441548 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:34:08.311591 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:34:08.311591 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:34:08.311591 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:34:08.311591 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:34:08.311591 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:34:40.325624 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:34:40.325624 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:34:40.325624 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:34:40.326726 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:34:40.326726 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:38:23.049766 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:38:23.049766 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:38:23.049766 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:38:23.050779 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:38:23.050779 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:39:36.636412 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:39:36.637410 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:39:36.637410 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:39:36.637410 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:39:36.637410 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:41:44.712936 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:41:44.712936 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:41:44.712936 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:41:44.712936 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:41:44.712936 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:42:42.133782 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:42:42.133782 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:42:42.134788 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:42:42.134788 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:42:42.134788 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:43:32.845793 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:43:32.846796 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:43:32.846796 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:43:32.846796 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:43:32.846796 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 12:44:25.101004 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 12:44:25.101004 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 12:44:25.102009 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 12:44:25.102009 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 12:44:25.102009 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-02 12:49:06.090846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 12:49:06] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-11-02 12:49:06.094845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 12:49:06] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 12:49:12.790526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 12:49:12] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 12:49:14.620454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 12:49:14.624452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 12:49:14] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 12:49:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-02 12:50:09.366113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 12:50:09] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 13:05:17.795568 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 13:05:17.796569 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 13:05:17.802568 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 13:05:17.802568 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 13:05:17.802568 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-02 13:07:41.756435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:41.758440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:41.759440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:41.760440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:41.764659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:41.772660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:07:41.775658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:41] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:41] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:41] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:41] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:41] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:07:42.961887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:42.964395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:42.966396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:42.970397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:42.974409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:42.976398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:42.982395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:42] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:42] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:07:42.992397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:42] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:43] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:43] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:43] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:07:47.412200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:47] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:07:48.144617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:48.148618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:48.152620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:48.158651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:48.160616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:48.169645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:48] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:07:48.184134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:07:48.185130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:48] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:48] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:07:48.192132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:48] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:07:48.210159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:48] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:48] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:07:48.201129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:48] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:48] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:48] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:07:48] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:40.883133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:40.886132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:40.890134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:40.897132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:40.902135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:40] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:40] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:40.913134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:40] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:40] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:40.924134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:40.928136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:40] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:40] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:55.049044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:55.059200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:55.075199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:55.082200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:55.083206 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:55] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:55.098196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:55.100201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:55.103201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:55.107201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:55] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:55.114712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:55.119720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:55] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:55] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:55.126716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:55] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:55.131720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:55] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:55] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:57.595906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:57] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:58.359032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:58.364035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:58.367033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:58.371036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:58.376031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:58] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:58] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:58] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:58.392032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:58] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:58.396059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:58.400033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:58] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:58.409032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:58] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:09:58.414032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:09:58.423063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:58] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:58] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:58] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:58] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:09:58] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:10:03.826513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:10:03] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:10:07.781288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:10:07.785296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:10:07.786296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:10:07] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:10:07] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:10:07] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:11:07.577033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:07] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:11:09.620037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:09] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:11:10.713877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:11:10.717877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:11:10.720879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:11:10.724878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:11:10.726876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:11:10.739876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:10] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:11:10.751876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:10] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:10] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:10] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:10] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:11:10.765874 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:11:10.769876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:11:10.774876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:11:10.779875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:10] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:10] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:10] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:10] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:11:10] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:12:26.396690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:26] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:12:27.361433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:12:27.365708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:12:27.372717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:12:27.377715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:12:27.381715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:27] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:12:27.396229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:27] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:12:27.405229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:12:27.411229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:27] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:27] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:12:27.419229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:12:27.425227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:27] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:12:27.431226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:27] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:27] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:27] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:27] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:27] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:12:54.099385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:12:54.102904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:12:54.103903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:12:54.107904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:12:54.112904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:12:54.117417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:54] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:54] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:54] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:54] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:12:54.140419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:12:54.144418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:54] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:12:54] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:03.677160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:03.681161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:03.682670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:03.687680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:03.693678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:03.712678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:03] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:03] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:03] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:03] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:03.732677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:03] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:03] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:03.742707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:03.746676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:03] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:03.750677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:03.755677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:03] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:03] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:03] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:04.664611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:04.668611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:04.671634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:04.677634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:04.678616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:04.684123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:04] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:04.711160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:04] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:04] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:04] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:04] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:04.726129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:04.729265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:04] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:04.735273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:04.737274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:04] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:04] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:04] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:04] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:04] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:07.092376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:07.097394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:07.103459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:07.103459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:07.110975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:07] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:07.123591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:07] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:07.140950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:07] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:07.147944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:07] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:07] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:07.156945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:07] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:07] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:07.162987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:07.165944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:07] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:07] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:07] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:08.096718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:08.101843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:08.105858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:08.111377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:08.116952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:08] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:08.123991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:08] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:08] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:08.142029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:08] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:08.148486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:08] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:08] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:08.158029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:08] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:08.166028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:08.172045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:08] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:08] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:08] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:08] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:10.261170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:10.268172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:10.273173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:10] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:10.287208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:10.290178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:10.291206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:10.300176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:10] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:10.315741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:10.322744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:10] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:10] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:10] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:10.334101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:10] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:10] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:10] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:10.347110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:10] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:10] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:11.551132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:11.558142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:11.563142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:11.571143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:11] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:11.580168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:11] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:11] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:11.605238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:11] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:11] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:11] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:11.620313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:11.627877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:11.632882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:11] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:11.643916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:11] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:11.653468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:11] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:11] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:19.351657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:19.360659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:19.367707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:19.373658 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:19.376656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:19] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:19.408684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:19.416670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:19.423223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:19] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:19.429738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:19.433738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:19.439740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:19.441245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:19] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:19] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:19.450251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:19] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:19] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:19] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:21.460137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:21.464139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:21.469152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:21.473152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:21] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:21.489151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:21.494151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:21] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:21] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:21.501136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:21] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:21.514177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:21] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:21.520162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:21] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:21.526323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:21] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:21.532337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:21] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:21] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:21] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:21] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:22.457080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:22.461082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:22.463081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:22.468079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:22.476095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:22] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:22] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:22.501079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:22.502078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:22] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:22] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:22.514120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:22.518118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:22] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:22] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:22.525118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:22.530687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:22] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:22] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:22] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:22] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:22] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:42.872263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:42.874263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:42.878245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:42] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:42.881243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:42] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:42.886246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:42.888243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:42] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:42] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:42.892245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:42] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:42.897242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:42] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:44.772492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:44.776493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:44.778493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:44.783509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:44.787507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:44] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:44.802492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:44.806507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:44] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:44] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:44.826532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:44] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:44.831515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:44.833517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:44] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:44.841042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:44] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:44] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:44] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:44] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:44] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:45.577222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:45.580211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:45.585212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:45.590243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:45.595224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:45] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:45] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:45] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:45.611226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:45.616210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:13:45.620224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:45] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:45] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:45.628244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:45] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:45.633240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:45] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:13:45.638750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:45] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:45] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:13:45] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:00.752755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:00.756758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:00.759759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:00] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:00.764766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:00.767766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:00.772764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:00] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:00] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:00.775274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:00] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:00.777279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:00] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:00] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:02.387805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:02.391806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:02.395809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:02.401821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:02] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:02.414833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:02.419803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:02] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:02.438843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:02] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:02] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:02] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:02.446804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:02.447803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:02] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:02.451802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:02] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:02.459805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:02] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:02] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:02] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:03.376204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:03.381204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:03.385273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:03.388269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:03.395307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:03] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:03] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:03.411287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:03] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:03.415268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:03.419270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:03] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:03] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:03.433269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:03] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:03.439271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:03] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:03.447271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:03] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:03] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:03] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:49.730194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:49.731193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:49.734196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:49.736195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:49.739229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:49.741200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:49] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:49] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:49.747201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:49.750201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:49] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:49] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:49] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:49] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:53.862800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:53.870800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:53.876801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:53.880800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:53.886801 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:53] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:53.911315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:53.914319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:53.917316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:53.922316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:53.929317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:53.935318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:53] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:53] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:53] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:53.946317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:53] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:53.952316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:53] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:53] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:55.653386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:55.657388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:55.661389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:55.664386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:55] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:55.678385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:55] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:55.686445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:55] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:55.692385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:55] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:55.695385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:55.696386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:55.697386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:55] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:55.702498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:55] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:55] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:55] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:55] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:55] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:56.752492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:56.756490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:56.760493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:56.763489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:56.771589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:56.776139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:56] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:56] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:56] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:56] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:56.799207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:56] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:56.806789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:56] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:14:56.809770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:56.816770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:14:56.822281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:56] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:56] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:56] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:14:56] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:15:15.609422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:15.611422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:15.612423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:15.613421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:15.616422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:15:15.621421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:15] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:15] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:15:15.625422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:15] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:15] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:15:15.627420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:15] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:15] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:15:18.572322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:18.576322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:18.580332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:18.585328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:18.588348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:18] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:15:18.602835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:18.611097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:18] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:15:18.626058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:18] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:18] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:18] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:15:18.633059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:18] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:15:18.637058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:18.640060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:18] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:18] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:18] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:18] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:18] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:15:21.368001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:21.371999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:21.375548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:21.379563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:21.386566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:21.396563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:21] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:21] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:21] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:21] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:15:21.417547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:21] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:21] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:15:21.421547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:21.426550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:21.430550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:15:21.434546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:21] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:21] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:21] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:21] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:15:21] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:03.396803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:03.401313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:03.406314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:03.408314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:03.411314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:03] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:03.425315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:03.435315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:03] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:03] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:03] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:03] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:03.450312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:03] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:28.204431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:28] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:29.426111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:29.428110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:29.431111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:29.432112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:29.439114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:29.453111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:29] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:29.457110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:29] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:29.466109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:29] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:29] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:29] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:29] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:29] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:29.484113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:29.487113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:29.495033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:29] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:29] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:29] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:32.768489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:32] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:42.065513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:42.068515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:42] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:42.074513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:42.075513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:42.085512 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:42] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:42] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:42] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:42.131514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:42.135516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:42.138980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:42.143980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:42] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:42.146979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:42.153982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:42] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:42] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:42.160983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:42.162980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:42] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:42] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:42] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:44.700791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:44] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:45.582000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:45.586000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:45.588015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:45.592002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:45.602000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:45.607001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:45] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:45] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:45.619006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:45] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:45.625999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:45] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:45.634008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:45] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:45] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:45.637018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:16:45.642026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:45] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:45] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:45] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:45] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:16:49.185642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:16:49] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:36.820311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:36.825313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:36] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:36.836311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:36.842310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:36.846360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:36] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:36.856361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:36] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:36] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:36] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:36.872874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:39.542237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:39] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:40.300476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:40.302474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:40.307472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:40.308481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:40.320476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:40] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:40] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:40] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:40.338474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:40] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:40.343473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:40] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:40.348474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:40.352473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:40] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:40.356474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:40.362474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:40] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:40.366473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:40] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:40] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:40] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:40] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:40] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:47.458937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:47.461946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:47.467939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:47.471938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:47.477944 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:47] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:47.522464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:47.525466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:47.528465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:47.531467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:47.535465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:47] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:47.541468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:47] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:47] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:47.548463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:47] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:47] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:49.606404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:49] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:50.570315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:50.573310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:50.577327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:50.581323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:50.588322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:50.594867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:50.597838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:50] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:50] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:50] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:50.612354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:50.616866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:50] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:50] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:50] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:50.638522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:18:50.632515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:50] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:18:50.645519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:50] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:50] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:50] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:18:50] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:19:07.302786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:07] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:19:08.353397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:08.356399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:08.360401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:08.365399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:08] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:08] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:19:08.373405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:08.377409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:08] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:19:08.379405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:08] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:19:08.383917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:08.384923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:08.393934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:08.395939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:08.402917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:08] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:08] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:08] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:08] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:08] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:08] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:08] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:08] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:19:15.004868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:18.258555 : Export_To_Excel_Survey_with_filter_Tab_Survey_Id L'identifiant de la session de formation est invalide +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:18] "GET /myclass/api/Export_To_Excel_Survey_with_filter_Tab_Survey_Id/D-Cp8rGezsNZvjIoYAlRIyK7m08TuGHP3Q/6696627eddf257779f7cb04a/Evaluation%20formateur HTTP/1.1" 500 - +INFO:root:2025-11-02 13:19:38.779637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:38] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:19:40.298437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:40.303438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:40.308438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:40.314459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:40.321455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:40] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:19:40.327538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:40] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:19:40.339443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:40.344453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:40] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:40] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:40] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:19:40.356451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:40] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:19:40.359435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 13:19:40.364452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:40] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 13:19:40.384957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:40] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:40] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:40] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:40] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 13:19:40] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 13:21:38.941377 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 13:21:38.941377 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 13:21:38.942378 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 13:21:38.942378 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 13:21:38.942378 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 13:21:58.490885 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 13:21:58.490885 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 13:21:58.490885 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 13:21:58.490885 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 13:21:58.490885 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 13:22:45.502251 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 13:22:45.502251 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 13:22:45.503252 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 13:22:45.503252 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 13:22:45.503252 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 15:30:27.304617 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 15:30:27.304617 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 15:30:27.304617 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 15:30:27.304617 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 15:30:27.304617 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 15:31:00.964457 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 15:31:00.964457 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 15:31:00.964457 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 15:31:00.964457 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 15:31:00.964457 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 15:31:33.314569 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 15:31:33.314569 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 15:31:33.314569 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 15:31:33.314569 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 15:31:33.314569 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 15:31:47.042187 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 15:31:47.042187 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 15:31:47.042187 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 15:31:47.042187 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 15:31:47.042187 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-02 15:32:06.721430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 15:32:06] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_BureauVallee HTTP/1.1" 308 - +INFO:root:2025-11-02 15:32:06.734539 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf.document:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tBVD Fr (Bureau Vallée)
\n\t\t\t\t\t25 rue du Gros Caillou
\n\t\t\t\t\t78340 – Les Clayes-sous-Bois- France
\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_20251020\n\n\n\t\t\t\t
\n\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 31/10/2025 Date échéance : 15/11/2025
\n\n\t\t\t\t\n\t\t\t\t\tPériode : 01/10/2025 au 31/10/2025 \n\t\t\t\t\n\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\n\n\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\n\n\n\n\t\t\t\t\t
DescriptionQuantitéPrix unitaire (HT)Montant (HT)
Prestation de service
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
23 jours550 € HT12 650 € HT
Note de frais - Déplacement Bureau - PapetShow -\n\t\t\t\t\t\t\t\t15/10/2025 et 16/10/2025 - Voir justificatifs
\n\t\t\t\t\t\t\t\tDeplacement bureau <=> papet show (Aller / retour) : 16,8 km X 2 = 33,6 Km (https://www.impots.gouv.fr/simulateur-bareme-kilometrique) 52 € TTC
SNCF\n\t\t\t\t\t\t\t 182 € HT
Taxi\n\t\t\t\t\t\t\t 10,5 € HT
Repas\n\t\t\t\t\t\t\t 14,3 € HT
Repas\n\t\t\t\t\t\t\t 13,5 € HT
Repas\n\t\t\t\t\t\t\t 14,5 € HT
\n\t\t\t\t\n\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 12 650   €
    TVA : 2 530   €
    Montant TTC : 15 279  €
\n\n\t\t\t
\n\n\t\t\t\n\t\t\t\tRèglement : Virement bancaire \n\n\n\t\t\t

\n\t\t\t\t> Relevé d\'identité bancaire : MySy Training Technology, 2 place des magnolias, 77680, Roissy en\n\t\t\t\t\tbrie \n\t\t\t

\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\n\n\t\t\t\t\n\n\t\t\t
BanqueCode agenceNuméro de compteClé RIB
30087338560002128550340
\n\n\t\t\t

\n\t\t\t\t> Identification internationale\n\t\t\t

\n\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\n\n\n\n\t\t\t\t\n\n\t\t\t
IBANCode BIC
FR76 3008 7338 5600 0212 8550 340CMCIFRPP
\n\n\t\t\n\n\t\n\n\t
\n\t\n\n\t\tTermes et conditions
\n\n\t\tPas d\'escompte accordé pour paiement anticipé.
\n\t\tEn cas de non-paiement à la date d\'échéance, des pénalités calculées à trois fois le taux d\'intérêt légal\n\t\tseront appliquées.
\n\t\tTout retard de paiement entraînera une indemnité forfaitaire pour frais de recouvrement de 40€.
\n\n\t\n\n\n\t
\n\t\t\n\n\t\t\tMySy Training
\n\n\t\t\t\tMySy Training Technology (MTT), société par actions simplifiée au capital de 10 000 euros, dont le siège\n\t\t\t\tsocial est\n\t\t\t\tsitué 2, place des magnolias, 77680, Roissy en Brie, immatriculée au Registre du Commerce et des\n\t\t\t\tSociétés sous le numéro 917 500 860 R.C.S. Melun\n\t\t\t\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_20251020.pdf'> + path = '' + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf.files:FileObject './../img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__' +DEBUG:xhtml2pdf.files:URLParts: ParseResult(scheme='c', netloc='', path='\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__', params='', query='', fragment=''), 'c' +DEBUG:xhtml2pdf.tags:Parsing img tag, src: +DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf.files:Unrecognized scheme, assuming local file path +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 15:32:07] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_BureauVallee/ HTTP/1.1" 200 - +INFO:root:2025-11-02 15:33:20.042215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 15:33:20] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_BureauVallee HTTP/1.1" 308 - +INFO:root:2025-11-02 15:33:20.054310 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf.document:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tBVD Fr (Bureau Vallée)
\n\t\t\t\t\t25 rue du Gros Caillou
\n\t\t\t\t\t78340 – Les Clayes-sous-Bois- France
\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_20251020\n\n\n\t\t\t\t
\n\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 31/10/2025 Date échéance : 15/11/2025
\n\n\t\t\t\t\n\t\t\t\t\tPériode : 01/10/2025 au 31/10/2025 \n\t\t\t\t\n\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t
DescriptionQuantitéPrix unitaire (HT)Montant (HT)
Prestation de service
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
23 jours550 € HT12 650 € HT
Note de frais - Déplacement Bureau - PapetShow -\n\t\t\t\t\t\t\t\t15/10/2025 et 16/10/2025 - Voir justificatifs
\n\t\t\t\t\t\t\t\tDeplacement bureau <=> papet show (Aller / retour) : 16,8 km X 2 X 2 jrs = 67,2 Km\n\t\t\t\t\t\t\t\t\t(https://www.impots.gouv.fr/simulateur-bareme-kilometrique) 47 € TTC
Note de frais - Déplacement Bureau - Magasin Paris 5 -\n\t\t\t\t\t\t\t\t8/10/2025 - Voir justificatifs
\n\t\t\t\t\t\t\t\tDeplacement Paris 5 (Aller / retour) : 37,6 km X 2 = 75,2 Km\n\t\t\t\t\t\t\t\t\t(https://www.impots.gouv.fr/simulateur-bareme-kilometrique) 52 € TTC
\n\t\t\t\t\n\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 12 650   €
    TVA : 2 530   €
    Montant TTC : 15 279  €
\n\n\t\t\t
\n\n\t\t\t\n\t\t\t\tRèglement : Virement bancaire \n\n\n\t\t\t

\n\t\t\t\t> Relevé d\'identité bancaire : MySy Training Technology, 2 place des magnolias, 77680, Roissy en\n\t\t\t\t\tbrie \n\t\t\t

\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\n\n\t\t\t\t\n\n\t\t\t
BanqueCode agenceNuméro de compteClé RIB
30087338560002128550340
\n\n\t\t\t

\n\t\t\t\t> Identification internationale\n\t\t\t

\n\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\n\n\n\n\t\t\t\t\n\n\t\t\t
IBANCode BIC
FR76 3008 7338 5600 0212 8550 340CMCIFRPP
\n\n\t\t\n\n\t\n\n\t
\n\t\n\n\t\tTermes et conditions
\n\n\t\tPas d\'escompte accordé pour paiement anticipé.
\n\t\tEn cas de non-paiement à la date d\'échéance, des pénalités calculées à trois fois le taux d\'intérêt légal\n\t\tseront appliquées.
\n\t\tTout retard de paiement entraînera une indemnité forfaitaire pour frais de recouvrement de 40€.
\n\n\t\n\n\n\t
\n\t\t\n\n\t\t\tMySy Training
\n\n\t\t\tMySy Training Technology (MTT), société par actions simplifiée au capital de 10 000 euros, dont le siège\n\t\t\tsocial est\n\t\t\tsitué 2, place des magnolias, 77680, Roissy en Brie, immatriculée au Registre du Commerce et des\n\t\t\tSociétés sous le numéro 917 500 860 R.C.S. Melun\n\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_20251020.pdf'> + path = '' + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf.files:FileObject './../img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__' +DEBUG:xhtml2pdf.files:URLParts: ParseResult(scheme='c', netloc='', path='\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__', params='', query='', fragment=''), 'c' +DEBUG:xhtml2pdf.tags:Parsing img tag, src: +DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf.files:Unrecognized scheme, assuming local file path +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 15:33:20] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_BureauVallee/ HTTP/1.1" 200 - +INFO:root:2025-11-02 15:36:10.688951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 15:36:10] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_BureauVallee HTTP/1.1" 308 - +INFO:root:2025-11-02 15:36:10.700080 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf.document:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tBVD Fr (Bureau Vallée)
\n\t\t\t\t\t25 rue du Gros Caillou
\n\t\t\t\t\t78340 – Les Clayes-sous-Bois- France
\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_20251020\n\n\n\t\t\t\t
\n\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 31/10/2025 Date échéance : 15/11/2025
\n\n\t\t\t\t\n\t\t\t\t\tPériode : 01/10/2025 au 31/10/2025 \n\t\t\t\t\n\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t
DescriptionQuantitéPrix unitaire (HT)Montant (HT)
Prestation de service
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
23 jours550 € HT12 650 € HT
 
 
Notes de frais
Déplacement Bureau - PapetShow -\n\t\t\t\t\t\t\t\t15/10/2025 et 16/10/2025 - Voir justificatifs
\n\t\t\t\t\t\t\t\tDeplacement bureau <=> papet show (Aller / retour) : 16,8 km X 2 X 2 jrs = 67,2 Km\n\t\t\t\t\t\t\t\t\t(https://www.impots.gouv.fr/simulateur-bareme-kilometrique) 47 € TTC
 
Déplacement Bureau - Magasin Paris 5 -\n\t\t\t\t\t\t\t\t8/10/2025 - Voir justificatifs
\n\t\t\t\t\t\t\t\tDeplacement bureau <=> Magasin Paris 5 (Aller / retour) : 37,6 km X 2 = 75,2 Km\n\t\t\t\t\t\t\t\t(https://www.impots.gouv.fr/simulateur-bareme-kilometrique) 52 € TTC
\n\t\t\t\t\n\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 12 650   €
    TVA : 2 530   €
    Montant TTC : 15 279  €
\n\n\t\t\t
\n\n\t\t\t\n\t\t\t\tRèglement : Virement bancaire \n\n\n\t\t\t

\n\t\t\t\t> Relevé d\'identité bancaire : MySy Training Technology, 2 place des magnolias, 77680, Roissy en\n\t\t\t\t\tbrie \n\t\t\t

\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\n\n\t\t\t\t\n\n\t\t\t
BanqueCode agenceNuméro de compteClé RIB
30087338560002128550340
\n\n\t\t\t

\n\t\t\t\t> Identification internationale\n\t\t\t

\n\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\n\n\n\n\t\t\t\t\n\n\t\t\t
IBANCode BIC
FR76 3008 7338 5600 0212 8550 340CMCIFRPP
\n\n\t\t\n\n\t\n\n\t
\n\t\n\n\t\tTermes et conditions
\n\n\t\tPas d\'escompte accordé pour paiement anticipé.
\n\t\tEn cas de non-paiement à la date d\'échéance, des pénalités calculées à trois fois le taux d\'intérêt légal\n\t\tseront appliquées.
\n\t\tTout retard de paiement entraînera une indemnité forfaitaire pour frais de recouvrement de 40€.
\n\n\t\n\n\n\t
\n\t\t\n\n\t\t\tMySy Training
\n\n\t\t\tMySy Training Technology (MTT), société par actions simplifiée au capital de 10 000 euros, dont le siège\n\t\t\tsocial est\n\t\t\tsitué 2, place des magnolias, 77680, Roissy en Brie, immatriculée au Registre du Commerce et des\n\t\t\tSociétés sous le numéro 917 500 860 R.C.S. Melun\n\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_20251020.pdf'> + path = '' + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf.files:FileObject './../img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__' +DEBUG:xhtml2pdf.files:URLParts: ParseResult(scheme='c', netloc='', path='\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__', params='', query='', fragment=''), 'c' +DEBUG:xhtml2pdf.tags:Parsing img tag, src: +DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf.files:Unrecognized scheme, assuming local file path +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 15:36:11] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_BureauVallee/ HTTP/1.1" 200 - +INFO:root:2025-11-02 15:37:32.469274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 15:37:32] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_BureauVallee HTTP/1.1" 308 - +INFO:root:2025-11-02 15:37:32.477229 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf.document:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tBVD Fr (Bureau Vallée)
\n\t\t\t\t\t25 rue du Gros Caillou
\n\t\t\t\t\t78340 – Les Clayes-sous-Bois- France
\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_20251020\n\n\n\t\t\t\t
\n\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 31/10/2025 Date échéance : 15/11/2025
\n\n\t\t\t\t\n\t\t\t\t\tPériode : 01/10/2025 au 31/10/2025 \n\t\t\t\t\n\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t
DescriptionQuantitéPrix unitaire (HT)Montant (HT)
Prestation de service
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
23 jours550 € HT12 650 € HT
 
 
Notes de frais
Déplacement Bureau - PapetShow -\n\t\t\t\t\t\t\t\t15/10/2025 et 16/10/2025
\n\t\t\t\t\t\t\t\tDeplacement bureau <=> papet show (Aller / retour) : 16,8 km X 2 X 2 jrs = 67,2 Km\n\t\t\t\t\t\t\t\t\t(https://www.impots.gouv.fr/simulateur-bareme-kilometrique) 47 € TTC
 
Déplacement Bureau - Magasin Paris 5 -\n\t\t\t\t\t\t\t\t8/10/2025
\n\t\t\t\t\t\t\t\tDeplacement bureau <=> Magasin Paris 5 (Aller / retour) : 37,6 km X 2 = 75,2 Km\n\t\t\t\t\t\t\t\t(https://www.impots.gouv.fr/simulateur-bareme-kilometrique) 52 € TTC
\n\t\t\t\t\n\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 12 650   €
    TVA : 2 530   €
    Montant TTC : 15 279  €
\n\n\t\t\t
\n\n\t\t\t\n\t\t\t\tRèglement : Virement bancaire \n\n\n\t\t\t

\n\t\t\t\t> Relevé d\'identité bancaire : MySy Training Technology, 2 place des magnolias, 77680, Roissy en\n\t\t\t\t\tbrie \n\t\t\t

\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\n\n\t\t\t\t\n\n\t\t\t
BanqueCode agenceNuméro de compteClé RIB
30087338560002128550340
\n\n\t\t\t

\n\t\t\t\t> Identification internationale\n\t\t\t

\n\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\n\n\n\n\t\t\t\t\n\n\t\t\t
IBANCode BIC
FR76 3008 7338 5600 0212 8550 340CMCIFRPP
\n\n\t\t\n\n\t\n\n\t
\n\t\n\n\t\tTermes et conditions
\n\n\t\tPas d\'escompte accordé pour paiement anticipé.
\n\t\tEn cas de non-paiement à la date d\'échéance, des pénalités calculées à trois fois le taux d\'intérêt légal\n\t\tseront appliquées.
\n\t\tTout retard de paiement entraînera une indemnité forfaitaire pour frais de recouvrement de 40€.
\n\n\t\n\n\n\t
\n\t\t\n\n\t\t\tMySy Training
\n\n\t\t\tMySy Training Technology (MTT), société par actions simplifiée au capital de 10 000 euros, dont le siège\n\t\t\tsocial est\n\t\t\tsitué 2, place des magnolias, 77680, Roissy en Brie, immatriculée au Registre du Commerce et des\n\t\t\tSociétés sous le numéro 917 500 860 R.C.S. Melun\n\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_20251020.pdf'> + path = '' + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf.files:FileObject './../img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__' +DEBUG:xhtml2pdf.files:URLParts: ParseResult(scheme='c', netloc='', path='\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__', params='', query='', fragment=''), 'c' +DEBUG:xhtml2pdf.tags:Parsing img tag, src: +DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf.files:Unrecognized scheme, assuming local file path +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 15:37:32] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_BureauVallee/ HTTP/1.1" 200 - +INFO:root:2025-11-02 15:40:22.654129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 15:40:22] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_BureauVallee HTTP/1.1" 308 - +INFO:root:2025-11-02 15:40:22.658170 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf.document:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tBVD Fr (Bureau Vallée)
\n\t\t\t\t\t25 rue du Gros Caillou
\n\t\t\t\t\t78340 – Les Clayes-sous-Bois- France
\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_20251020\n\n\n\t\t\t\t
\n\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 31/10/2025 Date échéance : 15/11/2025
\n\n\t\t\t\t\n\t\t\t\t\tPériode : 01/10/2025 au 31/10/2025 \n\t\t\t\t\n\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t
DescriptionQuantitéPrix unitaire (HT)Montant (HT)
Prestation de service
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
23 jours550 € HT12 650 € HT
\n\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t
Déplacement Bureau - PapetShow -\n\t\t\t\t\t\t\t\t15/10/2025 et 16/10/2025
\n\t\t\t\t\t\t\t\tDeplacement bureau <=> papet show (Aller / retour) : 16,8 km X 2 X 2 jrs = 67,2 Km\n\t\t\t\t\t\t\t\t\t(https://www.impots.gouv.fr/simulateur-bareme-kilometrique) 47 € TTC
 
Déplacement Bureau - Magasin Paris 5 -\n\t\t\t\t\t\t\t\t8/10/2025
\n\t\t\t\t\t\t\t\tDeplacement bureau <=> Magasin Paris 5 (Aller / retour) : 37,6 km X 2 = 75,2 Km\n\t\t\t\t\t\t\t\t\t(https://www.impots.gouv.fr/simulateur-bareme-kilometrique) 52 € TTC
\n\t\t\t\t\n\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 12 650   €
    TVA : 2 530   €
    Montant TTC : 15 279  €
\n\n\t\t\t
\n\n\t\t\t\n\t\t\t\tRèglement : Virement bancaire \n\n\n\t\t\t

\n\t\t\t\t> Relevé d\'identité bancaire : MySy Training Technology, 2 place des magnolias, 77680, Roissy en\n\t\t\t\t\tbrie \n\t\t\t

\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\n\n\t\t\t\t\n\n\t\t\t
BanqueCode agenceNuméro de compteClé RIB
30087338560002128550340
\n\n\t\t\t

\n\t\t\t\t> Identification internationale\n\t\t\t

\n\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\n\n\n\n\t\t\t\t\n\n\t\t\t
IBANCode BIC
FR76 3008 7338 5600 0212 8550 340CMCIFRPP
\n\n\t\t\n\n\t\n\n\t
\n\t\n\n\t\tTermes et conditions
\n\n\t\tPas d\'escompte accordé pour paiement anticipé.
\n\t\tEn cas de non-paiement à la date d\'échéance, des pénalités calculées à trois fois le taux d\'intérêt légal\n\t\tseront appliquées.
\n\t\tTout retard de paiement entraînera une indemnité forfaitaire pour frais de recouvrement de 40€.
\n\n\t\n\n\n\t
\n\t\t\n\n\t\t\tMySy Training
\n\n\t\t\tMySy Training Technology (MTT), société par actions simplifiée au capital de 10 000 euros, dont le siège\n\t\t\tsocial est\n\t\t\tsitué 2, place des magnolias, 77680, Roissy en Brie, immatriculée au Registre du Commerce et des\n\t\t\tSociétés sous le numéro 917 500 860 R.C.S. Melun\n\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_20251020.pdf'> + path = '' + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf.files:FileObject './../img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__' +DEBUG:xhtml2pdf.files:URLParts: ParseResult(scheme='c', netloc='', path='\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__', params='', query='', fragment=''), 'c' +DEBUG:xhtml2pdf.tags:Parsing img tag, src: +DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf.files:Unrecognized scheme, assuming local file path +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 15:40:22] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_BureauVallee/ HTTP/1.1" 200 - +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 16:39:29.618550 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 16:39:29.618550 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 16:39:29.619553 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 16:39:29.619553 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 16:39:29.619553 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 16:40:23.467366 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 16:40:23.467366 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 16:40:23.468363 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 16:40:23.468363 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 16:40:23.468363 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-02 16:56:32.642897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:32] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:56:33.384062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:33.391064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:33.398457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:33.406456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:33.415454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:56:33.439493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:33.448463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:33] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:56:33.472620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:33.479621 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:56:33.491134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:33] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:33] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:56:33.509159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:33.519159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:33] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:33] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:56:48.865434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:48.869884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:48.871855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:48.876854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:56:48.886855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:48.887853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:48.903856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:48] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:56:48.917856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:56:48.924855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:48] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:56:48.928855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:48] "POST /myclass/api/Get_List_Partner_Produit_Service/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:49] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:56:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:57:06.585662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:06.586660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:06.590190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:06.593189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:06.598190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:06.605704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:57:06.609705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:57:06.613735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:06] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:57:06.618755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:06.624735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:06] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:57:06.635255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:06.639253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:06] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:06] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:57:10.007703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:10.011708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:10.014704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:10.016704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:10.021746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:10] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:57:10.029775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:10.031745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:10] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:10] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:10] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:57:13.857101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:13.861078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:57:24.584353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:24.586350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:24.589350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 16:57:24.592354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:24] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:57:24.599357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:57:24.603357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-02 16:57:24.610410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:24] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:24] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:24] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 16:57:24] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:31:00.845675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:31:00.847674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:31:00.851673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:31:00.862674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:31:00.864706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:31:00.885679 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:00] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:31:00.891677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:31:00.897232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:31:00.902232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:31:00.907232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:31:00.915233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:31:00.925236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:00] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:31:08.743304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:31:08.744326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:31:08.749340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:31:08.754856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:31:08.761855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:08] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:08] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:08] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:31:08.769411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:08] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:31:08.780414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:31:08.774412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:31:08.785923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:08] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:31:08.792984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:08] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:08] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:31:08.804986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:08] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:08] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:08] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:31:10.714310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:31:10] "POST /myclass/api/Get_List_Message_To_Mail_Queue/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:32:35.183954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:32:35.186954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:32:35.193955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:32:35.196959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:32:35.202955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:32:35.210954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:32:35] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:32:35] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:32:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:32:35.226969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:32:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:32:35.239493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:32:35.247510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:32:35] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:32:35] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:32:35] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:32:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:32:35.263494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:32:35] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:32:35.270493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:32:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:32:35] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:33:30.168021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:33:30] "POST /myclass/api/Get_List_Message_To_Mail_Queue/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:36:24.181280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:36:24.186274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:36:24.192268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:36:24.195261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:36:24] "POST /myclass/api/Get_Competence_Domaine/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:36:24.207298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:36:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:36:24] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:36:24.217291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:36:24.224651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:36:24.229698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:36:24] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:36:24.241686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:36:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:36:24] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:36:24] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:36:24.256695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:36:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:36:24.266215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:36:24] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:36:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:36:24] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:39:07.840986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:39:07] "POST /myclass/api/Get_List_Message_To_Mail_Queue/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:44:16.748079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:44:16] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:44:20.608300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:44:20] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:58:52.597726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:58:52] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:58:52.602605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:58:52] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:58:58.888391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:58:58] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:59:03.729104 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 17:59:03.735124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:59:03] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:59:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:59:17.138051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:59:17] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:59:58.482920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:59:58] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-11-02 17:59:58.540444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 17:59:58] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:00:00.625496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:00:00] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:12:13.653484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:12:13] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:12:13.706941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:12:13] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:12:16.008787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:12:16.013314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:12:16] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:12:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:12:18.076343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:12:18] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:12:24.811228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:12:24] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:12:24.871891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:12:24] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 18:14:37.899515 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 18:14:37.900515 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 18:14:37.900515 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 18:14:37.900515 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 18:14:37.900515 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 18:27:55.658721 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 18:27:55.658721 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 18:27:55.659717 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 18:27:55.659717 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 18:27:55.659717 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 18:30:56.541519 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 18:30:56.541519 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 18:30:56.541519 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 18:30:56.541519 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 18:30:56.542515 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-02 18:42:39.723976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:39.725992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:39.729047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:39.733064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:39.739047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:39.743047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:42:39.754048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:39] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:42:39.780048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:39.783049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:39.791048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:39.796049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:42:39.805048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:42:41.866758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:41.871760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:41.875758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:41.878760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:41] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:42:41.886757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:42:41.891759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:41.895758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:41] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:41] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:41] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:41] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:42:46.353528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:46.357496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:42:47.050145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:47.053704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:47.061818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:42:47.062818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:42:47.088818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:47] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:47] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:47] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:47] "POST /myclass/api/Get_List_Groupe_Inscrit_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:42:49.803218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:49] "POST /myclass/api/Get_List_Sequence_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:42:56.043717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:56] "POST /myclass/api/Update_Session_Sequence/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:42:56.076742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:42:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:43:10.276312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:43:10] "POST /myclass/api/Add_Session_Sequence_Return_New_Seq_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:43:10.304875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:43:10] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:43:17.163321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:43:17] "POST /myclass/api/Add_Session_Sequence_Return_New_Seq_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:43:17.191808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:43:17] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation_Sequence.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 18:47:06.839778 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 18:47:06.839778 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 18:47:06.839778 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 18:47:06.839778 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 18:47:06.839778 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation_Sequence.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 18:49:17.610575 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 18:49:17.610575 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 18:49:17.610575 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 18:49:17.610575 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 18:49:17.610575 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\model_planning_sequence_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-02 18:54:42.435781 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-02 18:54:42.435781 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-02 18:54:42.435781 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-02 18:54:42.435781 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-02 18:54:42.436781 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-02 18:55:24.094350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:55:24.098354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:55:24.103372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:55:24.106371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:55:24.111355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:55:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:55:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:55:24] "POST /myclass/api/Get_List_Groupe_Inscrit_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:55:24] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:55:24] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-02 18:57:13.996376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:57:14.000378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:57:14.002377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:57:14.008417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-02 18:57:14.011926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:57:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:57:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:57:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:57:14] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Nov/2025 18:57:14] "POST /myclass/api/Get_List_Groupe_Inscrit_With_Filter/ HTTP/1.1" 200 - +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 09:10:37.384911 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 09:10:37.384911 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 09:10:37.384911 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 09:10:37.385911 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 09:10:37.385911 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 09:10:56.387165 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 09:10:56.387165 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 09:10:56.387165 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 09:10:56.387165 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 09:10:56.387165 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 09:13:37.660329 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 09:13:37.660329 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 09:13:37.660329 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 09:13:37.660329 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 09:13:37.660329 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 09:15:30.056305 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 09:15:30.056305 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 09:15:30.056305 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 09:15:30.056305 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 09:15:30.056305 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 09:16:02.554565 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 09:16:02.555566 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 09:16:02.555566 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 09:16:02.555566 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 09:16:02.555566 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 09:24:00.127461 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 09:24:00.127461 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 09:24:00.127461 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 09:24:00.128462 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 09:24:00.128462 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 09:56:58.905207 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 09:56:58.905207 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 09:56:58.906210 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 09:56:58.906210 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 09:56:58.906210 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 09:57:17.126010 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 09:57:17.126010 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 09:57:17.126010 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 09:57:17.126010 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 09:57:17.127027 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 09:59:55.629536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:55] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-11-04 09:59:57.563098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:57.566098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:57.571099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:57.574613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:57.577619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:57] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-04 09:59:57.619616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:57.622613 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-04 09:59:57.625612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:57.633612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:57.640616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-11-04 09:59:57.649651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:57] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 09:59:57.663624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 09:59:58.967626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:58.969625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:58.974130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:58.977154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:58.982154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 09:59:58.989156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:58.994139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 09:59:59.000137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 09:59:59.010137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 09:59:59.024137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:59] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 09:59:59.031153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 09:59:59.041138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:59] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:59] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 09:59:59] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:00:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:00:02.123188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:00:02.127214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:00:02.130185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:00:02.136186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:00:02.139186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:00:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:00:02.143187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:00:02] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:00:02.149192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:00:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:00:02] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:00:02] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:00:02] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:00:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:02:49.119521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:02:49.128521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:02:49.137521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:02:49.149523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:02:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:02:49.159526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:02:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:02:49.177538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:02:49.190056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:02:49] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:02:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:02:49.206053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:02:49] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:02:49] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:02:49.218059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:02:49.225055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:02:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:02:49.237066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:02:49.241057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:02:49] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:02:49] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:02:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:02:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:02:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:11:57.685523 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:11:57.685523 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:11:57.685523 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:11:57.685523 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:11:57.685523 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:13:25.737720 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:13:25.738720 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:13:25.738720 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:13:25.738720 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:13:25.738720 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:14:03.173988 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:14:03.173988 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:14:03.174987 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:14:03.174987 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:14:03.174987 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:14:34.725117 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:14:34.725117 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:14:34.726145 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:14:34.726145 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:14:34.726145 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:16:03.641242 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:16:03.642239 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:16:03.642239 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:16:03.642239 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:16:03.642239 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:18:39.371651 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:18:39.371651 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:18:39.371651 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:18:39.372652 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:18:39.372652 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 10:24:34.878166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:24:34.884167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:24:34.889154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:24:34.898154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:24:34.908263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:24:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:24:34.920466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:24:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:24:34.934479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:24:34.944004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:24:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:24:34] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:24:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:24:34] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:24:34.978086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:24:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:24:34.986088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:24:34.996088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:24:34.998087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:24:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:24:35] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:24:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:24:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:24:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:26:15.091399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:26:15.095892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:26:15.100919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:26:15.104894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:26:15.112919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:26:15.119920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:15] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:26:15.134921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:26:15.138896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:26:15.144899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:15] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:26:15.153437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:26:15.158475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:26:15.175459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:15] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:26:48.301073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:26:48.306071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:26:48.311076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:26:48.313073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:26:48.320071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:48] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:26:48.330079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:48] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:26:48.340079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:48] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:26:48.341078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:26:48.345630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:48] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:48] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:26:48] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:27:01.182411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:27:01] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:27:01.295982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:27:01.296969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:27:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:27:01] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:27:06.252364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:27:06] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:28:01.907320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:28:01.913322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:28:01.919332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:28:01.921331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:28:01.930317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:28:01.932331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:28:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:28:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:28:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:28:01] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:28:01.952342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:28:01.955358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:28:01] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:28:01] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:28:01.969856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:28:01.975854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:28:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:28:01.982869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:28:01.988849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:28:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:28:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:28:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:28:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:28:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:40:58.773854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:40:58.776853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:40:58.781889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:40:58.785874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:40:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:40:58.792855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:40:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:40:58.797857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:40:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:40:58.804877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:40:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:40:58.813912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:40:58] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:40:58.824872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:40:58] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:40:58.832971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:40:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:40:58.840607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:40:58.849701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:40:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:40:58] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:40:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:40:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:41:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:44:52.975250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:44:52.983251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:44:52.989251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:44:52] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:44:52.999251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:44:53.003252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:44:53.011258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:44:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:44:53] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:44:53] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:44:53.024772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:44:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:44:53.031768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:44:53] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:44:53.043771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:44:53] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:44:53] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:44:53] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:44:57.804952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:44:57] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:44:59.298279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:44:59] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:45:31.278223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:45:31.281242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:45:31.285220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:45:31.290234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:45:31.297237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:45:31.306237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:31] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:45:31.311221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:45:31.317239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:31] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:31] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:45:31.326249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:31] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:45:31.329249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:45:31.335608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:45:31.339607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:31] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:31] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:45:34.149060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:34] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:45:44.455196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:45:46.965274 : Add_Update_UE_To_Session L'identifiant de la promotion / session est invalide +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:45:46] "POST /myclass/api/Add_Update_UE_To_Session/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:48:25.471314 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:48:25.472315 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:48:25.472315 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:48:25.472315 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:48:25.472315 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 10:48:58.615305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:48:58.619290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:48:58.623291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:48:58.627295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:48:58.632292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:48:58.637296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:48:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:48:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:48:58.657647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:48:58] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:48:58.664103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:48:58] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:48:58.676199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:48:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:48:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:48:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:48:58.689093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:48:58.694084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:48:58.700089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:48:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:48:58] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:48:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:48:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:49:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:49:10.931963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:49:10] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:50:02.363320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:02.368306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:02.373306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:02.380308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:02.387366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:50:02.399387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:02] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:50:02.406414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:02.408309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:02.413307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:02] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:50:02.426311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:02] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:50:02.433413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:02.442329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:02] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:02] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:50:20.968337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:20.971338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:20.975335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:20.981336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:20.985336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:50:20.995335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:20.999336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:21] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:21] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:50:21.005336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:21] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:50:21.014396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:21] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:21] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:21] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:50:23.845950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:23] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:50:25.661198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:25] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:50:30.568133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:50:32.855832 : Add_Update_UE_To_Session L'identifiant de la promotion / session est invalide +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:50:32] "POST /myclass/api/Add_Update_UE_To_Session/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:52:26.688456 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:52:26.688456 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:52:26.689455 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:52:26.689455 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:52:26.689455 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:53:14.488585 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:53:14.488585 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:53:14.488585 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:53:14.488585 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:53:14.488585 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 10:53:18.945252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:53:19] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:54:25.715504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:54:25.722502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:54:25.734533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:54:25.743519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:54:25.758044 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:25] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:54:26.214478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:54:26.220463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:54:26.225470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:54:26.235512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:54:26.241501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:54:26.256599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:54:26.262603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:26] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:54:26.271629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:26] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:54:26.280599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:26] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:26] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:54:26.289598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:54:26.302603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:54:26.305611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:26] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:54:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:55:00.103431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:55:00.108429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:55:00.112450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:55:00.119461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:55:00.123956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:55:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:55:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:55:00.131964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:55:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:55:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:55:00.137961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:55:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:55:00.143982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:55:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:55:00.153994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:55:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:55:00] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:55:02.044623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:55:02.477440 : Get_List_UE_Given_SessionFormation -'NoneType' object is not subscriptable - Line : 17028 +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:55:02] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:55:02.478975 : Get_List_UE_Given_SessionFormation -'NoneType' object is not subscriptable - Line : 17028 +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:55:02] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:56:04.477498 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:56:04.477498 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:56:04.477498 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:56:04.477498 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:56:04.477498 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 10:56:20.073077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:56:20.076077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:56:20.081098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:56:20.086077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:56:20.090081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:56:20.096095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:56:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:56:20.103105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:56:20.112682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:56:20] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:56:20] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:56:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:56:20.125696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:56:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:56:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:56:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:56:20] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:56:22.060992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:56:22.701910 : Get_List_UE_Given_SessionFormation -'NoneType' object is not subscriptable - Line : 17029 +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:56:22] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 10:56:22.703910 : Get_List_UE_Given_SessionFormation -'NoneType' object is not subscriptable - Line : 17029 +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:56:22] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:57:44.436466 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:57:44.436466 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:57:44.436466 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:57:44.436466 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:57:44.436466 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:58:13.662959 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:58:13.663953 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:58:13.663953 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:58:13.663953 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:58:13.663953 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 10:58:52.391420 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 10:58:52.391420 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 10:58:52.391420 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 10:58:52.391420 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 10:58:52.391420 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 10:58:58.971169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 10:59:01.276161 : Get_List_UE_Given_SessionFormation -'NoneType' object is not subscriptable - Line : 17037 +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 10:59:01] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:11:36.825520 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:11:36.831723 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:11:36.831723 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:11:36.832720 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:11:36.832720 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 11:11:38.033282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:11:38.079851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:11:38.122456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:11:38.137349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:11:38.174348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:11:38.192410 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:11:38.222897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:11:38.249897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:11:38.288468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:11:38.318722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:11:38.348310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:11:38.377825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:11:38.405648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:11:38.435578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:11:38.466582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:11:38.504182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:11:38.552195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:11:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:17.804467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:17] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:17.839993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:12:17.863514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:12:17.871515 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:17] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:17.900136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:17] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:17.934136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:17.955694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:17.991692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:18.016689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:18.046694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:18.068242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:18.098224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:12:18.129739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:18.147793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:12:18.176868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:18.218914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:18] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:18.249434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:23.895966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:23] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:23.933981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:12:23.959723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:23] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:23.990286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:24.024288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:24] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:24.050307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:12:24.085829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:24] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:24] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:24.113918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:24] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:24.143934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:12:26.252229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:28.415501 : Get_List_UE_Given_SessionFormation -'Cursor' object has no attribute 'keys' - Line : 17018 +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:28] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:12:28.417501 : Get_List_UE_Given_SessionFormation -'Cursor' object has no attribute 'keys' - Line : 17018 +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:12:28] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:13:43.729001 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:13:43.729001 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:13:43.729001 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:13:43.729001 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:13:43.729001 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 11:13:44.017365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:13:44.028918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:13:44.032026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:13:44.039024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:13:44.050789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:13:44.053779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:13:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:13:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:13:44] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:13:44] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:13:44.074080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:13:44] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:13:44] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:13:44.089081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:13:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:13:44.094081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:13:44] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:13:46.453294 : Get_List_UE_Given_SessionFormation -'Cursor' object has no attribute 'keys' - Line : 17022 +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:13:46] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:15:37.491812 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:15:37.491812 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:15:37.491812 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:15:37.491812 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:15:37.491812 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 11:16:34.963159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:16:34.968156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:16:34.972170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:16:34.976156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:16:34.980172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:16:34.985154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:16:34.988155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:16:34.993156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:16:34.995158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:35] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:35] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:35] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:16:37.142603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:37] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:16:40.631193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:40] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:16:47.712407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:16:49.969096 : CheckisDate_Hours_Second -time data '2025-11-04 11:16:47.727260' does not match format '%d/%m/%Y %H:%M:%S' - ERRORRRR AT Line : 955 +INFO:root:2025-11-04 11:16:49.971082 : Add_Historique_Event La date de l'action doit être au format jj/mm/aaaa hh:mm:ss +INFO:root:2025-11-04 11:16:49.971082 : WARNING : Impossible de logguer l'historique pour l'évènement : {'token': 'GcC8eT1SQx-4iY8A-0911qCRxo4deCf3ZQ', 'related_collection': 'session_formation', 'related_collection_recid': '68dc36eec27edf6c5f89efcc', 'action_date': '2025-11-04 11:16:47.727260', 'action_description': "Ajout de l'Unité d'enseignement 6638a1d1ac6e18de05a921a4, Code UE :info101"} +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:49] "POST /myclass/api/Add_Update_UE_To_Session/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:16:49.978086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:16:49] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:19:15.331662 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:19:15.331662 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:19:15.331662 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:19:15.331662 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:19:15.331662 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 11:19:15.469171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:19:15.472172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:19:15.475173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:19:15.477174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:19:15.481172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:19:15.485173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:19:15.490173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:19:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:19:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:19:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:19:15.503182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:19:15] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:19:15.510184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:19:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:19:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:19:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:19:15] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:19:15] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:19:19.907229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:19:20] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:19:23.871737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:19:23] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:20:50.553000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:20:50] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:21:04.882850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:21:04.886972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:21:04.890938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:21:04.892840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:21:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:21:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:21:04.895963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:21:04.897835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:21:04.901949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:21:04.904946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:21:04] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:21:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:21:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:21:04] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:21:04.910973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:21:04.911975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:21:04.913943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:21:04.915839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:21:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:21:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:21:04] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:21:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:21:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:21:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:22:34.833196 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:22:34.833196 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:22:34.833196 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:22:34.833196 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:22:34.833196 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 11:22:34.928710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:22:34.930710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:22:34.931708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:22:34.933728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:22:34.938530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:22:34.940531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:22:34.949530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:34] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:22:34.951532 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:22:34.954530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:22:34.957531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:22:34.961530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:22:34.964532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:34] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:22:34.970531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:22:34.974540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:34] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:22:34.983537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:22:34.989071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:22:34.994053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:35] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:22:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:23:46.404136 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:23:46.488732 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:23:46.489729 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:23:46.489729 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:23:46.489729 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 11:25:07.847192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:25:07.851165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:25:07.854166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:25:07.858673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:25:07.863679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:25:07.872678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:25:07.878696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:25:07] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:25:07] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:25:07.889680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:25:07] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:25:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:25:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:25:07] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:25:07] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:25:07] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:26:14.821714 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:26:14.821714 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:26:14.821714 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:26:14.821714 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:26:14.821714 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:26:33.807369 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:26:33.808369 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:26:33.808369 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:26:33.808369 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:26:33.808369 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:28:25.072071 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:28:25.073071 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:28:25.073071 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:28:25.073071 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:28:25.073071 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:29:25.412759 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:29:25.412759 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:29:25.412759 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:29:25.412759 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:29:25.412759 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 11:29:51.599207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:29:51] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\formulaire_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:31:30.947334 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:31:30.947334 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:31:30.947334 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:31:30.947334 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:31:30.947334 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\formulaire_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:32:45.942518 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:32:45.942518 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:32:45.942518 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:32:45.942518 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:32:45.942518 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\formulaire_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:32:55.350583 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:32:55.350583 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:32:55.350583 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:32:55.350583 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:32:55.350583 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\formulaire_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:33:17.581765 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:33:17.582766 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:33:17.582766 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:33:17.582766 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:33:17.582766 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\formulaire_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:36:26.468694 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:36:26.468694 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:36:26.468694 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:36:26.468694 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:36:26.468694 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\formulaire_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:36:46.913966 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:36:46.913966 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:36:46.914967 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:36:46.914967 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:36:46.914967 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\formulaire_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:37:15.233023 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:37:15.233023 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:37:15.233023 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:37:15.233023 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:37:15.234019 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\formulaire_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:39:12.978850 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:39:12.978850 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:39:12.978850 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:39:12.978850 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:39:12.978850 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 11:39:24.934502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:24.991633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:24.995633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:25.002635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:25.004635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:25.006633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:25.009634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:25] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:25] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:25] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:25] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:26.100613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:26.908299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:26.910299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:26.915301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:26.920301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:26.923301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:26.925300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:26.931300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:26.944306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:26.952819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:26.962348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:26.967355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:26.977354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:26.979354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:26] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:27] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:27.102858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:27.103859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:27.108866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:27] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:28.865380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:28.870382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:28.875375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:28.878376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:28.886374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:28.894382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:28.897392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:28.903381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:28.908375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:28.914378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:28.919374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:28.926376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:28.930391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_List_Modele_Attestion_Formation_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_List_Modele_Attestion_Formation_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:28] "POST /myclass/api/Get_Given_Class_List_Default_Documents/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:34.336376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:34] "POST /myclass/api/Update_Class_Default_Document/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:46.404875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:46.416879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:46.425881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:46.428881 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:46.430939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:46] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:46.450954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:46] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:49.094587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:49.105573 : Ce formulaire est utilisé comme formulaire par défaut sur des formations . Suppression annulée +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:49] "POST /myclass/api/Delete_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:54.061216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:54] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:39:59.559495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:39:59.569490 : Ce formulaire est utilisé comme formulaire par défaut sur des formations . Suppression annulée +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:39:59] "POST /myclass/api/Delete_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:04.955663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:05] "POST /myclass/api/Update_Class_Default_Document/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:07.943488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:07.945488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:07.950486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:07.955488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:07.961485 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:07] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:07.988502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:07] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:10.588705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:10] "POST /myclass/api/Delete_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:10.625716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:10.628718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:10] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:10] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:30.869911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:30.872075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:30.875051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:30.880052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:30.882053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:30.890050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:30.899049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:30] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:30] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:30.905051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:30] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:30.914050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:30.911052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:30.922083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:30] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:30] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:30.931049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:30] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:32.911467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:32.915467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:32.919468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:32.923467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:32.931467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:32.933467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:32.939468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:32.942471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:32.945467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:32] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:32] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:32] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:32] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:44.114146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:44] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:44.280924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:40:44.284511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:44] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:40:57.247237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:40:57] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:41:06.573515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:41:06] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:41:11.825158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:41:11] "POST /myclass/api/Add_Update_UE_To_Session/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:41:11.989769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:41:11] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:41:14.879450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:41:14] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:41:18.184328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:41:18] "POST /myclass/api/Add_Update_UE_To_Session/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:41:18.311718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:41:18] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:41:47.949390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:41:47] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:41:53.400261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:41:53] "POST /myclass/api/Add_Update_UE_To_Session/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:41:53.563341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:41:53] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:45:16.464763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:45:16.469768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:45:16.471767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:45:16.476766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:45:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:45:16.484276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:45:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:45:16.490278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:45:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:45:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:45:16.496276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:45:16] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:45:16.499278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:45:16.504278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:45:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:45:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:45:16] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:45:16] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:45:18.390679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:45:18] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:46:52.995780 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:46:52.995780 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:46:52.995780 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:46:52.995780 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:46:52.996781 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 11:46:53.489897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:46:53.492897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:46:53.505015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:46:53.520531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:46:53.533571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:46:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:46:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:46:53.554583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:46:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:46:53.568589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:46:53] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:46:53] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:46:53.593592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:46:53] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:46:53] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:46:53.611112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:46:53.620117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:46:53.634627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:46:53.657142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:46:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:46:53] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:46:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:46:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:46:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:50:01.270906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:01.277473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:01.285642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:01.290636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:50:01.301636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:01.308637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:01] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:50:01.328646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:01] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:01] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:50:01.342196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:01.347195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:01.352715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:01.364721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:50:01.377247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:01] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:50:04.407277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:04.411277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:04.413303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:04.421275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:04] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:50:04.432276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:04.435389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:50:04.445295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:04] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:04] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:04] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:50:04.457286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:04.459286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:04] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:04] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:04] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:50:07.145440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:07] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:50:10.287280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:50:12.654073 : Delete_UE_From_SessionCette UE est utilisée dans 6 évaluation(s). Suppression annulée +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:50:12] "POST /myclass/api/Delete_UE_From_Session/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:51:36.580202 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:51:36.580202 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:51:36.580202 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:51:36.580202 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:51:36.580202 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\unite_enseignement_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:53:07.230941 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:53:07.230941 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:53:07.230941 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:53:07.230941 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:53:07.230941 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 11:53:07.300961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:53:07.303180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:53:07.304189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:53:07.306195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:53:07.308189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 11:53:07.312622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:53:07] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:53:07.317536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:53:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:53:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:53:07] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:53:07] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:53:07] "POST /myclass/api/Get_List_Conseil_Classe/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:53:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\unite_enseignement_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:54:32.645020 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:54:32.645020 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:54:32.646035 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:54:32.646035 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:54:32.646035 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 11:54:32.722562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:54:32] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:54:36.141675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:54:36] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class_From_Session_Id/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:54:41.279968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:54:41] "POST /myclass/api/Get_List_Groupe_Inscrit_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:54:43.574813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:54:43] "POST /myclass/api/Add_Conseil_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:54:43.646671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:54:43] "POST /myclass/api/Get_List_Conseil_Classe/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\unite_enseignement_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:56:25.459520 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:56:25.459520 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:56:25.459520 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:56:25.460521 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:56:25.460521 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\unite_enseignement_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:56:42.268434 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:56:42.268434 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:56:42.268434 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:56:42.268434 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:56:42.268434 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\unite_enseignement_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-04 11:57:26.457823 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-04 11:57:26.458822 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-04 11:57:26.458822 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-04 11:57:26.458822 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-04 11:57:26.458822 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-04 11:59:00.082815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:59:00] "POST /myclass/api/Delete_UE_From_Session/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:59:00.132257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:59:00] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:59:04.358982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:59:04] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:59:07.519436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:59:07] "POST /myclass/api/Add_Update_UE_To_Session/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:59:07.645114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:59:07] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:59:10.435268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:59:10] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:59:13.596929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:59:13] "POST /myclass/api/Add_Update_UE_To_Session/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:59:13.765747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:59:13] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 11:59:27.393032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 11:59:27] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:43.592540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:43.598559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:43.603546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:43.610544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:43.613120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:43.621120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:43.628119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:43] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:43] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:43.659120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:43.664120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:43] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:43.675230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:43.686951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:43] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:43.695949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:43] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:53.062596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:53.068595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:53.071597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:53.073597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:53.088891 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:53.121890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:53.127891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:53.132895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:53.139937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:53.144400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:53.149410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:53.154407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:53.171406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:53.176405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:53.179408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:04:53.189447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:04:53.194446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:53] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:04:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:05:08.149734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:05:08.153738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:05:08.157738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:05:08.163058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:05:08.172072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:05:08.180074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:05:08.187060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:05:08.197059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:05:08.203100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:05:08.212086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:05:08.218232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:05:08.226770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:05:10.616279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:05:10.621310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:05:10.625281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:05:10.629283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:05:10.641280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:10] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:10] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:05:10.647280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:05:10.652284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:10] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:10] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:05:10.662286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:05:10.665802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:10] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:10] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:05:12.304944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:05:12] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:06:19.709250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:06:19.712248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:06:19.716256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:06:19.722254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:06:19.729256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:06:19.730761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:06:19.739767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:19] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:06:19.747769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:06:19.758769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:19] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:06:19.768769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:19] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:19] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:06:19.788300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:06:19.792288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:19] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:19] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:06:48.430841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:06:48.435840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:06:48.440128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:06:48.457592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:06:48.460568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:06:48.469567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:06:48.474076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:48] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:06:48.487075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:06:48.495074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:06:48.500085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:06:48.510118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:06:48.516592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:06:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:07:03.520892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:07:03.525890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:07:03.529894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:07:03.533889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:07:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:07:03] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:07:03.544891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:07:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:07:03.552889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:07:03.554890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:07:03] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:07:03] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:07:03.561890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:07:03.565914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:07:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:07:03] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:07:03] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:07:03] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:07:05.280619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:07:05] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:08:43.781372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:08:43.788378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:08:43.795378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:08:43.797379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:08:43.813887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:43] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:08:43.819887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:08:43.824894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:43] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:08:43.834897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:43] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:08:43.841915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:08:43.846062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:08:43.849068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:08:43.860580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:43] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:43] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:08:46.760736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:08:46.764737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:08:46.769737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:08:46.772736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:08:46.781750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:08:46.787751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:08:46.790749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:08:46.795758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:08:46.800763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:46] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:46] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:08:48.359561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:08:48] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:51.574352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:11:51.577351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:11:51.579354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:11:51.583353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:51.588353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:11:51.593356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:51.598391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:11:51.627911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:51] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:51] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:51.639926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:11:51.644932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:51] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:51.650442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:51] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:51.656442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:51] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:59.744082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:11:59.746973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:11:59.751481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:59.763489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:59.768489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:11:59.771488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:11:59.775489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:59] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:59.788487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:11:59.794487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:59] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:59.801488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:59.805490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:59] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:11:59.812489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:59] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:11:59] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:12:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:12:06.384288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:12:06.386288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:12:06.387287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:12:06.390808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:12:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:12:06.404309 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:12:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:12:06] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:12:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:12:28.631436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:12:28.633435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:12:28.636436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:12:28.641437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:12:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:12:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:12:28.652437 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:12:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:12:28] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:27.399029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:27.433631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:27.467730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:27.492730 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:27.510756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:27] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:48.939457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:48.944457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:48.947459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:48.958469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:48] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:48.981823 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:49.021852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:49.026853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:49.028856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:49.033854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:49.038854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:49.054865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:49] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:49] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:49.073945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:49.079924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:49] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:49.084923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:49.088923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:49.102923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:49.111945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:49] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:49] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:53.063631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:53.066632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:53.070186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:53.074178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:53] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:53.085308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:53.091313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:53] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:53.092294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:53.096292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:13:53.099292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:53] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:53] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:53] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:53] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:53] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:13:54.831299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:13:54] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:14:53.954311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:14:53.962330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:14:53.971321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:14:53.983798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:14:53.984799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:14:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:14:53.997782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:14:54.006780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:14:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:14:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:14:54] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:14:54] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:14:54.025779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:14:54] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:14:54.032778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:14:54.041782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:14:54] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:14:54.046783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:14:54.057779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:14:54] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:14:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:14:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:14:54] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:14:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:19:24.456300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:19:24.463300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:19:24.468358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:19:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:19:24.476375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:19:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:19:24.486357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:19:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:19:24.499358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:19:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:19:24.513359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:19:24.520360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:19:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:19:24] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:19:24.533099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:19:24.541119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:19:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:19:24.551095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:19:24.570656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:19:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:19:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:19:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:19:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:19:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:20:08.089827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:20:08.093827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:20:08.095941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:20:08.099943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:20:08.105978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:20:08.120469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:20:08.125475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:20:08.134467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:20:08.140467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:20:08.148472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:20:08.151477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:20:08.156480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:20:11.113836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:20:11.118838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:20:11.123379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:20:11.125351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:20:11.136352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:20:11.145361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:20:11.147356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:20:11.155358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:20:11.159360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:11] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:11] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:20:12.976868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:20:12] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:21:53.489204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:21:53.493211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:21:53.496211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:21:53.500227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:21:53.505778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:21:53.510775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:21:53.518822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:53] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:53] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:53] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:21:53.534777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:21:53.536774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:21:53.539775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:21:53.545778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-04 12:21:53.545778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:53] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:53] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:53] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:21:54.312049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:54] "POST /myclass/api/Add_Update_UE_To_Session/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:21:54.447323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:54] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:21:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-04 12:22:00.011657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Nov/2025 12:22:00] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - diff --git a/Session_Formation.py b/Session_Formation.py index f737c4a..08ee1b0 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -1096,7 +1096,7 @@ def Get_Given_SessionFormation_From_Id(diction): if val not in field_list and val.startswith('my_') is False: mycommon.myprint(str(inspect.stack()[0][ 3]) + " - Le champ '" + val + "' n'est pas autorisé, Creation partenaire annulée") - return False, "de récupérer la liste des stagiaires . Toutes les informations fournies ne sont pas valables" + return False, "Toutes les informations fournies ne sont pas valables" """ Verification de la liste des champs obligatoires @@ -1106,7 +1106,7 @@ def Get_Given_SessionFormation_From_Id(diction): if val not in diction: mycommon.myprint( str(inspect.stack()[0][3]) + " - : La valeur '" + val + "' n'est pas presente dans la liste des arguments ") - return False, "Impossible de récupérer la liste des stagiaires, Toutes les informations necessaires n'ont pas été fournies" + return False, "Toutes les informations necessaires n'ont pas été fournies" # Recuperation du recid du partner mydata = {} @@ -5252,7 +5252,7 @@ def Delete_SessionFormation(diction): if val not in diction: mycommon.myprint( str(inspect.stack()[0][3]) + " - : La valeur '" + val + "' n'est pas presente dans la liste des arguments ") - return False, "Impossible de récupérer la liste des stagiaires, Toutes les informations necessaires n'ont pas été fournies" + return False, "Toutes les informations necessaires n'ont pas été fournies" # Recuperation du recid du partner mydata = {} @@ -5389,7 +5389,7 @@ def Delete_List_SessionFormation(diction): if val not in diction: mycommon.myprint( str(inspect.stack()[0][3]) + " - : La valeur '" + val + "' n'est pas presente dans la liste des arguments ") - return False, "Impossible de récupérer la liste des stagiaires, Toutes les informations necessaires n'ont pas été fournies" + return False, "Toutes les informations necessaires n'ont pas été fournies" # Recuperation du recid du partner mydata = {} @@ -16298,7 +16298,7 @@ def Get_Given_SessionFormation_List_Automatic_Traitement_From(diction): if val not in diction: mycommon.myprint( str(inspect.stack()[0][3]) + " - : La valeur '" + val + "' n'est pas presente dans la liste des arguments ") - return False, "Impossible de récupérer la liste des stagiaires, Toutes les informations necessaires n'ont pas été fournies" + return False, "Toutes les informations necessaires n'ont pas été fournies" # Recuperation du recid du partner mydata = {} @@ -16618,3 +16618,430 @@ def unarchive_session(diction): return False, " Impossible d'archiver les sessions " + + + +""" +Ajout une UE à une session de formation +important : le système va verifier si cette UE est +paramettrée sur la formation +""" +def Add_Update_UE_To_Session(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'session_id', 'ue_id', ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'session_id', 'ue_id', ] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans la liste des arguments ") + return False, " Les informations fournies sont incorrectes" + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + mydata = {} + + mydata = diction + del mydata['token'] + + # Initialisation des champs non envoyés à vide + for val in field_list: + if val not in diction.keys(): + mydata[str(val)] = "" + + + # Verifier que UE est valide + is_ue_exist_count = MYSY_GV.dbname['unite_enseignement'].count_documents({'partner_owner_recid':my_partner['recid'], + 'valide':'1', + '_id':ObjectId(str(diction['ue_id'])), + 'locked':'0' + }) + if( is_ue_exist_count != 1 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant de l'UE est invalide ") + return False, " L'identifiant de l'UE est invalide " + + is_ue_exist_data = MYSY_GV.dbname['unite_enseignement'].find_one( + {'partner_owner_recid': my_partner['recid'], + 'valide': '1', + '_id': ObjectId(str(diction['ue_id'])), + 'locked': '0' + }) + + + + # Verifier que la session est valide + is_session_exist_count = MYSY_GV.dbname['session_formation'].count_documents( + {'partner_owner_recid': my_partner['recid'], + 'valide': '1', + '_id':ObjectId(str(diction['session_id']))}) + + if (is_session_exist_count != 1 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant de la promotion / session est invalide ") + return False, " L'identifiant de la promotion / session est invalide " + + + session_data = MYSY_GV.dbname['session_formation'].find_one( + {'partner_owner_recid': my_partner['recid'], + 'valide': '1', + '_id': ObjectId(str(diction['session_id']))}) + + + + """ + Verifier que l'UE est bien paramettrée sur la formation + """ + is_ue_in_class_count = MYSY_GV.dbname['myclass'].count_documents({'list_unite_enseignement._id':str(diction['ue_id']), + '_id': ObjectId(str(session_data['class_id'])), + 'partner_owner_recid': my_partner[ + 'recid'], + 'valide': '1', + 'locked': '0', + }) + + if (is_ue_in_class_count != 1 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " La configuration de l'UE sur la formation est invalide ") + return False, " La configuration de l'UE sur la formation est invalide " + + + + """ + Ajouter ou mettre à jour l'UE sur la session + """ + now = str(datetime.now()) + + """ + Verifier que le ue_id existe deja pour cette formation, au quel cas c'est un update qu'on fait + si non c'est un create + """ + is_ue_id_existe_class = 0 + + is_ue_id_existe_class = MYSY_GV.dbname['session_formation'].count_documents( + {'list_unite_enseignement._id': str(diction['ue_id']), + '_id': ObjectId(str(diction['session_id'])), + 'partner_owner_recid': my_partner[ + 'recid'], + 'valide': '1', + }) + + if (is_ue_id_existe_class > 0): + update_session_ue = MYSY_GV.dbname['session_formation'].update_one({'_id': ObjectId(str(diction['session_id'])), + 'partner_owner_recid': str( + my_partner['recid']), + 'valide': '1', + 'list_unite_enseignement._id': str( + diction['ue_id'])}, + {'$set': + { + + 'list_unite_enseignement.$[xxx].date_update': str(now), + 'list_unite_enseignement.$[xxx].update_by': str( + my_partner['_id']), + } + }, + upsert=False, + array_filters=[ + {"xxx._id": str(diction['ue_id'])} + ] + + ) + + now = str(datetime.now().strftime("%d/%m/%Y %H:%M:%S")) + history_event_dict = {} + history_event_dict['token'] = str(token) + history_event_dict['related_collection'] = "session_formation" + history_event_dict['related_collection_recid'] = str(session_data['_id']) + history_event_dict['action_date'] = str(now) + + history_event_dict['action_description'] = "Mise à jour de l'Unité d'enseignement "+str(is_ue_exist_data['_id'])+", Code UE :"+str(is_ue_exist_data['code']) + local_status, local_retval = mycommon.Collection_Historique.Add_Historique_Event(history_event_dict) + if (local_status is False): + mycommon.myprint( + " WARNING : Impossible de logguer l'historique pour l'évènement : " + str(history_event_dict)) + + return True, " L'unité d'enseignement a été mise à jour" + + else: + # l'UE n'existe pas pour cette session, on fait une creation + # Il s'agit de la creation d'une competence + new_data = {} + new_data['date_update'] = str(now) + new_data['valide'] = "1" + new_data['update_by'] = str(my_partner['_id']) + new_data['locked'] = "0" + + new_data['_id'] = str(diction['ue_id']) + + insert = MYSY_GV.dbname['session_formation'].update_one({'_id': ObjectId(str(diction['session_id'])), + 'partner_owner_recid': str( + my_partner['recid']), + 'valide': '1', + }, + + { + '$push': { + "list_unite_enseignement": { + '$each': [new_data] + } + } + }, + + ) + + now = str(datetime.now().strftime("%d/%m/%Y %H:%M:%S")) + history_event_dict = {} + history_event_dict['token'] = str(token) + history_event_dict['related_collection'] = "session_formation" + history_event_dict['related_collection_recid'] = str(session_data['_id']) + history_event_dict['action_date'] = str(now) + + history_event_dict['action_description'] = "Ajout de l'Unité d'enseignement " + str( + is_ue_exist_data['_id']) + ", Code UE :" + str(is_ue_exist_data['code']) + + + local_status, local_retval = mycommon.Collection_Historique.Add_Historique_Event(history_event_dict) + if (local_status is False): + mycommon.myprint( + " WARNING : Impossible de logguer l'historique pour l'évènement : " + str(history_event_dict)) + + return True, " L'UE a été correctement ajoutée à la formation " + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible d'ajouter L'UE à la formation " + + +""" +Cette fonction permet de supprimer une UE d'une session formation. + +""" +def Delete_UE_From_Session(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'session_id', 'ue_id', ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'session_id', 'ue_id', ] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans la liste des arguments ") + return False, " Les informations fournies sont incorrectes" + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + mydata = {} + + mydata = diction + del mydata['token'] + + # Initialisation des champs non envoyés à vide + for val in field_list: + if val not in diction.keys(): + mydata[str(val)] = "" + + + # Verifier que UE est valide + is_ue_exist_count = MYSY_GV.dbname['unite_enseignement'].count_documents({'partner_owner_recid':my_partner['recid'], + 'valide':'1', + '_id':ObjectId(str(diction['ue_id'])), + 'locked':'0' + }) + if( is_ue_exist_count != 1 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant de l'UE est invalide ") + return False, " L'identifiant de l'UE est invalide " + + is_ue_exist_data = MYSY_GV.dbname['unite_enseignement'].find_one( + {'partner_owner_recid': my_partner['recid'], + 'valide': '1', + '_id': ObjectId(str(diction['ue_id'])), + 'locked': '0' + }) + + + # Verifier que la formation est valide + is_session_exist_count = MYSY_GV.dbname['session_formation'].count_documents( + {'partner_owner_recid': my_partner['recid'], + 'valide': '1', + '_id':ObjectId(str(diction['session_id']))}) + + if (is_session_exist_count != 1 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant de la promotion / session de formation est invalide ") + return False, " L'identifiant de la promotion / session de formation est invalide " + + + is_session_exist_data = MYSY_GV.dbname['session_formation'].find_one( + {'partner_owner_recid': my_partner['recid'], + 'valide': '1', + '_id': ObjectId(str(diction['session_id']))}) + + if ("list_unite_enseignement" in is_session_exist_data.keys()): + + # pour la collection 'myclass' + now = str(datetime.now().strftime("%d/%m/%Y %H:%M:%S")) + # print(" ####### laaaa diction = ", diction) + + history_event_dict = {} + history_event_dict['token'] = str(token) + history_event_dict['related_collection'] = "session_formation" + history_event_dict['related_collection_recid'] = str(is_session_exist_data['_id']) + history_event_dict['action_date'] = str(now) + + history_event_dict['action_description'] = "Suppression de l'Unité d'enseignement " + str( + is_ue_exist_data['_id']) + ", Code UE :" + str(is_ue_exist_data['code']) + + local_status, local_retval = mycommon.Collection_Historique.Add_Historique_Event(history_event_dict) + if (local_status is False): + mycommon.myprint( + " WARNING : Impossible de logguer l'historique pour l'évènement : " + str(history_event_dict)) + + + delete = MYSY_GV.dbname['session_formation'].update_one({'_id': ObjectId(str(diction['session_id'])), + 'partner_owner_recid': str( + my_partner['recid']), + 'valide': '1', + 'list_unite_enseignement._id': str(diction['ue_id'])}, + + {'$pull': {'list_unite_enseignement': { + "_id": str(diction['ue_id'])}}} + ) + + + + return True, " L'UE a été correctement supprimée de la promotion / session " + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de supprimer L'UE de la promotion / session " + + +""" +Recuperer les UE d'une session de formation +""" +def Get_List_UE_Given_SessionFormation(diction): + try: + + field_list = ['token', 'session_id', ] + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str(inspect.stack()[0][ + 3]) + " - Le champ '" + val + "' n'est pas autorisé, Creation partenaire annulée") + return False, "Toutes les informations fournies ne sont pas valables" + + """ + Verification de la liste des champs obligatoires + """ + field_list_obligatoire = ['token', 'session_id', ] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - : La valeur '" + val + "' n'est pas presente dans la liste des arguments ") + return False, "Toutes les informations necessaires n'ont pas été fournies" + + # Recuperation du recid du partner + mydata = {} + mytoken = "" + if ("token" in diction.keys()): + if diction['token']: + mytoken = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + RetObject = [] + val_tmp = 0 + + session_data = MYSY_GV.dbname['session_formation'].find_one({'_id': ObjectId(str(diction['session_id'])), + 'partner_owner_recid': str(my_partner['recid']), + 'valide': '1', + }, {'list_unite_enseignement':1}) + + print(" ### session_data = ", session_data) + if(session_data and "list_unite_enseignement" in session_data.keys()): + + for local_ue in session_data['list_unite_enseignement']: + + + ue_data = MYSY_GV.dbname['unite_enseignement'].find_one({'_id':ObjectId(str(local_ue['_id'])), + 'partner_owner_recid': str(my_partner['recid']), + 'valide':'1', + 'locked':'0'}) + user = {} + user['id'] = str(val_tmp) + user['session_id'] = str(diction['session_id']) + user['_id'] = str(ue_data['_id']) + user['code'] = str(ue_data['code']) + user['titre'] = str(ue_data['titre']) + + val_tmp = val_tmp + 1 + RetObject.append(mycommon.JSONEncoder().encode(user)) + + return True, RetObject + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de recuperer la list des UE de la promotion / session " diff --git a/Session_Formation_Sequence.py b/Session_Formation_Sequence.py index a42426e..f41f376 100644 --- a/Session_Formation_Sequence.py +++ b/Session_Formation_Sequence.py @@ -1558,6 +1558,9 @@ def Update_Session_Sequence(diction): str(inspect.stack()[0][3]) + " L'identifiant du groupe est invalide ") return False, " L'identifiant du groupe est invalide " + elif("grp_apprenant_id" in diction.keys() and diction['grp_apprenant_id'] == ""): + update_data['grp_apprenant_id'] = "" + if ("ue_id" in diction.keys() and diction['ue_id']): update_data['ue_id'] = str(diction['ue_id']) diff --git a/base_class_calcul_note.py b/base_class_calcul_note.py index 2e25233..7601f62 100644 --- a/base_class_calcul_note.py +++ b/base_class_calcul_note.py @@ -1915,7 +1915,7 @@ def Cacul_UE_Note_Finale_Standard(diction): 'locked': '0', 'partner_owner_recid': str(my_partner['recid'])}): - #print(" UEEE : ", is_ue_valide_data['code']) + print(" is_ue_valide_data == : ", is_ue_valide_data) # Recuperer les données de l'UE dans la formation (ex : credit, seuil de validation, etc) class_ue_data = {} @@ -1996,24 +1996,26 @@ def Cacul_UE_Note_Finale_Standard(diction): local_node['ue_id'] = str(is_ue_valide_data['_id']) - if ("credit" in class_ue_data.keys()): + if ("credit" in class_ue_data.keys() and class_ue_data['credit']): local_node['credit'] = str(class_ue_data['credit']) - elif ("ects" in is_ue_valide_data.keys()): + elif ("ects" in is_ue_valide_data.keys() and is_ue_valide_data['ects']): local_node['credit'] = str(is_ue_valide_data['ects']) else: local_node['credit'] = "0" - if ("coefficient" in class_ue_data.keys()): + if ("coefficient" in class_ue_data.keys() and class_ue_data['coefficient']): local_node['ue_coefficient'] = str(class_ue_data['coefficient']) - elif ("coefficient" in is_ue_valide_data.keys()): + elif ("coefficient" in is_ue_valide_data.keys() and is_ue_valide_data['coefficient']): local_node['ue_coefficient'] = str(is_ue_valide_data['coefficient']) else: local_node['ue_coefficient'] = "1" - if ("seuil_validation" in class_ue_data.keys()): + if ("seuil_validation" in class_ue_data.keys() and class_ue_data['seuil_validation'] ): local_node['seuil_validation'] = str(class_ue_data['seuil_validation']) - elif ("seuil_validation" in is_ue_valide_data.keys()): + print(" ## str(class_ue_data['seuil_validation']) = ", str(class_ue_data['seuil_validation'])) + if ("seuil_validation" in is_ue_valide_data.keys() and is_ue_valide_data['seuil_validation']): local_node['seuil_validation'] = str(is_ue_valide_data['seuil_validation']) + print(" ## str(is_ue_valide_data['seuil_validation']) = ", str(is_ue_valide_data['seuil_validation'])) else: local_node['seuil_validation'] = "99" # le 99 pour eviter les validation par defaut @@ -2089,11 +2091,14 @@ def Cacul_UE_Note_Finale_Standard(diction): note_categorie_status, note_categorie_code = mycommon.Get_Note_Categorie_Code(str(note_finale_ue), my_partner['recid']) local_node['note_categorie'] = str(note_categorie_code) - #print(" ### note_finale = ", note_finale_ue) + print(" ### note_finale = ", note_finale_ue) + + print(" ### local_node['seuil_validation'] = ", local_node['seuil_validation']) # Acter si la personne valide l'UE - #print(" #### si la personne valide l'UE CMP de float(note_finale_ue) = ", float(note_finale_ue), - # " et float(local_node['seuil_validation'] ) = ", float(local_node['seuil_validation'])) + print(" #### si la personne valide l'UE CMP de float(note_finale_ue) = ", float(note_finale_ue), + " et float(local_node['seuil_validation'] ) = ", float(local_node['seuil_validation'])) + if (float(note_finale_ue) >= float(local_node['seuil_validation'])): local_node['ue_validation'] = "1" else: diff --git a/class_mgt.py b/class_mgt.py index c51a527..7e80ef2 100644 --- a/class_mgt.py +++ b/class_mgt.py @@ -7901,6 +7901,9 @@ def Add_Update_UE_To_Class(diction): str(inspect.stack()[0][3]) + " L'identifiant de l'UE est invalide ") return False, " L'identifiant de l'UE est invalide " + + + is_ue_exist_data = MYSY_GV.dbname['unite_enseignement'].find_one( {'partner_owner_recid': my_partner['recid'], 'valide': '1', @@ -8021,7 +8024,7 @@ def Add_Update_UE_To_Class(diction): mycommon.myprint( " WARNING : Impossible de logguer l'historique pour l'évènement : " + str(history_event_dict)) - return True, " La compétence a été mise à jour" + return True, " L'unité d'enseignement a été mise à jour" else: # l'UE n'existe pas pour cette formation, on fait une creation @@ -8078,7 +8081,7 @@ def Add_Update_UE_To_Class(diction): mycommon.myprint( " WARNING : Impossible de logguer l'historique pour l'évènement : " + str(history_event_dict)) - return True, " L'UE a été correctement ajoutée à la formation " + return True, " L'unité d'enseignement a été correctement ajoutée à la formation " except Exception as e: @@ -8214,7 +8217,7 @@ def Delete_UE_From_Class(diction): - return True, " L'UE a été correctement suppimée de la formation " + return True, " L'UE a été correctement supprimée de la formation " except Exception as e: @@ -8531,3 +8534,4 @@ def Get_Given_Class_List_Default_Documents_For_Given_Type_Doc(diction): exc_type, exc_obj, exc_tb = sys.exc_info() mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) return False, " Impossible de récupérer la liste des documents par défaut" + diff --git a/competence.py b/competence.py index b8949a1..ebb5108 100644 --- a/competence.py +++ b/competence.py @@ -53,7 +53,8 @@ def Add_Competence(diction): """ Verification des input acceptés """ - field_list = ['token', 'description', 'domaine', 'metier', 'commentaire', 'code' ] + field_list = ['token', 'description', 'domaine', 'metier', 'commentaire', 'code', + 'domaine_competence_id'] incom_keys = diction.keys() for val in incom_keys: @@ -116,6 +117,24 @@ def Add_Competence(diction): mydata['valide'] = "1" mydata['locked'] = "0" + # Verifier la validité du domaine de compétence + print(" ## QRY is_domain_compet_valide = ", {'_id':ObjectId(diction['domaine_competence_id']), + 'valide':'1', + 'locked':'0', + 'partner_owner_recid':'default'}) + if( "domaine_competence_id" in diction.keys() ): + is_domain_compet_valide = MYSY_GV.dbname['domaine_competence'].count_documents({'_id':ObjectId(diction['domaine_competence_id']), + 'valide':'1', + 'locked':'0', + 'partner_owner_recid':'default'}) + + if(is_domain_compet_valide != 1 ): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant du domaine de compétence est invalide ") + return False, " L'identifiant du domaine de compétence est invalide " + + mydata['domaine_competence_id'] = str(diction['domaine_competence_id']) inserted_id = MYSY_GV.dbname['competence_liste'].insert_one(mydata).inserted_id @@ -143,7 +162,8 @@ def Update_Competence(diction): """ Verification des input acceptés """ - field_list = ['token', 'description', 'competence_id', 'domaine', 'metier', 'commentaire', 'code' ] + field_list = ['token', 'description', 'competence_id', 'domaine', 'metier', 'commentaire', 'code', + 'domaine_competence_id'] incom_keys = diction.keys() for val in incom_keys: @@ -212,6 +232,20 @@ def Update_Competence(diction): str(inspect.stack()[0][3]) + " L'identifiant de la compétence est invalide ") return False, " L'identifiant de la compétence est invalide " + # Verifier la validité du domaine de compétence + if ("domaine_competence_id" in diction.keys()): + is_domain_compet_valide = MYSY_GV.dbname['domaine_competence'].count_documents( + {'_id': diction['domaine_competence_id'], + 'valide': '1', + 'locked': '0', + 'partner_owner_recid': 'default'}) + + if (is_domain_compet_valide != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant du domaine de compétence est invalide ") + return False, " L'identifiant du domaine de compétence est invalide " + mydata = {} mydata = diction @@ -300,13 +334,23 @@ def Get_Competence_no_filter(diction): if( "code" not in user.keys() ): user["code"] = "--" + domaine_competence_nom = "" + if ("domaine" not in user.keys() or user['domaine'] == ""): + user["domaine"] = "" + else: + domaine_compet_data = MYSY_GV.dbname['domaine_competence'].find_one({'_id':ObjectId(str(user['domaine'])), + 'valide':'1', + 'locked':'0'}) + if( domaine_compet_data and "nom" in domaine_compet_data.keys() ): + domaine_competence_nom = domaine_compet_data['nom'] + + user["domaine_competence_nom"] = str(domaine_competence_nom) + user['id'] = str(val_tmp) val_tmp = val_tmp + 1 RetObject.append(mycommon.JSONEncoder().encode(user)) - - print(" #### RetObject = ", RetObject) return True, RetObject except Exception as e: @@ -379,3 +423,72 @@ def Delete_Given_Competence(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) return False, " Impossible de supprimer la compétence " + +""" +Recuperarion des domaines de compétences +important : cette liste est gérée en dure pour le moment +""" +def Get_Competence_Domaine(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token' ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token',] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans la liste des arguments ") + return False, " Les informations fournies sont incorrectes" + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + + RetObject = [] + val_tmp = 0 + + qry = {"partner_owner_recid":"default", 'valide':'1', 'locked':'0'} + + for New_retVal in MYSY_GV.dbname['domaine_competence'].find(qry).sort([("_id", pymongo.DESCENDING), ]): + user = New_retVal + + if( "code" not in user.keys() ): + user["code"] = "--" + + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + + RetObject.append(mycommon.JSONEncoder().encode(user)) + + + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer la liste des domaines de compétences " diff --git a/domaine_formation_mgt.py b/domaine_formation_mgt.py index fbf87e4..faf4920 100644 --- a/domaine_formation_mgt.py +++ b/domaine_formation_mgt.py @@ -117,7 +117,7 @@ def Add_Class_Domaine(diction): return False, " Impossible de créer le domaine de formation (2) " - return True, " La domaine a été correctement ajoutée" + return True, " Le domaine a été correctement ajouté" except Exception as e: exc_type, exc_obj, exc_tb = sys.exc_info() @@ -126,7 +126,7 @@ def Add_Class_Domaine(diction): """ -Mise à jour d'un domainede formation +Mise à jour d'un domaine de formation """ def Update_Class_domaine(diction): @@ -179,8 +179,8 @@ def Update_Class_domaine(diction): if (is_existe_cdtion_paiement < 0): mycommon.myprint( - str(inspect.stack()[0][3]) + " L'identifiant de le domaine est invalide ") - return False, " L'identifiant de le domaine est invalide " + str(inspect.stack()[0][3]) + " L'identifiant du domaine est invalide ") + return False, " L'identifiant du domaine est invalide " # Verifier que code n'est pas pris par un autre domaine @@ -224,7 +224,7 @@ def Update_Class_domaine(diction): " Impossible de mettre à jour le domaine de formation (2) ") return False, " Impossible de mettre à jour le domaine de formation (2) " - return True, " Le domaine de formation a été correctement mise à jour" + return True, " Le domaine de formation a été correctement mis à jour" except Exception as e: exc_type, exc_obj, exc_tb = sys.exc_info() diff --git a/email_mgt.py b/email_mgt.py index 555890c..4e6a80b 100644 --- a/email_mgt.py +++ b/email_mgt.py @@ -2705,24 +2705,24 @@ def ManualSendInvoiceEmailRIB_CIC_BureauVallee(diction): body = { "params": {"order_id": "N/A", "date_order": ": 12/08/2025", - "periode":"01/09/2025 au 30/09/2025", - "total_ht": "12 530,18", - "tva": "2 506,04", - "total_ttc": "15 036,22", + "periode":"01/10/2025 au 31/10/2025", + "total_ht": "12 650", + "tva": "2 530", + "total_ttc": "15 279", "client_name": "BVD Fr (Bureau Vallée)", "client_address": "25 rue du Gros Caillou", "client_zip_ville": "78340 – Les Clayes-sous-Bois", "client_pays": "France", "packs": "Prestation de service ", "detail_packs": "Accompagnement au déploiement de l'ERP CoQliQo", - "qty": "22 jours (-1h)", + "qty": "23 jours", "unit_price": "550 €", - "montant": "12 021,43 €", + "montant": "12 650 €", - "invoice_id": "FACT_20250919", - "invoice_date": "30/09/2025", - "due_date": "15/10/2025", + "invoice_id": "FACT_20251020", + "invoice_date": "31/10/2025", + "due_date": "15/11/2025", "orign_order": "N/A", } } @@ -2756,7 +2756,7 @@ def ManualSendInvoiceEmailRIB_CIC_BureauVallee(diction): #print(" ### body 22 = ", body) sourceHtml = template.render(json_data=body["params"]) - orig_file_name = "invoice_FACT_20250919.pdf" + orig_file_name = "invoice_FACT_20251020.pdf" outputFilename = str(MYSY_GV.INVOICE_DIRECTORY) + str(orig_file_name) # open output file for writing (truncated binary) diff --git a/email_queu/email_queu_mgt.py b/email_queu/email_queu_mgt.py index 4fe5aa9..e529d0c 100644 --- a/email_queu/email_queu_mgt.py +++ b/email_queu/email_queu_mgt.py @@ -131,7 +131,7 @@ def Add_Message_To_Mail_Queue(tab_files, diction): new_data['partner_owner_recid'] = str(my_partner['recid']) - print(" ### mail to store in queue = ", new_data) + #print(" ### mail to store in queue = ", new_data) inserted_id = MYSY_GV.dbname['mail_queue'].insert_one(new_data).inserted_id if (not inserted_id): diff --git a/emargement.py b/emargement.py index 2ce30c7..620dff2 100644 --- a/emargement.py +++ b/emargement.py @@ -600,7 +600,7 @@ def GetTableauEmargement(diction): RetObject.append(mycommon.JSONEncoder().encode(user)) val_tmp = val_tmp + 1 - print(" ### RetObject = ", RetObject) + #print(" ### RetObject = ", RetObject) return True, RetObject except Exception as e: exc_type, exc_obj, exc_tb = sys.exc_info() diff --git a/ent_alert_messages.py b/ent_alert_messages.py new file mode 100644 index 0000000..fd39b9e --- /dev/null +++ b/ent_alert_messages.py @@ -0,0 +1,350 @@ +""" +Ce fichier permet de gerer les messages à afficher sur l'ENT une fois un apprenant connecté. +Ce sont par exemples les messages d'alerte, d'info, etc. + +Un message est definit par : +- code +- priorité (Urgent (maximum), Important, Info) +- message (1000 caractères max) +- debut affichage +- fin affichage +""" +import bson +import pymongo +from pymongo import MongoClient +import json +from bson import ObjectId +import re +from datetime import datetime +import prj_common as mycommon +import secrets +import inspect +import sys, os +import csv +import pandas as pd +from pymongo import ReturnDocument +import GlobalVariable as MYSY_GV +from math import isnan +import GlobalVariable as MYSY_GV +import ela_index_bdd_classes as eibdd +import email_mgt as email +import jinja2 +from flask import send_file +from xhtml2pdf import pisa + +""" +Ajout d'un nouveau message +Un message est definit par : +- code +- priorité (Urgent (maximum), Important, Info) +- message (1000 caractères max) +- debut affichage +- fin affichage +""" +def Add_Ent_Alert_Message(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'code', 'priorite', 'message', 'date_debut', 'date_fin'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'code', 'priorite', 'message', 'date_debut', 'date_fin'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans la liste des arguments ") + return False, " Les informations fournies sont incorrectes" + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + + # Verifier que ce code n'existe pas déjà + is_existe_alert_message = MYSY_GV.dbname['ent_alert_message'].count_documents({'code':str(diction['code']), + 'valide':'1', + 'partner_owner_recid':str(my_partner['recid'])}) + + + if( is_existe_alert_message > 0 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Un message avec le code '" + str(diction['code']) + "' existe déjà ") + return False, " Un message avec le code '" + str(diction['code']) + "' existe déjà " + + + local_status = mycommon.CheckisDate(diction['date_debut']) + if (local_status is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + "La date debut n'est pas au format jj/mm/aaaa ") + + return False, " La date debut n'est pas au format jj/mm/aaaa " + + + local_status = mycommon.CheckisDate(diction['date_fin']) + if (local_status is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + "La date fin n'est pas au format jj/mm/aaaa ") + + return False, " La date fin n'est pas au format jj/mm/aaaa " + + + if( diction['priorite'] not in MYSY_GV.ENT_MESSAGE_PRIORITE ): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Le niveau de priorité est invalide ") + + return False, " Le niveau de priorité est invalide " + + + new_data = diction + del diction['token'] + + new_data['valide'] = "1" + new_data['locked'] = "0" + + new_data['creation_date'] = str(datetime.now()) + new_data['update_by'] = str(my_partner['_id']) + new_data['partner_owner_recid'] = str(my_partner['recid']) + + inserted_id = MYSY_GV.dbname['ent_alert_message'].insert_one(new_data).inserted_id + if (not inserted_id): + mycommon.myprint( + " Impossible de créer le message d'alerte (2) ") + return False, " Impossible de créer le message d'alerte (2) " + + + return True, " Le message d'alerte a été correctement ajouté" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de créer le message d'alerte " + + +""" +Mise à jour d'un message d'alerte ENT +""" + +def Update_Ent_Alert_Message(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'code', 'priorite', 'message', 'date_debut', 'date_fin', '_id'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', '_id',] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans la liste des arguments ") + return False, " Les informations fournies sont incorrectes" + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + new_data = diction + + # Verifier que la domaine + is_existe_cdtion_paiement = MYSY_GV.dbname['ent_alert_message'].count_documents( + {'_id': ObjectId(str(diction['_id'])), + 'valide': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (is_existe_cdtion_paiement < 0): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant du message est invalide ") + return False, " L'identifiant du message est invalide " + + + # Verifier que code n'est pas pris par un autre domaine + is_existe_class_domaine = MYSY_GV.dbname['ent_alert_message'].count_documents({'code': str(diction['code']), + 'valide': '1', + 'partner_owner_recid': str( + my_partner['recid']), + "_id": {"$ne": ObjectId( + str(diction['_id']))} + }) + + if (is_existe_class_domaine > 0): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Un message avec le code '" + str(diction['code']) + "' existe déjà ") + return False, " Un message avec le code '" + str(diction['code']) + "' existe déjà " + + if( "date_debut" in diction.keys() ): + local_status = mycommon.CheckisDate(diction['date_debut']) + if (local_status is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + "La date debut n'est pas au format jj/mm/aaaa ") + + return False, " La date debut n'est pas au format jj/mm/aaaa " + + if ("date_fin" in diction.keys()): + local_status = mycommon.CheckisDate(diction['date_fin']) + if (local_status is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + "La date fin n'est pas au format jj/mm/aaaa ") + + return False, " La date fin n'est pas au format jj/mm/aaaa " + + if ("priorite" in diction.keys()): + if (diction['priorite'] not in MYSY_GV.ENT_MESSAGE_PRIORITE): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Le niveau de priorité est invalide ") + + return False, " Le niveau de priorité est invalide " + + local_id = str(diction['_id']) + + del diction['token'] + del diction['_id'] + + new_data['date_update'] = str(datetime.now()) + new_data['update_by'] = str(my_partner['_id']) + + data_cle = {} + data_cle['partner_owner_recid'] = str(my_partner['recid']) + data_cle['_id'] = ObjectId(local_id) + data_cle['valide'] = "1" + data_cle['locked'] = "0" + + result = MYSY_GV.dbname['class_domaine'].find_one_and_update( + data_cle, + {"$set": new_data}, + upsert=False, + return_document=ReturnDocument.AFTER + ) + + if ("_id" not in result.keys()): + mycommon.myprint( + " Impossible de mettre à jour le message (2) ") + return False, " Impossible de mettre à jour le message (2) " + + return True, " Le message de formation a été correctement mis à jour" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de mettre à jour le message " + + + +""" +Recuperer la liste des message d'alerte ENT d'un partenaire +""" +def Get_List_Ent_Alert_Message(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', ] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans la liste des arguments ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + print(" ## my_partner = ",my_partner) + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['partner_owner_recid'] = str(my_partner['partner_owner_recid']) + data_cle['valide'] = "1" + data_cle['locked'] = "0" + + + RetObject = [] + val_tmp = 0 + + for retval in MYSY_GV.dbname['ent_alert_message'].find(data_cle).sort([ ("priorite", pymongo.ASCENDING), ("_id", pymongo.DESCENDING), ]): + user = retval + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + RetObject.append(mycommon.JSONEncoder().encode(user)) + + return True, RetObject + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer la liste des message " + + diff --git a/formulaire_mgt.py b/formulaire_mgt.py index bee5643..2e9a3b1 100644 --- a/formulaire_mgt.py +++ b/formulaire_mgt.py @@ -586,6 +586,8 @@ def Delete_Question_Formulaire(diction): """ Fonction pour supprimer un formulaire +Important : +- Verifier que le formulaire n'est pas utilisée par defaut sur une formation. Collection : myclass_default_document """ def Delete_Formulaire(diction): try: @@ -638,6 +640,31 @@ def Delete_Formulaire(diction): mycommon.myprint(" L'identifiant du formulaire est invalide ") return False, " L'identifiant du formulaire est invalide " + + """ + Verifier que le formualire n'est pas utilisé dans la collection myclass_default_document + """ + is_myclass_default_document_exist =MYSY_GV.dbname['myclass_default_document'].count_documents({'$or': [ + {'partner_owner_recid': str(my_partner['recid']), + 'QUESTION_POSITIONNEMENT': str(diction['form_id'])} + , + {'partner_owner_recid': str(my_partner['recid']), + 'EVAL_FORMATION_HOT': str(diction['form_id']), + }, + {'partner_owner_recid': str(my_partner['recid']), + 'EVAL_FORMATION_COLD': str(diction['form_id']), + }, + {'partner_owner_recid': str(my_partner['recid']), + 'EVAL_FORMATION_FORMATEUR': str(diction['form_id']), + } + ]} + + ) + + if (is_myclass_default_document_exist > 0): + mycommon.myprint(" Ce formulaire est utilisé comme formulaire par défaut sur des formations . Suppression annulée ") + return False, " Ce formulaire est utilisé comme formulaire par défaut sur des formations . Suppression annulée " + qry = {'partner_owner_recid': str(my_partner['recid']),'valide': '1', 'locked': '0', '_id': ObjectId(str(diction['form_id']))} delete_formulaire = MYSY_GV.dbname['formulaire'].delete_many(qry) diff --git a/main.py b/main.py index dcddf78..255f4b2 100644 --- a/main.py +++ b/main.py @@ -101,6 +101,7 @@ import ent_student_common as ent_student_common import groupe_client_mgt as groupe_client_mgt import email_queu.email_queu_mgt as email_queu_mgt import internal_email_mgt as internal_email_mgt +import ent_alert_messages as ent_alert_messages import base_document_automatic_setup as base_document_automatic_setup @@ -2373,6 +2374,52 @@ def unarchive_session(): +""" +API pour Ajouter une UE à une session de formation +important : le système va verifier si cette UE est +paramettrée sur la formation +""" +@app.route('/myclass/api/Add_Update_UE_To_Session/', methods=['POST','GET']) +@crossdomain(origin='*') +def Add_Update_UE_To_Session(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Add_Update_UE_To_Session : payload = ",str(payload)) + localStatus, message= SF.Add_Update_UE_To_Session(payload) + return jsonify(status=localStatus, message=message ) + + + + +""" +API pour supprimer une UE d'une session formation. +Important : : Pour rappel, on est en mode nested json sur la collection session de formation +""" +@app.route('/myclass/api/Delete_UE_From_Session/', methods=['POST','GET']) +@crossdomain(origin='*') +def Delete_UE_From_Session(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Delete_UE_From_Session : payload = ",str(payload)) + localStatus, message= SF.Delete_UE_From_Session(payload) + return jsonify(status=localStatus, message=message ) + + +""" +API pour Recuperer les UE d'une session de formation +""" +@app.route('/myclass/api/Get_List_UE_Given_SessionFormation/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_List_UE_Given_SessionFormation(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_List_UE_Given_SessionFormation : payload = ",str(payload)) + localStatus, message= SF.Get_List_UE_Given_SessionFormation(payload) + return jsonify(status=localStatus, message=message ) + + + + """ API de recuperation de toutes les sessions de formation valides et actives """ @@ -7341,7 +7388,7 @@ API de recuperation de la liste des fichiers attaché à def Get_object_owner_collection_Stored_Files(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### Get_List_object_owner_collection_Stored_Files : payload = ",payload) + print(" ### Get_List_object_owner_collection_Stored_Files : payload = ",) status, retval = attached_file_mgt.Get_List_object_owner_collection_Stored_Files(payload) return jsonify(status=status, message=retval) @@ -7357,7 +7404,7 @@ avec plusieurs filtres def Get_List_object_owner_collection_Stored_Files_With_Filter(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### Get_List_object_owner_collection_Stored_Files_With_Filter : payload = ",payload) + print(" ### Get_List_object_owner_collection_Stored_Files_With_Filter : payload = ",) status, retval = attached_file_mgt.Get_List_object_owner_collection_Stored_Files_With_Filter(payload) return jsonify(status=status, message=retval) @@ -7373,7 +7420,7 @@ avec plusieurs filtres SANS TOKEN def Get_List_object_owner_collection_Stored_Files_With_Filter_No_Token(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### Get_List_object_owner_collection_Stored_Files_With_Filter_No_Token : payload = ",payload) + print(" ### Get_List_object_owner_collection_Stored_Files_With_Filter_No_Token : payload = ",) status, retval = attached_file_mgt.Get_List_object_owner_collection_Stored_Files_With_Filter_No_Token(payload) return jsonify(status=status, message=retval) @@ -9810,6 +9857,24 @@ def Delete_Given_Competence(): return jsonify(status=status, message=retval) + +""" +API pour recuperer la liste de domaines de compétence +""" +@app.route('/myclass/api/Get_Competence_Domaine/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Competence_Domaine(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Competence_Domaine payload = ",payload) + status, retval = competence.Get_Competence_Domaine(payload) + return jsonify(status=status, message=retval) + + + + + + """ API pour ajouter un formulaire """ @@ -11852,7 +11917,7 @@ a un formateur ou par rapport à une formation def Get_Survey_Stat_Data_For_Given_related_collection_id(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### Get_Survey_Stat_Data_For_Given_related_collection_id payload = ",payload) + print(" ### Get_Survey_Stat_Data_For_Given_related_collection_id payload = (trop long)") status, retval = survey_mgt.Get_Survey_Stat_Data_For_Given_related_collection_id(payload) return jsonify(status=status, message=retval) @@ -12832,6 +12897,24 @@ def Cron_Daily_Automatic_Qualiopi_Documents(): +""" +API de test du cron qui va traiter automatiquement les documents à envoyer pour un partenaire donné (partner_owner_recid) +""" +@app.route('/myclass/api/Cron_Daily_Automatic_Qualiopi_Documents_For_Given_Partner/', methods=['POST', 'GET']) +@crossdomain(origin='*') +def Cron_Daily_Automatic_Qualiopi_Documents_For_Given_Partner(): + payload = mycommon.strip_dictionary(request.form.to_dict()) + mycommon.myprint(" ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents_For_Given_Partner : payload = ") + print(" ### CRONNN Cron_Daily_Automatic_Qualiopi_Documents_For_Given_Partner : payload = ", payload) + status, retval = Job_Cron.Cron_Daily_Automatic_Qualiopi_Documents_For_Given_Partner(payload) + print(" FIN traitement Cron_Daily_Automatic_Qualiopi_Documents_For_Given_Partner localStatus = ", status) + return jsonify(status=status, message="OK" ) + + + + + + """ API qui permet d'envoyer les emails qui sont dans file d'attente des emails """ @@ -14505,6 +14588,48 @@ def Get_Given_Class_List_Default_Documents_For_Given_Type_Doc(): +""" +API pour ajouter un message d'alert ENT +""" +@app.route('/myclass/api/Add_Ent_Alert_Message/', methods=['POST','GET']) +@crossdomain(origin='*') +def Add_Ent_Alert_Message(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Add_Ent_Alert_Message payload = ",payload) + status, retval = ent_alert_messages.Add_Ent_Alert_Message(payload) + return jsonify(status=status, message=retval) + + + +""" +API pour mettre à jour un message d'alert ENT +""" +@app.route('/myclass/api/Update_Ent_Alert_Message/', methods=['POST','GET']) +@crossdomain(origin='*') +def Update_Ent_Alert_Message(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Update_Ent_Alert_Message payload = ",payload) + status, retval = ent_alert_messages.Update_Ent_Alert_Message(payload) + return jsonify(status=status, message=retval) + + +""" +API pour recuperer la liste des messages d'alert ENT d'un partenaire +""" +@app.route('/myclass/api/Get_List_Ent_Alert_Message/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_List_Ent_Alert_Message(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_List_Ent_Alert_Message payload = ",payload) + status, retval = ent_alert_messages.Get_List_Ent_Alert_Message(payload) + return jsonify(status=status, message=retval) + + + + if __name__ == '__main__': diff --git a/model_planning_sequence_mgt.py b/model_planning_sequence_mgt.py index c3a477e..3c9d1f7 100644 --- a/model_planning_sequence_mgt.py +++ b/model_planning_sequence_mgt.py @@ -646,7 +646,7 @@ def Get_Given_Sequence_Planning_Model_With_Option(diction): new_lines_data.append(new_planning_line_node) - print(" ### new_lines_data = ", new_lines_data) + #print(" ### new_lines_data = ", new_lines_data) RetObject = {} RetObject['header_data'] = mycommon.JSONEncoder().encode(header_data) diff --git a/survey_mgt.py b/survey_mgt.py index 9b3c75e..4f09cc1 100644 --- a/survey_mgt.py +++ b/survey_mgt.py @@ -639,7 +639,7 @@ def Survey_Send_Notification_Sur_Seuil_Alert(diction): """ formateur_data = {} - if( session_data and "formateur_id" in session_data.keys() ): + if( session_data and "formateur_id" in session_data.keys() and session_data['formateur_id']): formateur_data_tmp = MYSY_GV.dbname["ressource_humaine"].find_one({'_id': ObjectId(str(session_data['formateur_id'])), @@ -1136,6 +1136,7 @@ def Init_Survey_Tab_For_All_Session_Inscrit(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " L'identifiant de l'inscrit est invalide ") return False, " L'identifiant de l'inscrit est invalide " + server_diction = {} server_diction['token'] = diction['token'] server_diction['session_id'] = diction['session_id'] @@ -2411,7 +2412,7 @@ def Send_Survey_TabIds(diction): 'valide': '1', 'locked': '0', 'partner_recid': str(my_partner['recid'])}, {'_id':1, 'nom':1, 'prenom':1, 'email':1, 'civilite':1}) - print(" ### local_survey_retval = ",local_survey_retval) + #print(" ### local_survey_retval = ",local_survey_retval) courrier_ref_interne = "" if ( "survey_type" in local_survey_retval.keys() and local_survey_retval['survey_type'] == "pos"): courrier_ref_interne = "QUESTION_POSITIONNEMENT" @@ -3251,7 +3252,7 @@ def Get_List_Survey_with_filter(diction): RetObject = [] val_tmp = 0 - qry = {"partner_owner_recid": str(my_partner['recid']), 'valide': '1', 'locked': '0'} + qry = {"partner_owner_recid": str(my_partner['recid']), 'valide': '1', 'locked': '0', 'survey_type':str(diction['formulaire_type'])} query_with_filter = {'$and': [qry, filt_session_id, filt_related_collection, filt_related_collection_id, filt_survey_internal_code]} diff --git a/unite_enseignement_mgt.py b/unite_enseignement_mgt.py index 40a4248..d8650c3 100644 --- a/unite_enseignement_mgt.py +++ b/unite_enseignement_mgt.py @@ -532,6 +532,7 @@ Suppression d'une UE Si elle n'est pas utilisée regles : on ne peut supprimer une UE que si elle n'est pas utilisée dans une formation +et pas utilisé dans une évaluation (collection : note_evaluation) ou un conseil de class (collection : jury) """ def Delete_Given_Unite_Enseignement(diction): @@ -596,6 +597,34 @@ def Delete_Given_Unite_Enseignement(diction): str(inspect.stack()[0][3]) + " Cette UE est actuellement utilisée dans "+str(is_ue_used_in_class_count)+" formation. Impossible de la supprimer ") return False, " Cette UE est actuellement utilisée dans "+str(is_ue_used_in_class_count)+" formation. Impossible de la supprimer " + """ + Verifier que l'UE n'est pas utilisé dans une évaluation + """ + is_ue_used_in_eval = MYSY_GV.dbname['note_evaluation'].count_documents({'class_eu_id': str(diction['_id']), + 'partner_owner_recid': my_partner[ + 'recid']}) + + if (is_ue_used_in_eval > 0): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Cette UE est utilisée dans " + str( + is_ue_used_in_eval) + " évaluation(s). Suppression annulée") + return False, " Cette UE est utilisée dans " + str( + is_ue_used_in_eval) + " évaluation(s). Suppression annulée " + + """ + Verifier que l'UE n'est pas utilisé dans un conseil de classe (collection : jury) + """ + is_ue_used_in_jury = MYSY_GV.dbname['jury'].count_documents({'ue_id': str(diction['_id']), + 'partner_owner_recid': my_partner[ + 'recid']}) + + if (is_ue_used_in_jury > 0): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Cette UE est utilisée dans " + str( + is_ue_used_in_jury) + " Conseil(s) de classe ou Jury(s). Suppression annulée") + return False, " Cette UE est utilisée dans " + str( + is_ue_used_in_jury) + " Conseil(s) de classe ou Jury(s). Suppression annulée " + qry = {'_id':ObjectId(str(diction['_id'])), 'partner_owner_recid':str(my_partner['recid'])}