From 2936a4e17a845e4c1918778f106693eb99567433 Mon Sep 17 00:00:00 2001 From: cherif Date: Thu, 27 Feb 2025 19:43:17 +0100 Subject: [PATCH] 27/02/2025 - 21h --- .idea/workspace.xml | 33 +- GlobalVariable.py | 3 +- Inscription_mgt.py | 191 +- Job_Cron.py | 369 +- Job_Cron_Common.py | 1050 ++++ Log/log_file.log | 11704 +++++++++++++++++++++++++++++++++++++ Session_Formation.py | 299 +- email_inscription_mgt.py | 4 +- main.py | 38 +- module_editique.py | 7 +- partners.py | 1 + prj_common.py | 224 +- 12 files changed, 13776 insertions(+), 147 deletions(-) create mode 100644 Job_Cron_Common.py diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 4be0834..d575706 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,14 +1,19 @@ - - + + + + - + + - + + + @@ -464,7 +469,6 @@ - @@ -489,6 +493,7 @@ - \ No newline at end of file diff --git a/GlobalVariable.py b/GlobalVariable.py index 0c4be13..5a02ac5 100644 --- a/GlobalVariable.py +++ b/GlobalVariable.py @@ -628,7 +628,8 @@ Pour mettre en place un système de configuration global, on va definir les vale PARTNER_BASE_CONFIG_NAME = ['tva', 'smtp_server', 'smtp_user', 'smtp_user_pwd', 'smtp_count_from_name', 'smtp_count_port', 'partner_smtp', 'partner_jour_heure', 'nb_relance_auto', 'relance_auto', 'frequence_relance_auto', 'session_warning', 'session_warning_lead_time', - 'recyclage_warning', 'recyclage_warning_lead_time'] + 'recyclage_warning', 'recyclage_warning_lead_time', + 'preinscription_notification_email', 'inscription_notification_email'] """ diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 3ed441d..8cb4285 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -611,19 +611,28 @@ def AddStagiairetoClass(diction): ## Envoie de l'email de preinscription mail_data = {} + mail_data['token'] = diction['token'] mail_data['email'] = diction['email'] mail_data['class_internal_url'] = diction['class_internal_url'] mail_data['session_id'] = diction['session_id'] mail_data['inscription_id'] = ret_val['_id'] #print(" ### l'inscription est ok, il faut declencher l'envoi des email a "+str(mail_data)) - local_status, message = SendPre_InscriptionEmail(mail_data) - if( local_status is False): - mycommon.myprint(" WARNING : Impossible d'envoyer le mail de preinscriton à "+ - str(inspect.stack()[0][3]) + " - l'adresse email " + str( - mydata['email']) + " pour la session " + str(mydata['session_id']) + " ") + """ + 26/02/2025 : + Si le paramettre, 'inscription_notification_email' de la collection 'base_partner_setup' est à 1, + alors on envoie un email de notification à l'apprenant + """ + local_insc_status, local_insc_retval = mycommon.Is_Partnair_Prenscription_Notification( + {'token': diction['token']}) + if (local_insc_status and local_insc_retval == "1"): + local_status, message = SendPre_InscriptionEmail(mail_data) + if( local_status is False): + mycommon.myprint(" WARNING : Impossible d'envoyer le mail de preinscriton à "+ + str(inspect.stack()[0][3]) + " - l'adresse email " + str( + mydata['email']) + " pour la session " + str(mydata['session_id']) + " ") - Warning_message = " WARNING : Impossible d'envoyer le mail de preinscriton à "+ str(inspect.stack()[0][3]) + " - l'adresse email " + str( mydata['email']) + " pour la session " + str(mydata['session_id']) + " " + Warning_message = " WARNING : Impossible d'envoyer le mail de preinscriton à "+ str(inspect.stack()[0][3]) + " - l'adresse email " + str( mydata['email']) + " pour la session " + str(mydata['session_id']) + " " else: @@ -1276,8 +1285,17 @@ def UpdateStagiairetoClass(diction): # Il s'agit d'envoyer le message de confirmation d'une inscription email_data['partner_owner_recid'] = str(partner_recid) - local_status, local_message = email_session.incription_training_confirmation_mail(email_data) - message_for_historic = message_for_historic + " : Email Inscription " + + """ + 26/02/2025 : + Si le paramettre, 'inscription_notification_email' de la collection 'base_partner_setup' est à 1, + alors on envoie un email de notification à l'apprenant + """ + local_insc_status, local_insc_retval = mycommon.Is_Partnair_Inscription_Notification( + {'token': diction['token']}) + if (local_insc_status and local_insc_retval == "1"): + local_status, local_message = email_session.incription_training_confirmation_mail(email_data) + message_for_historic = message_for_historic + " : Email Inscription " """ Update du 28/12/2023 @@ -1625,6 +1643,7 @@ def SendInscriptionConfirmation(diction): return False, " Impossible d'envoyer le mail de confirmation" + data_mail = {} # 1 - Recuperation des données de la formation local_class = MYSY_GV.dbname['myclass'].find({'internal_url':str(diction['class_internal_url'])}) @@ -1693,9 +1712,19 @@ def SendInscriptionConfirmation(diction): data_mail['code_session'] = code_session data_mail['partner_owner_recid'] = str(partner_recid) - local_status, local_message = email_session.incription_training_confirmation_mail(data_mail) - return local_status, "La confirmation d'inscription a bien ete envoyée" + """ + 26/02/2025 : + Si le paramettre, 'inscription_notification_email' de la collection 'base_partner_setup' est à 1, + alors on envoie un email de notification à l'apprenant + """ + local_insc_status, local_insc_retval = mycommon.Is_Partnair_Inscription_Notification( + {'token': diction['token']}) + if (local_insc_status and local_insc_retval == "1"): + local_status, local_message = email_session.incription_training_confirmation_mail(data_mail) + return local_status, "La confirmation d'inscription a bien ete envoyée" + else: + return True, "La notification par email des inscriptions n'est pas activée." except Exception as e: exc_type, exc_obj, exc_tb = sys.exc_info() @@ -1712,7 +1741,7 @@ def SendPre_InscriptionEmail(diction): Verification de la liste des champs obligatoires """ - field_list_obligatoire = [ 'email', 'session_id', 'inscription_id'] + field_list_obligatoire = [ 'email', 'session_id', 'inscription_id', 'token'] for val in field_list_obligatoire: if val not in diction: mycommon.myprint( @@ -1723,7 +1752,6 @@ def SendPre_InscriptionEmail(diction): data_mail = {} - # 2 - Recuperation des données de l'inscription local_session = MYSY_GV.dbname['inscription'].find({'session_id':str(diction['session_id']), 'email':str(diction['email']), @@ -1856,7 +1884,15 @@ def SendPre_InscriptionEmail(diction): #print(" Pre_incription_training_confirmation_mail DATA = ",data_mail ) # Envoi de l'email de confirmation au demandeur de la formation - local_status, local_message = email_session.Pre_incription_training_confirmation_mail(data_mail) + """ + 26/02/2025 : + Si le paramettre, 'inscription_notification_email' de la collection 'base_partner_setup' est à 1, + alors on envoie un email de notification à l'apprenant + """ + local_insc_status, local_insc_retval = mycommon.Is_Partnair_Prenscription_Notification( + {'token': diction['token']}) + if (local_insc_status and local_insc_retval == "1"): + local_status, local_message = email_session.Pre_incription_training_confirmation_mail(data_mail) # Envoi de l'email de notification au formateur @@ -2507,7 +2543,7 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): if (local_controle_status is False): return local_controle_status, local_controle_message - print(" #### local_controle_message = ", local_controle_message) + #print(" #### local_controle_message = ", local_controle_message) df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';', encoding_errors='ignore', skipinitialspace=True) df = df.fillna('') @@ -6409,78 +6445,85 @@ def AcceptAttendeeInscription(diction): Verification s'il y a une inscription LMS, au quel cas, on l'annule aussi """ - email_data = {} - email_data['nom'] = nom - email_data['prenom'] = prenom - email_data['email'] = email - email_data['date_du'] = date_du - email_data['date_au'] = date_au - email_data['title'] = class_title - email_data['partner_owner_recid'] = str(partner_recid) + """ + 26/02/2025 : + Si le paramettre, 'inscription_notification_email' de la collection 'base_partner_setup' est à 1, + alors on envoie un email de notification à l'apprenant + """ + local_insc_status, local_insc_retval = mycommon.Is_Partnair_Inscription_Notification({'token':diction['token']}) + if( local_insc_status and str(local_insc_retval) == "1"): + email_data = {} + email_data['nom'] = nom + email_data['prenom'] = prenom + email_data['email'] = email + email_data['date_du'] = date_du + email_data['date_au'] = date_au + email_data['title'] = class_title + email_data['partner_owner_recid'] = str(partner_recid) - if( "code_session" in local_session.keys()): - email_data['code_session'] = local_session['code_session'] - else: - email_data['code_session'] = "" + if( "code_session" in local_session.keys()): + email_data['code_session'] = local_session['code_session'] + else: + email_data['code_session'] = "" - if ("date_debut" in local_session.keys()): - email_data['date_debut'] = local_session['date_debut'] - else: - email_data['date_debut'] = "" + if ("date_debut" in local_session.keys()): + email_data['date_debut'] = local_session['date_debut'] + else: + email_data['date_debut'] = "" - if ("distantiel" in local_session.keys()): - email_data['distantiel'] = local_session['distantiel'] - else: - email_data['distantiel'] = "" + if ("distantiel" in local_session.keys()): + email_data['distantiel'] = local_session['distantiel'] + else: + email_data['distantiel'] = "" - if ("presentiel" in local_session.keys()): - email_data['presentiel'] = local_session['presentiel'] - else: - email_data['presentiel'] = "" + if ("presentiel" in local_session.keys()): + email_data['presentiel'] = local_session['presentiel'] + else: + email_data['presentiel'] = "" - if ("session_ondemande" in local_session.keys()): - email_data['session_ondemande'] = local_session['session_ondemande'] - else: - email_data['session_ondemande'] = "" + if ("session_ondemande" in local_session.keys()): + email_data['session_ondemande'] = local_session['session_ondemande'] + else: + email_data['session_ondemande'] = "" - if ("adresse" in local_session.keys()): - email_data['adresse'] = local_session['adresse'] - else: - email_data['adresse'] = "" + if ("adresse" in local_session.keys()): + email_data['adresse'] = local_session['adresse'] + else: + email_data['adresse'] = "" - if ("code_postal" in local_session.keys()): - email_data['code_postal'] = local_session['code_postal'] - else: - email_data['code_postal'] = "" + if ("code_postal" in local_session.keys()): + email_data['code_postal'] = local_session['code_postal'] + else: + email_data['code_postal'] = "" - if ("ville" in local_session.keys()): - email_data['ville'] = local_session['ville'] - else: - email_data['ville'] = "" + if ("ville" in local_session.keys()): + email_data['ville'] = local_session['ville'] + else: + email_data['ville'] = "" - if ("pays" in local_session.keys()): - email_data['pays'] = local_session['pays'] - else: - email_data['pays'] = "" + if ("pays" in local_session.keys()): + email_data['pays'] = local_session['pays'] + else: + email_data['pays'] = "" - if ("formateur" in local_session.keys()): - email_data['formateur'] = local_session['formateur'] - else: - email_data['formateur'] = "" + if ("formateur" in local_session.keys()): + email_data['formateur'] = local_session['formateur'] + else: + email_data['formateur'] = "" - if ("ville" in local_session.keys()): - email_data['ville'] = local_session['ville'] - else: - email_data['ville'] = "" + if ("ville" in local_session.keys()): + email_data['ville'] = local_session['ville'] + else: + email_data['ville'] = "" - local_status, local_message = email_session.incription_training_confirmation_mail(email_data) - if( local_status is False ): - mycommon.myprint(str( - inspect.stack()[0][3]) + " - WARNING : Impossible d'envoyer le mail de notification pour " + str( - diction['email'])) - return_message = return_message + str(" - Impossible d'envoyer le mail de notification pour : " + str(diction['email'])+" \n") - is_warning_message = 1 + local_status, local_message = email_session.incription_training_confirmation_mail(email_data) + if( local_status is False ): + mycommon.myprint(str( + inspect.stack()[0][3]) + " - WARNING : Impossible d'envoyer le mail de notification pour " + str( + diction['email'])) + return_message = return_message + str(" - Impossible d'envoyer le mail de notification pour : " + str(diction['email'])+" \n") + is_warning_message = 1 @@ -10993,8 +11036,6 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat if (is_signature_digital_count == 1): is_partner_digital_signature = "1" - - # Verifier que la session est valide is_session_id_valide = MYSY_GV.dbname['session_formation'].count_documents( {'_id': ObjectId(str(diction['session_id'])), diff --git a/Job_Cron.py b/Job_Cron.py index 85bddf3..e031662 100644 --- a/Job_Cron.py +++ b/Job_Cron.py @@ -13,8 +13,7 @@ from bson import ObjectId import re from datetime import datetime, date, timedelta - - +import Session_Formation import module_editique import partner_base_setup import partner_client @@ -43,7 +42,7 @@ from email.mime.text import MIMEText from email.mime.base import MIMEBase from email import encoders import survey_mgt as survey_mgt - +import Job_Cron_Common as Job_Cron_Common """ Ce job permet d'envoyer les demandes d'enquetes comme les @@ -1130,7 +1129,8 @@ Dans cette collection Alogorithme : -1 - On va aller directement dans le collection 'session_formation' recuperer toutes les session ayant : {'automatic_traitement.actif':'1'} +1 - On va aller directement dans le collection 'session_formation' recuperer toutes les session ayant : {'automatic_traitement.actif':'1', + automatic_traitement.statut != '2' (statut 2 = Done) } 2 - Pour chacune des line retournées, on va faire le calcul manuellement (on pas un nombre gigantesque de session, ca peut donc passer pendant qqtps, deplus ce sont des traitement noctures, donc ca devrait aller. @@ -1138,8 +1138,367 @@ qqtps, deplus ce sont des traitement noctures, donc ca devrait aller. - si start_date session = Date Today + nb_jour_action, alors il faut lancer l'edition des documents. A la fin, ne surtout pas oublié de mettre à jour la ligne "session_formation.automatic_traitement" avec les info : - actif = -1 + - statut = 2 (done) - date_traitement = date du jour - statut traitement : - commentaire : combien de document envoyé. -""" \ No newline at end of file +""" + +def Cron_Daily_Document_Sending(): + try: + print(" Cron : In function = Cron_Daily_Document_Sending") + + + 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['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(" ## Session à traiter = ", my_session) + + print(" # Date Start Session = ", my_session['date_debut']) + print(" # Date End Session = ", my_session['date_fin']) + #print(" # automatic_traitement = ", my_session['automatic_traitement']) + + for data_automatic_traitement in my_session['automatic_traitement'] : + + 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_start_date_added_nb_jour_action = local_session_start_date + timedelta(days=nb_jour_action_Int) + local_session_start_date_added_nb_jour_action_formated = str(local_session_start_date_added_nb_jour_action.strftime("%d/%m/%Y")) + + print(" ### CMP 1 local_session_start_date_added_nb_jour_action = ", local_session_start_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')) + + print(" ### delta day = ", datetime.strptime(str(todays_date).strip(), '%d/%m/%Y') - local_session_start_date ) + + if (local_session_start_date_added_nb_jour_action > datetime.strptime(str(todays_date).strip(), '%d/%m/%Y')): + print(" ### SUPPPPPP : Action à faire dans le futur ") + + elif (local_session_start_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'])) + + + elif (local_session_start_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( + {'_id':ObjectId(data_automatic_traitement['courrier_template_type_document_id']), + '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) + + + + """ + Mettre à jour le document + "" " + + 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 ): + print(" #### local_update.matched_count = ", local_update.matched_count) + 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'])) + """ + return True, "" + + + 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) + + + +""" +Cette fonction prend en argument : +- L'_id de la session de formation +- Le type de document (ref_interne) +- Le partner_owner_recid (ceci pour aller choisir les documents qu'il a configurés) + +puis procede à l'envoie des document +""" +def Send_document_from_base_document_automatic_setup(diction): + try: + diction = mycommon.strip_dictionary(diction) + """ + Verification des input acceptés + """ + field_list = [ 'session_id', 'document_ref_intern','partner_owner_recid', + 'courrier_template_type_document_ref_interne', 'courrier_template_type_document_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 = [ 'session_id', 'document_ref_intern', '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 liste ") + return False, " Les informations fournies sont incorrectes" + + + """ + On va aller recuperer le courrier configuré par default + """ + + local_status, my_partner = mycommon.Get_Connected_User_Partner_Data_From_RecID( + str(diction['partner_owner_recid'])) + if (local_status is not True): + return local_status, my_partner + + + print(" ### diction['document_ref_intern'] = ", diction['document_ref_intern']) + + if( str(diction['document_ref_intern']) == 'CONVENTION_STAGIAIRE_ENTREPRISE' or str(diction['document_ref_intern']) == 'CONVENTION_STAGIAIRE_INDIVIDUELLE' ): + + local_diction = {} + local_diction['token'] = my_partner['token'] + local_diction['session_id'] = diction['session_id'] + local_diction['courrier_template_id'] = "" + + print(" ### local_diction for Prepare_and_Send_Default_Convention_From_Session_By_PDF= ", local_diction) + + #local_status, local_retval = Session_Formation.Prepare_and_Send_Default_Convention_From_Session_By_PDF(local_diction) + + local_diction_by_email = {} + local_diction_by_email['token'] = my_partner['token'] + local_diction_by_email['session_id'] = diction['session_id'] + local_diction_by_email['courrier_template_id'] = "" + local_diction_by_email['email_test'] = "" + local_diction_by_email['email_production'] = "" + local_diction_by_email['request_digital_signature'] = "1" + + + tab_files = [] + Folder = "" + #local_status, local_retval = Session_Formation.Prepare_and_Send_Default_Convention_From_Session_By_Email(tab_files, + # Folder, local_diction_by_email) + + elif ( str(diction['document_ref_intern']) == 'CONVOCATION_STAGIAIRE' ): + print(" ### Envoyer les convocations aux participants ") + local_diction_convocation_by_email = {} + local_diction_convocation_by_email = diction + local_diction_convocation_by_email['token'] = my_partner['token'] + + + local_convoc_status, local_convoc_retval = Cron_Session_Convocation_Sending(local_diction_convocation_by_email) + + + + elif ( str(diction['document_ref_intern']) == 'QUESTION_POSITIONNEMENT' ): + print(" ### Initialiser le questionnaire de positionnement ") + print(" ### Envoyer le questionnaire de positionnement ") + + elif ( str(diction['document_ref_intern']) == 'ATTESTATION_FORMATION' ): + print(" ### Initialiser les attestations de formation ") + print(" ### Envoyer les attestations de formation ") + + + return True, "OK Documents " + 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'envoyer automatiquement les documents " + + +""" +Cette fonction permet d'envoyer les convocation par defaut avec les cron +Algo : +1 - Recuperer le modele de document par defaut pour les convocations +2 - Envoyer les convocations +""" +def Cron_Session_Convocation_Sending(diction): + try: + + diction = mycommon.strip_dictionary(diction) + """ + Verification des input acceptés + """ + field_list = [ 'token', 'session_id', 'document_ref_intern','partner_owner_recid', + 'courrier_template_type_document_ref_interne', 'courrier_template_type_document_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', 'document_ref_intern','partner_owner_recid', + 'courrier_template_type_document_ref_interne', 'courrier_template_type_document_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 liste ") + return False, " Les informations fournies sont incorrectes" + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data({'token': str(diction['token'])}) + if (local_status is not True): + return local_status, my_partner + + + local_diction = {} + local_diction['ref_interne'] = "CONVOCATION_STAGIAIRE" + local_diction['type_doc'] = "email" + local_diction['partner_owner_recid'] = str(diction['partner_owner_recid']) + local_diction['default'] = "1" + + courrier_data_status, courrier_data_retval = mycommon.Get_Courrier_Template_Include_Default_Data(local_diction) + if (courrier_data_status is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Impossible de récuperer le modèle de courrier 'CONVOCATION_STAGIAIRE', (type : Email) ") + return False, " Impossible de récuperer le modèle de courrier 'CONVOCATION_STAGIAIRE', (type : Email) " + + if ("contenu_doc" not in courrier_data_retval.keys() or str(courrier_data_retval['contenu_doc']) == ""): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Le modèle de courrier 'CONVOCATION_STAGIAIRE', (type : Email) n'est pas correctement configuré ") + return False, " Le modèle de courrier 'CONVOCATION_STAGIAIRE', (type : Email) n'est pas correctement configuré" + + + print(" ### On a trouver un modele de convocation (type EMAIL) par defaut OKK") + + local_diction_convocation_by_email = {} + local_diction_convocation_by_email['token'] = my_partner['token'] + local_diction_convocation_by_email['session_id'] = diction['session_id'] + local_diction_convocation_by_email['courrier_template_id'] = str(courrier_data_retval['_id']) + local_diction_convocation_by_email['email_test'] = "" + local_diction_convocation_by_email['email_production'] = "" + + + tab_files = [] + Folder = "" + #local_status, local_retval = Job_Cron_Common.Prepare_and_Send_Convocation_From_Session_By_Email(tab_files, + # Folder, local_diction_convocation_by_email) + + + """ + Aller chercher le modele de courrier de type PDF + """ + + local_diction = {} + local_diction['ref_interne'] = "CONVOCATION_STAGIAIRE" + local_diction['type_doc'] = "pdf" + local_diction['partner_owner_recid'] = str(diction['partner_owner_recid']) + local_diction['default'] = "1" + + courrier_data_status, courrier_data_retval_pdf = mycommon.Get_Courrier_Template_Include_Default_Data(local_diction) + if (courrier_data_status is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Impossible de récuperer le modèle de courrier 'CONVOCATION_STAGIAIRE', (type : PDF) ") + return False, " Impossible de récuperer le modèle de courrier 'CONVOCATION_STAGIAIRE', (type : PDF) " + + if ("contenu_doc" not in courrier_data_retval_pdf.keys() or str(courrier_data_retval_pdf['contenu_doc']) == ""): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Le modèle de courrier 'CONVOCATION_STAGIAIRE', (type : PDF) n'est pas correctement configuré ") + return False, " Le modèle de courrier 'CONVOCATION_STAGIAIRE', (type : PDF) n'est pas correctement configuré" + + print(" ### On a trouver un modele de convocation (Type : PDF) par defaut OKK") + + + local_diction_convocation_by_PDF = {} + local_diction_convocation_by_PDF['token'] = my_partner['token'] + local_diction_convocation_by_PDF['session_id'] = diction['session_id'] + local_diction_convocation_by_PDF['courrier_template_id'] = str(courrier_data_retval_pdf['_id']) + local_status, local_retval = Job_Cron_Common.Prepare_and_Send_Convocation_From_Session_By_PDF(local_diction_convocation_by_PDF) + + return True, "Les convocations ont été envoyées (CRON) " + 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'envoyer les convocations (CRON) " \ No newline at end of file diff --git a/Job_Cron_Common.py b/Job_Cron_Common.py new file mode 100644 index 0000000..fc32e63 --- /dev/null +++ b/Job_Cron_Common.py @@ -0,0 +1,1050 @@ +""" +Ce fichier contient les fonctions utilisées dans les Crons +Le principe : +Les crons automatisent des fonctions qui existent dans le système avec certaines particularités. + +Pour eviter de surcharger ces fonctions "classique", elles seront reécrites dans ce fichier + +""" +import ast +from calendar import monthrange +from zipfile import ZipFile + +import bson +import pymongo +import xlsxwriter +from pymongo import MongoClient +import json +from bson import ObjectId +import re +from datetime import datetime, date, timedelta + +import Session_Formation +import module_editique +import partner_base_setup +import partner_client +import partner_order +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 +from email.message import EmailMessage +from email.mime.text import MIMEText +from email import encoders +import smtplib +from email.mime.multipart import MIMEMultipart +from email.mime.text import MIMEText +from email.mime.base import MIMEBase +from email import encoders +import survey_mgt as survey_mgt +import attached_file_mgt +import Inscription_mgt as Inscription_mgt +""" +Cette fonction prepare et envoi les conVocation a chaque +participant à la session de formation. + /!\ : 27/02/2025 : Dans le cadre du traitement automatique, + il ne faut pas envoyé de convocation au personnes de la meme session qui ont déjà recues + leur convocation. + Comment faire : + Aller verifier dans la collection : 'courrier_template_tracking_history' si on a un rengistrement avec les + infos suivantes : + - target_collection_recid = '_id' de l'inscrit + - courrier_template_tracking_id = '_id' du type de document (qui se trouve ici : courrier_template_tracking). + (dans la collection 'courrier_template_tracking', on enregistre les type de modèle de documents comme : + CONVOCATION_STAGIAIRE, EMARGEMENT_FORMATION, CONVENTION_STAGIAIRE_ENTREPRISE, etc) +""" +def Prepare_and_Send_Convocation_From_Session_By_Email(tab_files, Folder, diction): + try: + + field_list_obligatoire = ['token', 'session_id', 'courrier_template_id', 'email_test', 'email_production'] + + 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 liste ") + return False, " La valeur '" + val + "' n'est pas presente dans liste" + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_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 la session est valide + is_session_valide = MYSY_GV.dbname['session_formation'].count_documents( + {'_id': ObjectId(str(diction['session_id'])), + 'valide': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (is_session_valide != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de la session est invalide ") + return False, " L'identifiant de la session est invalide " + + + # Verifier qu'il ya bien des inscriptions valides dans la session pour le client + liste_participants = MYSY_GV.dbname['inscription'].find({'session_id': str(diction['session_id']), + 'status': '1', + 'partner_owner_recid': str(my_partner['recid']), + } + ) + + + #print(" ### la liste des liste_participants = ", liste_participants) + + + # Sauvegarde des fichiers joints depuis le front + tab_saved_file_full_path = [] + for file in tab_files: + status, saved_file_full_path = mycommon.Upload_Save_PDF_IMG_File(file, Folder) + if (status is False): + mycommon.myprint("Impossible de récupérer correctement le fichier à importer") + return False, "Impossible de récupérer correctement le fichier à importer" + + tab_saved_file_full_path.append(saved_file_full_path) + + #print(" #### tab_saved_file_full_path = ", tab_saved_file_full_path) + + # Recupération des données du modèle de document + is_convention_by_client = "0" + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'_id': ObjectId(str(diction['courrier_template_id'])), + 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str(my_partner['recid'])} + ) + + if( courrier_template_data and "edit_by_client" in courrier_template_data.keys() and courrier_template_data['edit_by_client'] == "1"): + is_convention_by_client = "1" + + """ + 27/02/2025 : Recuperer les données du type de modèle de courrier : 'courrier_template_type_document' + """ + courrier_template_tracking_data = MYSY_GV.dbname['courrier_template_tracking'].find_one( + {'courrier_template_type_document_ref_interne': str( + courrier_template_data['courrier_template_type_document_ref_interne']), + 'valide': '1', 'locked': '0', + 'partner_owner_recid': str(my_partner['recid'])}) + + print(" EMAIL courrier_template_tracking_data = ", courrier_template_tracking_data) + + if (not courrier_template_tracking_data or courrier_template_tracking_data is None): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant du courrier_template_type_document est invalide ") + return False, " L'identifiant du courrier_template_type_document est invalide " + + if (str(is_convention_by_client) == "0"): + liste_inscription = MYSY_GV.dbname['inscription'].find({'session_id': str(diction['session_id']), + 'status': '1', + 'partner_owner_recid': str(my_partner['recid']), + } + ) + + #print(" ### LIST liste_inscription: ", liste_inscription) + + + for single_inscrit in liste_inscription : + #print(" ### convocation traitement de l'inscrit : ",single_inscrit ) + #field_list_obligatoire = [ 'token', 'inscription_id', 'courrier_template_id', 'email_test', 'email_production' ] + new_diction_no_client = {} + new_diction_no_client['token'] = str(diction['token']) + new_diction_no_client['inscription_id'] = str(single_inscrit['_id']) + new_diction_no_client['courrier_template_id'] = diction['courrier_template_id'] + new_diction_no_client['session_id'] = diction['session_id'] + new_diction_no_client['email_test'] = diction['email_test'] + new_diction_no_client['email_production'] = diction['email_production'] + + """ + 27/02/2025 : Dans le cadre du traitement automatique, + il ne faut pas envoyé de convocation au personnes de la meme session qui ont déjà recues + leur convocation. + Comment faire : + Aller verifier dans la collection : 'courrier_template_tracking_history' si on a un rengistrement avec les + infos suivantes : + - target_collection_recid = '_id' de l'inscrit + - courrier_template_tracking_id = '_id' du type de document (qui se trouve ici : courrier_template_tracking). + (dans la collection 'courrier_template_tracking', on enregistre les type de modèle de documents comme : + CONVOCATION_STAGIAIRE, EMARGEMENT_FORMATION, CONVENTION_STAGIAIRE_ENTREPRISE, etc) + + """ + + qry_courrier_template_tracking_history = {'partner_owner_recid': str(my_partner['recid']), + 'courrier_template_tracking_id': str(courrier_template_tracking_data['_id']), + 'target_collection_recid': str(single_inscrit['_id']), + 'courrier_template_id':diction['courrier_template_id']} + + print(" ### email : qry_courrier_template_tracking_history = ", qry_courrier_template_tracking_history) + + is_convocation_already_sent_count = MYSY_GV.dbname[ + 'courrier_template_tracking_history'].count_documents( + {'partner_owner_recid': str(my_partner['recid']), + 'courrier_template_tracking_id': str(courrier_template_tracking_data['_id']), + 'target_collection_recid': str(single_inscrit['_id']), 'courrier_template_id':diction['courrier_template_id']} + ) + if (is_convocation_already_sent_count == 0): + #print(" ##### new_diction_no_client = ", new_diction_no_client) + local_status, local_retval = Sent_Convocation_Stagiaire_By_Email(tab_saved_file_full_path, Folder, new_diction_no_client) + + if (local_status is False): + mycommon.myprint(" WARNING impossible d'envoyer la convocation a l'apprenant : " + str(single_inscrit['_id']) ) + + + # Traitement de l'eventuel fichier joint + tab_files_to_attache_to_mail = [] + + """ + 25/01/2024 : pour loger une action dans la collection ==> courrier_template_tracking_history + """ + """local_status, local_retval = module_editique.Editic_Log_History_Action(my_partner, courrier_template_data, + str(diction['session_id']), "inscription", str(single_inscrit['_id']))""" + + local_status, local_retval = module_editique.Editic_Log_History_Action_From_courrier_template_type_document_ref_interne( + my_partner, "CONVOCATION_STAGIAIRE", str(diction['session_id']), 'inscription', + str(single_inscrit['_id']), + str(str(courrier_template_data['_id']))) + + else: + print(" EMAIL DE CONVOCATION DEJA ENVOYEEEE ") + + return True, " Les convocations ont été correctement envoyées par emails" + + 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'envoyer les conventions par email " + + +""" +Cette fonction permet de telecharger PDF toutes les conVOCAtion d'une session. +Depuis la session, l'utilisateur choisi le modele PDF et +telecharge les conventions d'entreprise et les conventions individuelles. + +On créé un fichier zip qui sera téléchargé avec toutes les pièces jointes. + + /!\ : 27/02/2025 : Dans le cadre du traitement automatique, + il ne faut pas envoyé de convocation au personnes de la meme session qui ont déjà recues + leur convocation. + Comment faire : + Aller verifier dans la collection : 'courrier_template_tracking_history' si on a un rengistrement avec les + infos suivantes : + - target_collection_recid = '_id' de l'inscrit + - courrier_template_tracking_id = '_id' du type de document (qui se trouve ici : courrier_template_tracking). + (dans la collection 'courrier_template_tracking', on enregistre les type de modèle de documents comme : + CONVOCATION_STAGIAIRE, EMARGEMENT_FORMATION, CONVENTION_STAGIAIRE_ENTREPRISE, etc) + +""" +def Prepare_and_Send_Convocation_From_Session_By_PDF(diction): + try: + field_list_obligatoire = ['token', 'session_id', 'courrier_template_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 liste ") + return False, " La valeur '" + val + "' n'est pas presente dans liste" + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_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 la session est valide + is_session_valide = MYSY_GV.dbname['session_formation'].count_documents( + {'_id': ObjectId(str(diction['session_id'])), + 'valide': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (is_session_valide != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de la session est invalide ") + return False, " L'identifiant de la session est invalide " + + # Stokage des nom de fichier à zipper + list_file_name_to_zip = [] + + + + liste_inscription = MYSY_GV.dbname['inscription'].find({'session_id': str(diction['session_id']), + 'status': '1', + 'partner_owner_recid': str(my_partner['recid']), + } + ) + + """ + for val in liste_inscription_no_client: + print(" ### la liste des liste_inscription_no_client = ", str(val)) + """ + + # Recupération des données du modèle de document + is_convention_by_client = "0" + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'_id': ObjectId(str(diction['courrier_template_id'])), + 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str(my_partner['recid'])} + ) + + if (courrier_template_data and "edit_by_client" in courrier_template_data.keys() and courrier_template_data[ + 'edit_by_client'] == "1"): + is_convention_by_client = "1" + + """ + 27/02/2025 : Recuperer les données du type de modèle de courrier : 'courrier_template_type_document' + """ + courrier_template_tracking_data = MYSY_GV.dbname['courrier_template_tracking'].find_one( + {'courrier_template_type_document_ref_interne':str(courrier_template_data['courrier_template_type_document_ref_interne']), + 'valide':'1', 'locked':'0', + 'partner_owner_recid':str(my_partner['recid'])}) + + if( not courrier_template_tracking_data or courrier_template_tracking_data is None): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant du courrier_template_type_document est invalide ") + return False, " L'identifiant du courrier_template_type_document est invalide " + + + if (str(is_convention_by_client) == "0"): + liste_participants = MYSY_GV.dbname['inscription'].find({'session_id': str(diction['session_id']), + 'status': '1', + 'partner_owner_recid': str(my_partner['recid']), + } + ) + for val in liste_participants: + local_diction = {} + # field_list_obligatoire = ['token', 'session_id', 'courrier_template_id', 'client_id'] + local_diction['token'] = diction['token'] + local_diction['session_id'] = diction['session_id'] + local_diction['courrier_template_id'] = diction['courrier_template_id'] + local_diction['inscription_id'] = str(val['_id']) + + """ + 27/02/2025 : Dans le cadre du traitement automatique, + il ne faut pas envoyé de convocation au personnes de la meme session qui ont déjà recues + leur convocation. + Comment faire : + Aller verifier dans la collection : 'courrier_template_tracking_history' si on a un rengistrement avec les + infos suivantes : + - target_collection_recid = '_id' de l'inscrit + - courrier_template_tracking_id = '_id' du type de document (qui se trouve ici : courrier_template_tracking). + (dans la collection 'courrier_template_tracking', on enregistre les type de modèle de documents comme : + CONVOCATION_STAGIAIRE, EMARGEMENT_FORMATION, CONVENTION_STAGIAIRE_ENTREPRISE, etc) + + """ + + qry_courrier_template_tracking_history = {'partner_owner_recid':str(my_partner['recid']), + 'courrier_template_tracking_id':str(courrier_template_tracking_data['_id']), + 'target_collection_recid':str(val['_id']), + 'courrier_template_id':diction['courrier_template_id']} + + print(" ### qry_courrier_template_tracking_history = ", qry_courrier_template_tracking_history) + + is_convocation_already_sent_count = MYSY_GV.dbname['courrier_template_tracking_history'].count_documents( + {'partner_owner_recid':str(my_partner['recid']), + 'courrier_template_tracking_id':str(courrier_template_tracking_data['_id']), + 'target_collection_recid':str(val['_id']), 'courrier_template_id':diction['courrier_template_id']} + ) + if( is_convocation_already_sent_count == 0 ): + #print(" #### Traitemnt de local_diction bb = ", local_diction) + local_status, local_full_file_name = Create_Convocation_By_Stagiaire_PDF(local_diction) + if( local_status is False): + return local_status, local_full_file_name + else: + list_file_name_to_zip.append(str(local_full_file_name)) + else: + print(" PDF DE CONVOCATION DEJA ENVOYEEEE ") + + + + # Create a ZipFile Object + todays_date = str(date.today().strftime("%d/%m/%Y")) + ts = datetime.now().timestamp() + ts = str(ts).replace(".", "").replace(",", "")[-3:] + zip_file_name = str(MYSY_GV.TEMPORARY_DIRECTORY_V2)+"List_Convocation_session_"+str(diction['session_id'])+"_"+str(ts)+".zip" + + with ZipFile(zip_file_name, 'w') as zip_object: + for pdf_files in list_file_name_to_zip : + #print(" ### fichier a zipper = ", pdf_files) + zip_object.write(str(pdf_files)) + + + if os.path.exists(zip_file_name): + # print(" ### ok os.path.exists(outputFilename) "+str(outputFilename)) + + return True, send_file(zip_file_name, as_attachment=True) + + + return False, " Impossible de générer les conventions par pdf PDF (1) " + + + + 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 générer les conventions par pdf PDF " + + +""" +Envoi d'une convocation pour un participant donné par email +Si le participants est rattaché à un client , alors on va mettre en copie de +l'email les contacts de communication du client de rattachement +""" +def Sent_Convocation_Stagiaire_By_Email(tab_files, Folder, diction): + try: + + field_list_obligatoire = ['token', 'inscription_id', 'courrier_template_id', 'email_test', 'email_production'] + + 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 liste ") + return False, " La valeur '" + val + "' n'est pas presente dans liste" + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_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 le stagiaire est bien inscrit. Le statut de l'inscription doit etre "1" + is_inscription_valide = MYSY_GV.dbname['inscription'].count_documents( + {'_id': ObjectId(str(diction['inscription_id'])), + 'status': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (is_inscription_valide != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de l'inscription est invalide ") + return False, " L'identifiant de l'inscription est invalide " + + # Traitement de l'eventuel fichier joint + tab_files_to_attache_to_mail = [] + + for saved_file in tab_files: + """ + status, saved_file = mycommon.Upload_Save_PDF_IMG_File(file, Folder) + if (status is False): + mycommon.myprint("Impossible de récupérer correctement le fichier à importer") + return False, "Impossible de récupérer correctement le fichier à importer" + """ + + file_to_attache_to_mail = MIMEBase('application', "octet-stream") + file_to_attache_to_mail.set_payload(open(saved_file, "rb").read()) + + encoders.encode_base64(file_to_attache_to_mail) + file_to_attache_to_mail.add_header('Content-Disposition', + 'attachment; filename="{0}"'.format(os.path.basename(saved_file))) + + new_node = {"attached_file": file_to_attache_to_mail} + tab_files_to_attache_to_mail.append(new_node) + + # Verification de la validité des adresses email_recu + """ + /!\ : Si l'email de test est repli, alors on considere que c'est un test, on ne prend pas en compte l'email de email_production. + Ceci pour forcer les utilisateur à ne remplir que l'email de prod s'il veulent l'envoyer en prod. + + Si l'adresse email_prodution = "defaul", cela veut dire qu'on envoie la convention à : + - l'adresse email du stagiaire et ses tuteurs (si les tuteurs on cochés la case 'inclu com' + + """ + + send_in_production = 0 + + tab_emails_destinataire = [] + + if ("email_test" in diction.keys() and diction['email_test']): + send_in_production = 0 + tab_email_test = str(diction['email_test']).replace(";", ",").split(",") + for email in tab_email_test: + email = email.strip() + if (mycommon.isEmailValide(email) is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'adresse email " + str(email) + " est invalide ") + return False, " L'adresse email " + str(email) + " est invalide " + tab_emails_destinataire = tab_email_test + + elif ("email_production" in diction.keys() and diction['email_production']): + send_in_production = 1 + if (str(diction['email_production']) != "default"): + tab_email_prod = str(diction['email_production']).replace(";", ",").split(",") + for email in tab_email_prod: + email = email.strip() + if (mycommon.isEmailValide(str(email)) is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'adresse email '" + str(email) + "' est invalide ") + return False, " L'adresse email " + str(email) + " est invalide " + tab_emails_destinataire = tab_email_prod + else: + send_in_production = 1 + # On va chercher les adresse email de communication du + local_dict = {'token': str(diction['token']), '_id': str(diction['inscription_id'])} + + local_status, tab_apprenant_contact = Inscription_mgt.Get_Statgiaire_Communication_Contact(local_dict) + if (local_status is False): + return local_status, tab_apprenant_contact + + tmp_tab = [] + # print(" ### tab_apprenant_contact = ", tab_apprenant_contact) + + for tmp in tab_apprenant_contact: + if ("email" in tmp.keys()): + tab_emails_destinataire.append((tmp['email'])) + + if (len(tab_emails_destinataire) <= 0): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Aucune adresse email n'a été fourni. ") + return False, " Aucune adresse email n'a été fourni. " + + # print(" ### tab_emails_destinataire = ", tab_emails_destinataire) + + # Verifier que le 'courrier_template_id' est valide + # Ici le template doit etre un email + is_courrier_template_id_valide = MYSY_GV.dbname['courrier_template'].count_documents( + {'_id': ObjectId(str(diction['courrier_template_id'])), + 'valide': '1', + 'type_doc': 'email', + 'locked': '0', + 'partner_owner_recid': str(my_partner['recid'])} + ) + + if (is_courrier_template_id_valide != 1): + mycommon.myprint(str(inspect.stack()[0][3]) + " L'identifiant du modèle de courrier est invalide ") + return False, " L'identifiant du modèle de courrier est invalide " + + # Recupération des données du modèle de document + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'_id': ObjectId(str(diction['courrier_template_id'])), + 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str(my_partner['recid'])} + ) + + # Recuperation des eventuelles pièces jointes du modèle que courrier + local_dic = {} + local_dic['token'] = str(diction['token']) + local_dic['object_owner_collection'] = "courrier_template" + local_dic['object_owner_id'] = str(courrier_template_data['_id']) + + local_status, local_retval = attached_file_mgt.Get_List_object_owner_collection_Stored_Files(local_dic) + if (local_status is False): + return local_status, local_retval + + # print(" ### file stocké = ", local_retval) + + # Recuperation des fichiers attachés au modele de courrier, s'il y en a + for file in local_retval: + local_JSON = ast.literal_eval(file) + + saved_file = local_JSON['full_path'] + + file_to_attache_to_mail = MIMEBase('application', "octet-stream") + file_to_attache_to_mail.set_payload(open(saved_file, "rb").read()) + + encoders.encode_base64(file_to_attache_to_mail) + file_to_attache_to_mail.add_header('Content-Disposition', + 'attachment; filename="{0}"'.format(os.path.basename(saved_file))) + + new_node = {"attached_file": file_to_attache_to_mail} + tab_files_to_attache_to_mail.append(new_node) + + # Recuperation des données du stagaire + inscription_data = MYSY_GV.dbname['inscription'].find_one({'_id': ObjectId(str(diction['inscription_id'])), + 'status': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + tab_apprenant_client_rattachement_contact = "" + # Verifier si le modele de courrier n'est par 'edit_by_client', au quel cas on verifie que l'appressant est bien lié à un client + if ("edit_by_client" in courrier_template_data.keys() and str(courrier_template_data['edit_by_client']) == "0"): + stagiaire_client_id = "" + + if ("client_rattachement_id" in inscription_data.keys() and inscription_data['client_rattachement_id']): + stagiaire_client_id = str(inscription_data['client_rattachement_id']) + local_diction = {"token":str(diction['token']), "_id":stagiaire_client_id } + + #print(" ##### local_diction pr Get_Partner_Client_Communication_Contact= ", local_diction) + local_status, partner_client_contact_communication = partner_client.Get_Partner_Client_Communication_Contact(local_diction) + + if (local_status is True): + #print(" ### partner_client_contact_communication = ", partner_client_contact_communication) + tab_local_email_production = [] + for tmp in partner_client_contact_communication: + tmp_JSON = ast.literal_eval(tmp) + if ("email" in tmp_JSON.keys()): + tab_local_email_production.append(str(tmp_JSON["email"])) + + tab_apprenant_client_rattachement_contact = ",".join(tab_local_email_production) + + + tab_participant = [] + tab_participant.append(inscription_data['_id']) + + """ + update du 30/01/2024 + si le participant à un apprenant_id, alors on recupere la valeur de l'apprenant id. On doit travailler sur cette dernier. + En general, avant d'envoyer une convocation ou convention, l'inscription est validée et donc le dossier apprenant existe. + Du coup si tout se passe bien, dans cette fonction, on travaillera tjrs avec l'apprenant_id + """ + tab_apprenant = [] + if( "apprenant_id" in inscription_data.keys() and inscription_data['apprenant_id']) : + tab_apprenant.append(ObjectId(str(inscription_data['apprenant_id']))) + + + + # Recuperations des info de la session de formation + session_data = MYSY_GV.dbname['session_formation'].find_one( + {'_id': ObjectId(str(inscription_data['session_id'])), 'valide': '1', + 'partner_owner_recid': str(my_partner['recid'])}) + + tab_session = [] + tab_session.append(session_data['_id']) + + # Recuperation du titre de la formation + class_data = MYSY_GV.dbname['myclass'].find_one( + {'internal_url': str(session_data['class_internal_url']), 'valide': '1', + 'partner_owner_recid': str(my_partner['recid']), 'locked': '0'}) + + tab_class = [] + tab_class.append(class_data['_id']) + + # Creation du dictionnaire d'information à utiliser pour la creation du doc + convention_dictionnary_data = {} + new_diction = {} + new_diction['token'] = diction['token'] + new_diction['list_stagiaire_id'] = tab_participant + new_diction['list_session_id'] = tab_session + new_diction['list_class_id'] = tab_class + new_diction['list_client_id'] = [] + new_diction['list_apprenant_id'] = tab_apprenant + + local_status, local_retval = mycommon.Get_Dictionnary_data_For_Template(new_diction) + + if (local_status is False): + return local_status, local_retval + + convention_dictionnary_data = local_retval + + body = { + "params": convention_dictionnary_data, + } + + orig_file_name = None + outputFilename = None + # Verifier s'il s'agit d'un document à envoyer avec une version de pièce jointe. + if ("joint_pdf" in courrier_template_data.keys() and str(courrier_template_data['joint_pdf']) == "1"): + # Il s'agit bien d'un envoie avec 'contenu_doc' en pièce jointe PDF + """ + 1 - Creation du PDF + """ + contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) + + sourceHtml = contenu_doc_Template.render(params=body["params"]) + + todays_date = str(date.today().strftime("%d/%m/%Y")) + ts = datetime.now().timestamp() + ts = str(ts).replace(".", "").replace(",", "")[-5:] + + orig_file_name = "Convocation_" + str(my_partner['recid'])[0:5] + "_" + str(ts) + ".pdf" + outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) + "/" + str(orig_file_name) + + # open output file for writing (truncated binary) + resultFile = open(outputFilename, "w+b") + + # convert HTML to PDF + pisaStatus = pisa.CreatePDF( + src=sourceHtml, # the HTML to convert + dest=resultFile) # file handle to receive result + + # close output file + resultFile.close() + + # Attachement du fichier joint + file_to_attache_to_mail = MIMEBase('application', "octet-stream") + file_to_attache_to_mail.set_payload(open(outputFilename, "rb").read()) + + encoders.encode_base64(file_to_attache_to_mail) + file_to_attache_to_mail.add_header('Content-Disposition', + 'attachment; filename="{0}"'.format(os.path.basename(outputFilename))) + + new_node = {"attached_file": file_to_attache_to_mail} + tab_files_to_attache_to_mail.append(new_node) + + ## Creation du mail au format email + + corps_mail_Template = jinja2.Template(str(courrier_template_data['corps_mail'])) + + sourceHtml = corps_mail_Template.render(params=body["params"]) + + html_mime = MIMEText(sourceHtml, 'html') + + # Creation de l'email à enoyer + msg = MIMEMultipart("alternative") + + else: + # Il s'agit d'une simple email + + ## Creation du mail au format email + + contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) + + sourceHtml = contenu_doc_Template.render(params=body["params"]) + + html_mime = MIMEText(sourceHtml, 'html') + + # Creation de l'email à enoyer + msg = MIMEMultipart("alternative") + + """ + Recuperation des parametre SMTP du partner si le client a decidé d'utiliser son propre smpt + """ + partner_own_smtp_value = "0" + partner_own_smtp = MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'partner_smtp', + 'valide': '1', + 'locked': '0'}) + + if (partner_own_smtp and "config_value" in partner_own_smtp.keys()): + partner_own_smtp_value = partner_own_smtp['config_value'] + + if (str(partner_own_smtp_value) == "1"): + partner_SMTP_COUNT_password = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_user_pwd', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_smtpsrv = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_server', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_user = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_user', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_From_User = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_count_from_name', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + partner_SMTP_COUNT_port = str(MYSY_GV.dbname['base_partner_setup'].find_one( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': 'smtp_count_port', + 'valide': '1', + 'locked': '0'}, {'config_value': 1})['config_value']) + + if (str(partner_own_smtp_value) == "1"): + smtpserver = smtplib.SMTP(partner_SMTP_COUNT_smtpsrv, partner_SMTP_COUNT_port) + else: + smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) + + if (str(partner_own_smtp_value) == "1"): + msg.attach(html_mime) + msg['From'] = partner_SMTP_COUNT_From_User + msg['Cc'] = tab_apprenant_client_rattachement_contact + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = courrier_template_data['sujet'] + # msg['to'] = "billardman01@hotmail.com" + toaddrs = ",".join(tab_emails_destinataire) + msg['to'] = str(toaddrs) + + # Attacher l'eventuelle pièces jointes + for myfile in tab_files_to_attache_to_mail: + msg.attach(myfile['attached_file']) + + smtpserver.ehlo() + smtpserver.starttls() + smtpserver.login(partner_SMTP_COUNT_user, partner_SMTP_COUNT_password) + + else: + msg.attach(html_mime) + msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User + msg['Cc'] = tab_apprenant_client_rattachement_contact + msg['Bcc'] = 'contact@mysy-training.com' + msg['Subject'] = courrier_template_data['sujet'] + # msg['to'] = "billardman01@hotmail.com" + toaddrs = ",".join(tab_emails_destinataire) + msg['to'] = str(toaddrs) + + for myfile in tab_files_to_attache_to_mail: + msg.attach(myfile['attached_file']) + + smtpserver.ehlo() + smtpserver.starttls() + smtpserver.login(MYSY_GV.O365_SMTP_COUNT_user, MYSY_GV.O365_SMTP_COUNT_password) + + val = smtpserver.send_message(msg) + smtpserver.close() + print(" Email envoyé 66" + str(val)) + + """ + # Ajout de l'evenement dans l'historique + """ + + # L'action n'est loggué pour les envois reels (en prod) + if (send_in_production == 1): + now = str(datetime.now().strftime("%d/%m/%Y %H:%M:%S")) + history_event_dict = {} + history_event_dict['token'] = diction['token'] + history_event_dict['related_collection'] = "inscription" + history_event_dict['related_collection_recid'] = str(diction['inscription_id']) + history_event_dict['action_date'] = str(now) + history_event_dict['action_description'] = "Convocation envoyée par email à la liste : " + str( + tab_emails_destinataire) + 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)) + + + """ + Après avoir loggé l'envoie reelle en production, on va aller stocker le document dans la collection : download_files + si et seulement si on bien un fichier PDF (voir variables : orig_file_name et outputFilename) + """ + if( orig_file_name and outputFilename ): + new_file = {} + new_file['token'] = diction['token'] + type_document = "Convocation" + + new_file['file_business_object'] = str(orig_file_name) + + new_file['file_name'] = str(orig_file_name) + new_file['status'] = "1" + new_file['type_document'] = str(type_document) + + new_file['object_owner_collection'] = "partner_client" + new_file['object_owner_id'] = str(inscription_data['client_rattachement_id']) + + + + new_file['file_name_to_store'] = outputFilename + + # print(" ### new_file new_file = ", new_file) + local_status, local_retval = attached_file_mgt.Internal_Usage_Store_User_Downloaded_File( + MYSY_GV.upload_folder, new_file) + + if (local_status is False): + print(" ## WARINNGGG Impossible de stocker le fichier de Convocation ") + + + + return True, "L'email a été correctement envoyé " + + 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'envoyer la convention par email " + + +""" +Cette fonction créer une convocation PDF par participant à une session de formation +Peu importe le rattachement client ou pas. +""" +def Create_Convocation_By_Stagiaire_PDF(diction): + try: + field_list_obligatoire = ['token', 'session_id', 'courrier_template_id', 'inscription_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 liste ") + return False, " La valeur '" + val + "' n'est pas presente dans liste" + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_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 + + qry = {'_id':ObjectId(str(diction['courrier_template_id'])), + 'valide':'1', + 'locked':'0', + 'ref_interne': 'CONVOCATION_STAGIAIRE', + 'partner_owner_recid':str(my_partner['recid'])} + + #print(" ##### qry = ", qry) + + # 1 - Verifier que le modele de courrier est bien editable par individu + template_courrier_data = MYSY_GV.dbname['courrier_template'].find_one({'_id':ObjectId(str(diction['courrier_template_id'])), + 'valide':'1', + 'locked':'0', + 'ref_interne': 'CONVOCATION_STAGIAIRE', + 'partner_owner_recid':str(my_partner['recid'])}) + + if( template_courrier_data is None ): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant du modèle de courrier est invalide ") + return False, " L'identifiant du modèle de courrier est invalide " + + if ("edit_by_client" in template_courrier_data.keys() and str(template_courrier_data['edit_by_client']) == "1"): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Le modèle de courrier n'est pas éditable par stagiaire. ") + return False, " Le modèle de courrier n'est pas éditable par stagiaire " + + + # Verifier que le statgiaire est valide + local_qry = {'_id':ObjectId(str(diction['inscription_id'])), 'status':'1', + 'partner_owner_recid':str(my_partner['recid'])} + + statgiaire_data = MYSY_GV.dbname['inscription'].find_one({'_id':ObjectId(str(diction['inscription_id'])), 'status':'1', + 'partner_owner_recid':str(my_partner['recid'])}) + + if (statgiaire_data is None ): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant du stagiaire est invalide ") + return False, " L'identifiant du stagiaire est invalide " + + tab_stagiaire = [] + tab_stagiaire.append(statgiaire_data['_id']) + + """ + update du 30/01/2024 + si le participant à un apprenant_id, alors on recupere la valeur de l'apprenant id. On doit travailler sur cette dernier. + En general, avant d'envoyer une convocation ou convention, l'inscription est validée et donc le dossier apprenant existe. + Du coup si tout se passe bien, dans cette fonction, on travaillera tjrs avec l'apprenant_id + """ + tab_apprenant = [] + if ("apprenant_id" in statgiaire_data.keys() and statgiaire_data['apprenant_id']): + tab_apprenant.append(ObjectId(str(statgiaire_data['apprenant_id']))) + + + # Verifier que la session est valide + session_data = MYSY_GV.dbname['session_formation'].find_one( + {'_id': ObjectId(str(diction['session_id'])), 'valide': '1', 'partner_owner_recid': str(my_partner['recid'])}) + + if (session_data is None): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant de la session est invalide ") + return False, " L'identifiant de la session est invalide " + + tab_session = [] + tab_session.append(session_data['_id']) + + # Recuperation du titre de la formation + class_data = MYSY_GV.dbname['myclass'].find_one( + {'internal_url': str(session_data['class_internal_url']), 'valide': '1', + 'partner_owner_recid': str(my_partner['recid']), 'locked': '0'}) + + tab_class = [] + tab_class.append(class_data['_id']) + + + # Recuperation des sequences d'une session de formation + tab_sequence_session = [] + for local_retval in MYSY_GV.dbname['session_formation_sequence'].find({'partner_owner_recid':str(my_partner['recid']), + 'session_id':str(session_data['_id']), + 'valide':'1', + 'locked':'0'}): + tab_sequence_session.append(local_retval['_id']) + + + # Creation du dictionnaire d'information à utiliser pour la creation du doc + convention_dictionnary_data = {} + new_diction = {} + new_diction['token'] = diction['token'] + new_diction['list_stagiaire_id'] = tab_stagiaire + new_diction['list_session_id'] = tab_session + new_diction['list_class_id'] = tab_class + new_diction['list_client_id'] = [] + new_diction['list_apprenant_id'] = tab_apprenant + new_diction['list_sequence_session_id'] = tab_sequence_session + + local_status, local_retval = mycommon.Get_Dictionnary_data_For_Template(new_diction) + + if (local_status is False): + return local_status, local_retval + + convention_dictionnary_data = local_retval + + body = { + "params": convention_dictionnary_data, + } + + """ + Creation du ficier PDF + """ + contenu_doc_Template = jinja2.Template(str(template_courrier_data['contenu_doc'])) + + sourceHtml = contenu_doc_Template.render(params=body["params"]) + + todays_date = str(date.today().strftime("%d/%m/%Y")) + ts = datetime.now().timestamp() + ts = str(ts).replace(".", "").replace(",", "")[-5:] + + orig_file_name = "Convocation_" + str(my_partner['recid'])[0:5] + "_" + str(ts) + ".pdf" + outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) + "/" + str(orig_file_name) + + # open output file for writing (truncated binary) + resultFile = open(outputFilename, "w+b") + + # convert HTML to PDF + pisaStatus = pisa.CreatePDF( + src=sourceHtml, # the HTML to convert + dest=resultFile) # file handle to receive result + + # close output file + resultFile.close() + + """ + 25/01/2024 : pour loger une action dans la collection ==> courrier_template_tracking_history + """ + #print(" str(diction['inscription_id']) == ", str(diction['inscription_id'])) + """ local_status, local_retval = module_editique.Editic_Log_History_Action(my_partner, template_courrier_data, + str(diction['session_id']), 'inscription', str(diction['inscription_id'])) + """ + + local_status, local_retval = module_editique.Editic_Log_History_Action_From_courrier_template_type_document_ref_interne( + my_partner, "CONVOCATION_STAGIAIRE", str(diction['session_id']), 'inscription', + str(diction['inscription_id']), + str(str(template_courrier_data['_id']))) + + + + return True, outputFilename + + 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 fichier pdf de convocation par stagiaire " diff --git a/Log/log_file.log b/Log/log_file.log index 49c46a1..3e9e2a3 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -3067796,3 +3067796,11707 @@ INFO:root:2025-02-18 21:51:36.179399 : ++ FLASK PORT 5001 ++ INFO:root:2025-02-18 21:51:36.179399 : ++ LMS_BAS_URL mysy-hosting.com/ ++ WARNING:werkzeug: * Debugger is active! INFO:werkzeug: * Debugger PIN: 877-541-979 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-19 11:19:35.690309 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-19 11:19:35.691784 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-19 11:19:35.691784 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-19 11:19:35.691784 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-19 11:19:35.691784 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-19 11:19:49.620856 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-19 11:19:49.620856 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-19 11:19:49.621861 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-19 11:19:49.621861 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-19 11:19:49.621861 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-19 11:21:15.615375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:15] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-19 11:21:15.973731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-19 11:21:15.977109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-19 11:21:15.981397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-19 11:21:15.984394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-19 11:21:15.988395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-19 11:21:15.990762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-19 11:21:16.037206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-19 11:21:16.040349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-19 11:21:16.067693 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-19 11:21:16.068693 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-19 11:21:16.095015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-19 11:21:16.099547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-19 11:21:16.104660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-19 11:21:16.109897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-19 11:21:16.148898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-19 11:21:16.160957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-19 11:21:16.187113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-19 11:21:16.202424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-19 11:21:16.239946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:16] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-02-19 11:21:16.263710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:21] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Feb/2025 11:21:21] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 14:29:29.953551 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 14:29:29.954562 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 14:29:29.954562 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 14:29:29.954562 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 14:29:29.954562 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 14:29:50.535134 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 14:29:50.535134 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 14:29:50.536136 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 14:29:50.536136 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 14:29:50.536136 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 14:31:47.163609 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 14:31:47.163609 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 14:31:47.164107 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 14:31:47.164107 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 14:31:47.164608 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 14:36:08.514849 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 14:36:08.514849 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 14:36:08.515850 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 14:36:08.515850 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 14:36:08.515850 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 14:36:52.850140 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 14:36:52.850140 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 14:36:52.850140 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 14:36:52.850140 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 14:36:52.850140 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 14:37:42.318153 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 14:37:42.318153 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 14:37:42.318153 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 14:37:42.318153 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 14:37:42.318153 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 14:38:27.219546 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 14:38:27.220545 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 14:38:27.220545 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 14:38:27.220545 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 14:38:27.220545 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 14:51:57.287675 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 14:51:57.287675 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 14:51:57.287675 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 14:51:57.287675 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 14:51:57.287675 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 14:52:17.183721 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 14:52:17.184951 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 14:52:17.184951 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 14:52:17.184951 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 14:52:17.184951 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 14:55:59.741942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 14:55:59.742940 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 14:56:01.374884 : Cron_Daily_Document_Sending -'automatic_traitement' - Line : 1157 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 14:56:01] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 14:56:51.361669 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 14:56:51.361669 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 14:56:51.362670 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 14:56:51.362670 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 14:56:51.362670 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 14:56:51.443680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 14:56:51.444702 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 14:56:52.852161 : Cron_Daily_Document_Sending -'automatic_traitement' - Line : 1157 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 14:56:52] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 14:57:57.431785 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 14:57:57.431785 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 14:57:57.431785 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 14:57:57.431785 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 14:57:57.431785 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 14:57:57.510924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 14:57:57.510924 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 14:57:58.930862 : Cron_Daily_Document_Sending -'automatic_traitement' - Line : 1157 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 14:57:58] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 14:59:10.844066 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 14:59:10.845063 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 14:59:10.845063 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 14:59:10.845063 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 14:59:10.845063 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 14:59:10.930249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 14:59:10.930249 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 14:59:12.317309 : Cron_Daily_Document_Sending -'automatic_traitement' - Line : 1157 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 14:59:12] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:00:10.699615 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:00:10.699615 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:00:10.699615 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:00:10.699615 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:00:10.699615 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:00:10.779819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:00:10.780817 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:00:10] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:01:36.314991 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:01:36.315984 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:01:36.315984 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:01:36.315984 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:01:36.315984 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:02:37.597778 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:02:37.597778 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:02:37.597778 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:02:37.597778 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:02:37.598845 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:02:37.675528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:02:37.675528 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:02:37] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:03:31.820440 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:03:31.820440 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:03:31.821441 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:03:31.821441 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:03:31.821441 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:03:36.546080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:03:36.546080 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:03:36] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:05:11.153394 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:05:11.153394 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:05:11.153394 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:05:11.153394 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:05:11.153394 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:05:11.234944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:05:11.234944 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 15:05:12.726662 : Cron_Daily_Document_Sending -string indices must be integers - Line : 1169 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:05:12] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:06:47.260929 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:06:47.260929 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:06:47.261911 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:06:47.261911 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:06:47.261911 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:06:47.338051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:06:47.339075 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 15:06:48.637534 : Cron_Daily_Document_Sending -string indices must be integers - Line : 1168 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:06:48] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:07:42.217694 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:07:42.217694 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:07:42.217694 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:07:42.217694 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:07:42.217694 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:07:42.299998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:07:42.301026 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 15:07:43.786772 : Cron_Daily_Document_Sending -list indices must be integers or slices, not str - Line : 1168 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:07:43] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:08:45.454762 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:08:45.455762 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:08:45.455762 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:08:45.455762 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:08:45.455762 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:08:45.535420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:08:45.536421 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 15:08:46.905752 : Cron_Daily_Document_Sending -list indices must be integers or slices, not str - Line : 1169 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:08:46] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:09:48.409552 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:09:48.409552 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:09:48.409552 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:09:48.409552 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:09:48.409552 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:09:48.485477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:09:48.485477 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 15:09:49.853725 : Cron_Daily_Document_Sending -list indices must be integers or slices, not str - Line : 1171 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:09:49] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:22:23.188756 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:22:23.188756 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:22:23.188756 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:22:23.188756 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:22:23.188756 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:22:28.129259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:22:28.130260 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:22:28] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:23:37.038292 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:23:37.039350 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:23:37.039350 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:23:37.039350 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:23:37.039350 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:23:37.112141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:23:37.112141 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:23:37] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:28:02.873102 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:28:02.873102 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:28:02.874136 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:28:02.874136 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:28:02.874136 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:28:02.953247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:28:02.953247 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:28:03] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:31:39.180267 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:31:39.180267 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:31:39.180267 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:31:39.180267 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:31:39.180267 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:31:58.951167 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:31:58.951167 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:31:58.951167 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:31:58.951167 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:31:58.951167 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:31:59.037911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:31:59.038913 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:31:59] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:33:54.101211 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:33:54.101211 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:33:54.101211 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:33:54.101211 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:33:54.101211 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:34:27.219247 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:34:27.220250 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:34:27.220250 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:34:27.221245 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:34:27.221245 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:35:43.930482 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:35:43.930482 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:35:43.930482 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:35:43.930482 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:35:43.930482 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:36:50.508617 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:36:50.508617 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:36:50.508617 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:36:50.509619 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:36:50.509619 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:39:00.597233 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:39:00.598231 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:39:00.598231 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:39:00.598231 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:39:00.598231 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:53:05.006222 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:53:05.006222 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:53:05.006222 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:53:05.006222 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:53:05.006222 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:53:25.519269 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:53:25.519269 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:53:25.519269 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:53:25.519269 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:53:25.519269 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:53:25.597106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:53:25.598149 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 15:53:27.493787 : Cron_Daily_Document_Sending -The path 'list_unite_enseignement' must exist in the document in order to apply array updates., full error: {'index': 0, 'code': 2, 'errmsg': "The path 'list_unite_enseignement' must exist in the document in order to apply array updates."} - Line : 1209 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:53:27] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:54:29.347617 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:54:29.347617 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:54:29.347617 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:54:29.348194 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:54:29.348194 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:54:29.427372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:54:29.427372 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:54:29] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 15:56:35.189676 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 15:56:35.189676 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 15:56:35.191036 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 15:56:35.191036 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 15:56:35.191036 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 15:57:16.630227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 15:57:16.631212 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 15:57:16] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:02:24.669816 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:02:24.670817 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:02:24.670817 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:02:24.670817 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:02:24.670817 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:02:42.871097 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:02:42.871097 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:02:42.871097 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:02:42.871097 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:02:42.871097 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:04:51.461139 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:04:51.461139 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:04:51.461139 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:04:51.461139 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:04:51.462141 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 16:04:51.550534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 16:04:51.551536 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 16:04:53.138521 : Cron_Daily_Document_Sending -myprint() takes from 0 to 1 positional arguments but 4 were given - Line : 1195 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 16:04:53] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:07:10.025081 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:07:10.025081 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:07:10.025081 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:07:10.026087 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:07:10.026087 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:07:42.281163 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:07:42.281163 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:07:42.281163 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:07:42.281163 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:07:42.281163 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 16:07:42.355045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 16:07:42.355045 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 16:07:43.621475 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 67b4a8df351f2b1af8c624a4 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 16:07:43] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:08:57.898873 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:08:57.898873 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:08:57.899931 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:08:57.899931 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:08:57.899931 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:10:10.422516 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:10:10.422516 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:10:10.423514 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:10:10.423514 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:10:10.423514 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:11:12.569357 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:11:12.570356 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:11:12.570356 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:11:12.570356 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:11:12.570356 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 16:11:38.516631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 16:11:38.517755 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 16:11:39.961574 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 16:11:39] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:15:07.639055 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:15:07.639055 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:15:07.640055 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:15:07.640055 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:15:07.640055 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 16:15:08.202443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 16:15:08.202443 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 16:15:08] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:root:2025-02-21 16:16:28.449885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 16:16:28.449885 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 16:16:28] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:17:29.729000 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:17:29.729000 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:17:29.729000 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:17:29.729000 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:17:29.730271 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:18:41.666950 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:18:41.666950 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:18:41.666950 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:18:41.667950 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:18:41.667950 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:49:56.974470 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:49:56.975470 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:49:56.975470 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:49:56.975470 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:49:56.975470 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:50:16.494449 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:50:16.494449 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:50:16.495448 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:50:16.495448 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:50:16.495448 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 16:50:57.424656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 16:50:57.424656 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 16:50:58.812681 : Get_Courrier_Template_Include_Default_Data Il n'y a aucun modèle de document avec la reférence : CONVENTION_STAGIAIRE_ENTREPRISE de Type : pdf +INFO:root:2025-02-21 16:50:58.817588 : Send_document_from_base_document_automatic_setup Impossible de récuperer le modèle de courrier concerné CONVENTION_STAGIAIRE_ENTREPRISE +INFO:root:2025-02-21 16:50:58.824567 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 16:50:58] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 16:59:18.655721 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 16:59:18.656862 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 16:59:18.656862 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 16:59:18.656862 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 16:59:18.656862 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 16:59:43.133057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 16:59:43.134382 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 16:59:44.509416 : Get_Courrier_Template_Include_Default_Data Il n'y a aucun modèle de document avec la reférence : CONVENTION_STAGIAIRE_ENTREPRISE de Type : pdf +INFO:root:2025-02-21 16:59:44.515490 : Send_document_from_base_document_automatic_setup Impossible de récuperer le modèle de courrier concerné CONVENTION_STAGIAIRE_ENTREPRISE +INFO:root:2025-02-21 16:59:44.521821 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 16:59:44] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:01:06.296805 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:01:06.297804 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:01:06.297804 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:01:06.297804 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:01:06.297804 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:02:04.670131 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:02:04.671128 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:02:04.671128 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:02:04.671128 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:02:04.671128 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 17:02:29.652167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:02:29.653193 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 17:02:31.307221 : Get_Courrier_Template_Include_Default_Data Il n'y a aucun modèle de document avec la reférence : CONVENTION_STAGIAIRE_ENTREPRISE de Type : pdf +INFO:root:2025-02-21 17:02:31.314740 : Send_document_from_base_document_automatic_setup Impossible de récuperer le modèle de courrier concerné CONVENTION_STAGIAIRE_ENTREPRISE +INFO:root:2025-02-21 17:02:31.319127 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:02:31] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:05:30.132962 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:05:30.132962 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:05:30.133971 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:05:30.133971 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:05:30.133971 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:10:12.818838 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:10:12.818838 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:10:12.818838 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:10:12.818838 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:10:12.818838 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:11:00.372456 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:11:00.372456 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:11:00.372456 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:11:00.372456 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:11:00.372456 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:11:33.249800 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:11:33.249800 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:11:33.250800 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:11:33.250800 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:11:33.250800 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:12:57.803054 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:12:57.803054 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:12:57.803054 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:12:57.803054 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:12:57.803054 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:14:46.729823 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:14:46.729823 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:14:46.729823 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:14:46.729823 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:14:46.729823 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:19:56.623643 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:19:56.623643 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:19:56.623643 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:19:56.623643 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:19:56.625165 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:22:24.094326 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:22:24.095326 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:22:24.095326 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:22:24.095326 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:22:24.095326 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:24:55.988449 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:24:55.988449 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:24:55.989601 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:24:55.989601 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:24:55.989601 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:26:01.352524 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:26:01.352524 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:26:01.352524 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:26:01.352524 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:26:01.352524 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:26:44.814517 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:26:44.814517 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:26:44.814517 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:26:44.815519 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:26:44.815519 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:27:18.477586 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:27:18.477586 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:27:18.478592 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:27:18.478592 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:27:18.478592 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:27:49.416198 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:27:49.417203 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:27:49.417203 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:27:49.417203 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:27:49.417203 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 17:28:50.562236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:28:50.563237 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 17:28:51.987069 : For_Cron_Send_Default_Convention_From_Session_By_PDF Aucune convention d'entreprise n'est configurée +INFO:root:2025-02-21 17:28:51.991859 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:28:51] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:35:58.861197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:58] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:35:58.967409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:35:58.972516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:35:58.975670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:35:58.978666 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:35:58.981883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:35:58.987236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:35:59.011202 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:35:59.014571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:35:59.018317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:35:59.028356 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:35:59.078552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:35:59.081185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:35:59.087951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:35:59.094801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:35:59.105670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:35:59.119157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:35:59.126146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:35:59.131540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:35:59.137067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:35:59.168651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:35:59] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:36:15.325337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:36:15.328572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:15] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:15] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:36:15.342286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:15] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:36:15.347350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:15] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:36:26.500389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:26] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:36:32.621968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:36:32.625003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:32] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:36:37.356168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:37] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:36:44.116257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:44] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:36:44.238551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:44] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:36:50.916965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:36:50.919969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:50] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:36:54.981775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:36:54] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:37:03.364211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:37:03] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:37:03.570368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:37:03] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:37:08.232548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:37:08.236250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:37:08] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:37:08] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:37:15.261188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:37:15.264498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:37:15] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:37:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:37:24.548671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:37:24] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:37:30.886518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:37:30] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:37:31.023035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:37:31] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-02-21 17:37:58.744872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:37:58.744872 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 17:37:58.773745 : For_Cron_Send_Default_Convention_From_Session_By_PDF -'token' - Line : 1539 +INFO:root:2025-02-21 17:37:58.775744 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:37:58] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:39:55.645959 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:39:55.645959 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:39:55.645959 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:39:55.645959 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:39:55.645959 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:40:31.954135 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:40:31.954135 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:40:31.954135 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:40:31.954135 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:40:31.954135 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:42:30.385751 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:42:30.385751 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:42:30.386761 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:42:30.386761 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:42:30.386761 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:43:15.881941 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:43:15.881941 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:43:15.881941 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:43:15.881941 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:43:15.881941 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:43:35.258426 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:43:35.258426 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:43:35.258426 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:43:35.258426 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:43:35.258426 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:43:50.210200 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:43:50.210200 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:43:50.210200 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:43:50.210200 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:43:50.210200 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:44:11.880649 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:44:11.881650 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:44:11.881650 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:44:11.881650 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:44:11.881650 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:44:29.066081 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:44:29.066776 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:44:29.066776 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:44:29.066776 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:44:29.066776 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:45:28.810757 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:45:28.810757 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:45:28.810757 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:45:28.810757 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:45:28.810757 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 17:45:38.699176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:45:38.699176 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 17:45:39.356872 : For_Cron_Create_Convention_By_Client_PDF La valeur 'partner_owner_recid' n'est pas presente dans liste +INFO:root:2025-02-21 17:45:39.358882 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:45:39] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:47:10.823154 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:47:10.824156 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:47:10.824156 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:47:10.824156 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:47:10.824156 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 17:47:21.122944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:47:21.123944 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 17:47:21.746247 : For_Cron_Create_Convention_By_Client_PDF -'token' - Line : 1712 +INFO:root:2025-02-21 17:47:21.748711 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:47:21] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:50:35.409852 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:50:35.409852 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:50:35.409852 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:50:35.409852 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:50:35.410852 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:51:40.360672 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:51:40.360672 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:51:40.360672 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:51:40.360672 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:51:40.360672 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:53:03.212537 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:53:03.212537 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:53:03.212537 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:53:03.212537 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:53:03.212537 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:57:05.868449 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:57:05.868449 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:57:05.868449 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:57:05.868449 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:57:05.868449 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 17:57:15.853166 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 17:57:15.853166 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 17:57:15.853166 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 17:57:15.853166 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 17:57:15.853166 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 17:57:24.806328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 17:57:24.806328 : ### CRONNN Cron_Daily_Document_Sending : payload = +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom2   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse01     
Représenté par :  part 2 part 2  en qualité de
Contact : mysytraining+apprenant1@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom2   part 2   mysytraining+apprenant1@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_25748.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom3_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse02     
Représenté par :  part 3 part 3  en qualité de
Contact : mysytraining+apprenant2@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_53236.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom4_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse03  code_postal03   
Représenté par :  part 4 part 4  en qualité de
Contact : mysytraining+apprenant3@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_78827.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 17:57:25.886623 : Create_Convention_By_Client_PDF -list object has no element 0 - Line : 6323 +INFO:root:2025-02-21 17:57:25.888618 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 17:57:25] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:00:44.703212 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:00:44.703212 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:00:44.704215 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:00:44.704215 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:00:44.704215 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 18:00:44.753981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:00:44.754985 : ### CRONNN Cron_Daily_Document_Sending : payload = +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom2   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse01     
Représenté par :  part 2 part 2  en qualité de
Contact : mysytraining+apprenant1@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom2   part 2   mysytraining+apprenant1@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_67926.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom3_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse02     
Représenté par :  part 3 part 3  en qualité de
Contact : mysytraining+apprenant2@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_41221.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom4_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse03  code_postal03   
Représenté par :  part 4 part 4  en qualité de
Contact : mysytraining+apprenant3@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_86753.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 18:00:46.204956 : Create_Convention_By_Client_PDF -list object has no element 0 - Line : 6327 +INFO:root:2025-02-21 18:00:46.206957 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:00:46] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:01:44.552792 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:01:44.552792 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:01:44.552792 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:01:44.552792 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:01:44.552792 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 18:01:55.335061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:01:55.336057 : ### CRONNN Cron_Daily_Document_Sending : payload = +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom2   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse01     
Représenté par :  part 2 part 2  en qualité de
Contact : mysytraining+apprenant1@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom2   part 2   mysytraining+apprenant1@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_13629.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom3_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse02     
Représenté par :  part 3 part 3  en qualité de
Contact : mysytraining+apprenant2@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_35074.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom4_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse03  code_postal03   
Représenté par :  part 4 part 4  en qualité de
Contact : mysytraining+apprenant3@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_35772.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 18:01:57.997727 : Create_Convention_By_Client_PDF -list object has no element 0 - Line : 6327 +INFO:root:2025-02-21 18:01:58.002733 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:01:58] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:07:06.231551 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:07:06.232555 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:07:06.232555 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:07:06.232555 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:07:06.232555 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:07:42.421476 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:07:42.421476 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:07:42.422483 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:07:42.422483 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:07:42.422483 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 18:07:43.167155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:07:43.167155 : ### CRONNN Cron_Daily_Document_Sending : payload = +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom2   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse01     
Représenté par :  part 2 part 2  en qualité de
Contact : mysytraining+apprenant1@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom2   part 2   mysytraining+apprenant1@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_66688.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom3_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse02     
Représenté par :  part 3 part 3  en qualité de
Contact : mysytraining+apprenant2@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_16689.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom4_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse03  code_postal03   
Représenté par :  part 4 part 4  en qualité de
Contact : mysytraining+apprenant3@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_63194.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 18:07:45.177411 : Create_Convention_By_Client_PDF -list object has no element 0 - Line : 6323 +INFO:root:2025-02-21 18:07:45.180406 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:07:45] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:09:42.876558 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:09:42.877537 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:09:42.877537 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:09:42.877537 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:09:42.877537 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 18:09:42.933496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:09:42.934501 : ### CRONNN Cron_Daily_Document_Sending : payload = +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom2   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse01     
Représenté par :  part 2 part 2  en qualité de
Contact : mysytraining+apprenant1@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom2   part 2   mysytraining+apprenant1@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_16671.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom3_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse02     
Représenté par :  part 3 part 3  en qualité de
Contact : mysytraining+apprenant2@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_96807.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom4_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse03  code_postal03   
Représenté par :  part 4 part 4  en qualité de
Contact : mysytraining+apprenant3@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_75991.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 18:09:45.737686 : Create_Convention_By_Client_PDF -list object has no element 0 - Line : 6323 +INFO:root:2025-02-21 18:09:45.750714 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:09:45] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:10:46.645548 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:10:46.646538 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:10:46.646538 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:10:46.647546 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:10:46.647546 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:11:46.458196 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:11:46.458196 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:11:46.458196 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:11:46.459204 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:11:46.459204 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 18:11:46.519745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:11:46.520743 : ### CRONNN Cron_Daily_Document_Sending : payload = +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom2   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse01     
Représenté par :  part 2 part 2  en qualité de
Contact : mysytraining+apprenant1@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom2   part 2   mysytraining+apprenant1@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_01052.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom3_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse02     
Représenté par :  part 3 part 3  en qualité de
Contact : mysytraining+apprenant2@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_85021.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom4_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse03  code_postal03   
Représenté par :  part 4 part 4  en qualité de
Contact : mysytraining+apprenant3@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_39492.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 18:11:48.053633 : Create_Convention_By_Client_PDF -list object has no element 0 - Line : 6324 +INFO:root:2025-02-21 18:11:48.057174 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:11:48] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:12:57.667987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:12:57.673802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:12:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:12:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:13:04.299522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:13:07.215212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:13:07.222188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:13:07.237259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:13:07.241769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:13:07.253103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:13:07.263696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:13:07.273134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:13:07.284071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:13:07.299454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:13:07.317015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:13:07.335813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:13:07.344415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:13:07.357340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:13:07.365290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:13:48.298660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:13:48.355404 : Add_Contact - Il existe déjà un contact qui porte le même email principal = mysy1000formation+01@gmail.com +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:13:48] "POST /myclass/api/Add_Contact/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:14:00.528630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:14:00] "POST /myclass/api/Add_Contact/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:14:00.558788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:14:00] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:14:03.297555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:14:03] "POST /myclass/api/Get_Given_Contact/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:14:03.337465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:14:03] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:14:06.368733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:14:06] "POST /myclass/api/Update_Contact/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:14:06.494441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:14:06] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:14:18.917908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:14:18] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:14:28.811850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:14:28.811850 : ### CRONNN Cron_Daily_Document_Sending : payload = +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom2   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse01     
Représenté par :  part 2 part 2  en qualité de
Contact : mysytraining+apprenant1@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom2   part 2   mysytraining+apprenant1@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_74857.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom3_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse02     
Représenté par :  part 3 part 3  en qualité de
Contact : mysytraining+apprenant2@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_90899.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom4_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse03  code_postal03   
Représenté par :  part 4 part 4  en qualité de
Contact : mysytraining+apprenant3@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_12868.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom5_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse04  code_postal04   
Représenté par :  qsdsq qsdsq  en qualité de
Contact : mysy1000formation+08@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_69911.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 18:14:30.373752 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:14:30] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:17:16.275198 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:17:16.275198 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:17:16.276195 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:17:16.276195 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:17:16.276195 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 18:21:30.033678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:21:30.034677 : ### CRONNN Cron_Daily_Document_Sending : payload = +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom2   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse01     
Représenté par :  part 2 part 2  en qualité de
Contact : mysytraining+apprenant1@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom2   part 2   mysytraining+apprenant1@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_89254.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom3_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse02     
Représenté par :  part 3 part 3  en qualité de
Contact : mysytraining+apprenant2@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_09412.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom4_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse03  code_postal03   
Représenté par :  part 4 part 4  en qualité de
Contact : mysytraining+apprenant3@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_97628.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : part nom5_client   Réprésenté par
(Ci-aprés nommé le client)
Situé : adresse04  code_postal04   
Représenté par :  qsdsq qsdsq  en qualité de
Contact : mysy1000formation+08@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/02/2025  25/02/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_83766.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 18:21:33.510077 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:21:33] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.188500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:22:54.194347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:22:54.203369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:22:54.211741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.220510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:22:54.230074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.250590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.260878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.276141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.289670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.298378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:22:54.306350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.320997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.330736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:22:54.342185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.359139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:22:54.367968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.378372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:22:54.387023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.404466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.418631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:22:54.435463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:22:54.447217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:22:54.462151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:22:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:23:01.678191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:23:01.683518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:23:01.693097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:23:01.700635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:01] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:23:01.706315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:23:01.715284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:23:01.729200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:01] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:01] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:23:05.514643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:23:19.263131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:23:19.272135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:23:19.279328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:23:19.291665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:19] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:23:19.299810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:23:19.314390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:23:19.324420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:19] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:19] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:19] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:23:28.374872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:23:30.718097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:23:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:24:18.225521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:24:18.490355 : Controle_AddStagiairetoClass_mass_for_many_sessionLigne : 5. Aucune entité de facturation ne repond aux critères de nom :PP_EU1 et email : PP_EU1@mysy-training.com +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:24:18] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:27:59.034369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:27:59.038744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:27:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:27:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:28:11.853386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:28:11.861200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:28:11.869784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:28:11.883438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:11] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:28:11.886678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:11] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:28:11.900926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:28:11.922076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:11] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:28:11.928090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:11] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:28:11.937087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:28:11.950356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:28:11.964447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:11] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:11] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:28:11.978836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:11] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:11] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:28:11.990044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:11] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:28:12.002297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:12] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:12] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:12] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:28:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.311984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:07.322980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:07.331051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:07.338470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.355937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:07.364380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.373098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.392217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:07.398978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.404783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:07.412300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.427900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:07.441356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.460490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.470031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:07.484709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:07.493235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.503981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:07.517048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.532794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.558137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:07.574602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.602214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:07.630891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:07] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:14.551562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:14.560751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:14.565041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:14.575199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:14.580590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:14.587425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:14.597763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:46.723918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:46.729865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:46.741154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:46.748182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:46.762207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:29:46.770656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:46.785034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:29:52.982577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:29:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:30:02.046997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:30:02.152917 : Controle_AddStagiairetoClass_mass_for_many_sessionLigne : 5. Aucune entité de facturation ne repond aux critères de nom :PP_EU1 et email : PP_EU1@mysy-training.com +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:02] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:30:09.906847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:30:11.378785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:30:24.274538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:30:24.701921 : Pre_incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 1097 +INFO:root:2025-02-21 18:30:24.743920 : Notification_partner_Pre_incription_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 1270 +INFO:root:2025-02-21 18:30:24.747916 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email mysytraining+apprenant1@gmail.com pour la session 679e1f8486671de6de2b0cf7 +INFO:root:2025-02-21 18:30:24.962373 : Pre_incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 1097 +INFO:root:2025-02-21 18:30:24.982525 : Notification_partner_Pre_incription_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 1270 +INFO:root:2025-02-21 18:30:24.985631 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email mysytraining+apprenant2@gmail.com pour la session 679e1f8486671de6de2b0cf7 +INFO:root:2025-02-21 18:30:25.220716 : Pre_incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 1097 +INFO:root:2025-02-21 18:30:25.251718 : Notification_partner_Pre_incription_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 1270 +INFO:root:2025-02-21 18:30:25.258960 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email mysytraining+apprenant3@gmail.com pour la session 679e1f8486671de6de2b0cf7 +INFO:root:2025-02-21 18:30:25.472392 : Pre_incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 1097 +INFO:root:2025-02-21 18:30:25.491993 : Notification_partner_Pre_incription_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 1270 +INFO:root:2025-02-21 18:30:25.495993 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email mysy1000formation+01@gmail.com pour la session 679e1f8486671de6de2b0cf7 +INFO:root:2025-02-21 18:30:25.698022 : Pre_incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 1097 +INFO:root:2025-02-21 18:30:25.717485 : Notification_partner_Pre_incription_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 1270 +INFO:root:2025-02-21 18:30:25.721484 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email mysy1000formation+02@gmail.com pour la session 679e1f8486671de6de2b0cf7 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:25] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:30:25.753358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:30:25.759365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:30:25.766371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:30:25.773911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:25] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:30:33.253495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:30:33.256626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:30:33.269511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:30:33.280531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:30:33.284993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:33] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:30:33.300766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:33] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:30:33.317857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:33] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:33] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:30:37.340616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:30:50.415969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:30:51.050229 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-21 18:30:51.058240 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-21 18:30:51.132472 : incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 273 +INFO:root:2025-02-21 18:30:51.135492 : AcceptAttendeeInscription - WARNING : Impossible d'envoyer le mail de notification pour mysytraining+apprenant1@gmail.com +INFO:root:2025-02-21 18:30:51.713431 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-21 18:30:51.716477 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-21 18:30:51.755481 : incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 273 +INFO:root:2025-02-21 18:30:51.760284 : AcceptAttendeeInscription - WARNING : Impossible d'envoyer le mail de notification pour mysytraining+apprenant2@gmail.com +INFO:root:2025-02-21 18:30:52.321093 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-21 18:30:52.325481 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-21 18:30:52.366892 : incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 273 +INFO:root:2025-02-21 18:30:52.370080 : AcceptAttendeeInscription - WARNING : Impossible d'envoyer le mail de notification pour mysytraining+apprenant3@gmail.com +INFO:root:2025-02-21 18:30:52.928325 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-21 18:30:52.931324 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-21 18:30:52.967766 : incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 273 +INFO:root:2025-02-21 18:30:52.971777 : AcceptAttendeeInscription - WARNING : Impossible d'envoyer le mail de notification pour mysy1000formation+01@gmail.com +INFO:root:2025-02-21 18:30:53.537008 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-21 18:30:53.541510 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-21 18:30:53.586536 : incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 273 +INFO:root:2025-02-21 18:30:53.590536 : AcceptAttendeeInscription - WARNING : Impossible d'envoyer le mail de notification pour mysy1000formation+02@gmail.com +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:53] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:30:53.691950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:30:53.698599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:30:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:31:33.430075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:31:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:38:43.203756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:38:43.204750 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 18:38:43.213748 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:38:43] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:40:34.508237 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:40:34.508237 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:40:34.508237 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:40:34.508237 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:40:34.508237 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 18:40:34.569036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:40:34.569036 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 18:40:35.582943 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:40:35] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:42:23.620125 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:42:23.620125 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:42:23.620125 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:42:23.620125 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:42:23.620125 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 18:42:23.659886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:42:23.659886 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 18:42:24.245162 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:42:24] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:43:15.786736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:43:15.786736 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 18:43:15.790758 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:root:2025-02-21 18:43:15.794757 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf7 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:43:15] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:44:30.110104 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:44:30.110104 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:44:30.110104 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:44:30.110104 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:44:30.110104 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 18:44:30.148715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:44:30.148715 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 18:44:30.774128 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:root:2025-02-21 18:44:30.775130 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf7 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:44:30] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:45:15.519685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:45:15.521058 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 18:45:15.528120 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:45:15] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:45:39.817160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:45:39.817160 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 18:45:39.820324 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:45:39] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:45:58.141555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:45:58.142719 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 18:45:58.146789 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:45:58] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:48:05.688037 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:48:05.688037 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:48:05.688037 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:48:05.688037 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:48:05.688037 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 18:48:08.359082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:48:08.359082 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 18:48:08.956656 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:48:08] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:51:33.505967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:51:33.505967 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 18:51:33.511003 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_84246.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_72387.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  NDA-001254 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Env Dev Part filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société Env Dev Part  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 Env Dev Part 

\nFormation : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  03/03/2025  11/03/2025 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  1500.0 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

 

\nPour l\'organisme de formation prenom   nonn \n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_32268.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:51:33] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:51:57.536648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:51:57.536648 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 18:51:57.539954 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_03988.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_22441.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  NDA-001254 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Env Dev Part filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société Env Dev Part  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 Env Dev Part 

\nFormation : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  03/03/2025  11/03/2025 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  1500.0 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

 

\nPour l\'organisme de formation prenom   nonn \n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_35499.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:51:57] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:53:13.936337 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:53:13.936337 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:53:13.936337 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:53:13.936337 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:53:13.936337 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 18:53:13.974955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:53:13.976935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:53:13.980973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:53:13.984962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:53:13.987959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:53:13.992607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:53:13.997436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:53:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:53:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:53:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:53:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:53:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:53:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:53:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 18:53:16.565621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 18:53:16.568620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:53:16] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 18:53:16] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:54:54.998935 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:54:54.998935 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:54:54.998935 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:54:54.998935 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:54:54.999937 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:55:27.663683 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:55:27.663683 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:55:27.663683 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:55:27.663683 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:55:27.663683 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 18:57:17.165403 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 18:57:17.165403 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 18:57:17.166404 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 18:57:17.166404 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 18:57:17.166404 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:00:11.320267 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:00:11.321267 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:00:11.321267 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:00:11.321267 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:00:11.321267 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:00:31.262319 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:00:31.262319 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:00:31.263320 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:00:31.263320 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:00:31.263320 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 19:00:32.006902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:00:32.006902 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 19:00:32.596437 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_59829.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_28084.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  NDA-001254 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Env Dev Part filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société Env Dev Part  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 Env Dev Part 

\nFormation : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  03/03/2025  11/03/2025 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  1500.0 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

 

\nPour l\'organisme de formation prenom   nonn \n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_53983.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 19:00:33.161926 : Prepare_and_Send_Default_Convention_From_Session_By_Email La valeur 'email_test' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:00:33] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:01:11.809521 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:01:11.809521 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:01:11.809521 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:01:11.809521 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:01:11.809521 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:01:26.791938 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:01:26.791938 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:01:26.792944 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:01:26.792944 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:01:26.792944 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 19:01:28.689152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:01:28.689152 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 19:01:29.294154 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_40973.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_50847.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  NDA-001254 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Env Dev Part filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société Env Dev Part  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 Env Dev Part 

\nFormation : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  03/03/2025  11/03/2025 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  1500.0 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

 

\nPour l\'organisme de formation prenom   nonn \n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_71722.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 19:01:29.747006 : Prepare_and_Send_Default_Convention_From_Session_By_Email Aucune convention d'entreprise n'est configurée +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:01:29] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:02:56.668847 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:02:56.668847 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:02:56.669850 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:02:56.669850 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:02:56.669850 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 19:03:18.941739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:03:18.941739 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 19:03:19.562975 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_23858.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_63241.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  NDA-001254 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Env Dev Part filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société Env Dev Part  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 Env Dev Part 

\nFormation : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  03/03/2025  11/03/2025 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  1500.0 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

 

\nPour l\'organisme de formation prenom   nonn \n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_01752.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 19:03:20.147946 : Prepare_and_Send_Default_Convention_From_Session_By_Email Aucune convention d'entreprise n'est configurée - 1 +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:03:20] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:04:36.741664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:04:36] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:04:36.745058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:04:36] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:04:36.761099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:04:36] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:04:36.764097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:04:36] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:04:44.702383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:04:44] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:04:48.408819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:04:48] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:04:53.393847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:04:53.397113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:04:53] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:04:53] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:00.104754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:00] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:11.454900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:11] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:11.636626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:11] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:20.208191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:05:20.211191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:20.216197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:05:20.222370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:05:20.227423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:05:20.231426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:20.238842 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:20.251951 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:20.309407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:20] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:20.313948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:05:20.323376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:20] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:20.325936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:20] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:20] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:28.810371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:28] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:32.911242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:05:32.914239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:32] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:41.066238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:41] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:50.550245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:50] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:50.670718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:50] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:05:56.272145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:05:56] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:01.474880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:01.477879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:01] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:08.960422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:08.963533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:08] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:08] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:20.569909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:20.569909 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-21 19:06:20.576907 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 679e1f8486671de6de2b0cf5 Id du CRON courrier_template_type_document_id = 65b7a92bce14fe0d46e393cf +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_73826.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_88718.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  NDA-001254 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Env Dev Part filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société Env Dev Part  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 Env Dev Part 

\nFormation : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  03/03/2025  11/03/2025 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  1500.0 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

 

\nPour l\'organisme de formation prenom   nonn \n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_62008.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_96496.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 19:06:21.567384 : Sent_E_Document_Signature_Request -[Errno 11001] getaddrinfo failed - Line : 2056 +INFO:root:2025-02-21 19:06:21.567384 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :    en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 03/03/2025  11/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysy1000formation+01@gmail.com
part nom6_client   part 6   mysy1000formation+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_49854.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 19:06:21.797795 : Sent_E_Document_Signature_Request -[Errno 11001] getaddrinfo failed - Line : 2056 +INFO:root:2025-02-21 19:06:21.797795 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  NDA-001254 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Env Dev Part filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société Env Dev Part  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 Env Dev Part 

\nFormation : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  03/03/2025  11/03/2025 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  1500.0 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 21/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation prenom   nonn 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_67238.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:root:2025-02-21 19:06:22.005520 : Sent_Convention_Stagiaire_By_Email -[Errno 11001] getaddrinfo failed - Line : 9472 +INFO:root:2025-02-21 19:06:22.005520 : WARNING impossible d'envoyer la convention a l'apprenant : 67b8b830fe0d73ce2787844c +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:22] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.508224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:38.512229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:38.516230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:38.522224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:38.529229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.536852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.545850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.551564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.560817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.567497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.575116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.584122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.596335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:38.601687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:38.607092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.611630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.621865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.631881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:38.640321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.649522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.664327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:38.668470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:38.678255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:38.679249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:42.979532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:42.983977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:42.987953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:42.993073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:42] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:43.001366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:43.005817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:43.011623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:43] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:43] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:43] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:06:47.567285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:06:47.570287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:47] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:06:47] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:11:54.407055 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:11:54.408056 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:11:54.408056 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:11:54.408056 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:11:54.408056 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:18:00.175470 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:18:00.176470 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:18:00.176470 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:18:00.176470 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:18:00.176470 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:18:22.661503 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:18:22.662512 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:18:22.662512 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:18:22.662512 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:18:22.662512 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:18:49.819597 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:18:49.820598 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:18:49.820598 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:18:49.820598 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:18:49.820598 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:19:04.833355 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:19:04.833355 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:19:04.833355 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:19:04.833355 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:19:04.833355 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:19:22.716470 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:19:22.716470 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:19:22.716470 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:19:22.716470 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:19:22.716470 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:19:50.912774 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:19:50.912774 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:19:50.912774 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:19:50.912774 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:19:50.912774 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:20:48.260426 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:20:48.260426 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:20:48.260426 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:20:48.260426 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:20:48.260426 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:25:31.725071 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:25:31.726070 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:25:31.726070 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:25:31.726070 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:25:31.726070 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:25:44.449101 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:25:44.449101 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:25:44.449101 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:25:44.449101 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:25:44.449101 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:26:45.193668 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:26:45.193668 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:26:45.193668 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:26:45.193668 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:26:45.193668 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 19:27:25.907691 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 19:27:25.907691 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 19:27:25.907691 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 19:27:25.907691 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 19:27:25.907691 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 19:28:09.404707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:28:09.407965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:28:09.409964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:28:09.413448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:28:09.416451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:28:09.423849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:28:09.433016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:28:09] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:28:09.442976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:28:09] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:28:09] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:28:09] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:28:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:28:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:28:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:28:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:29:44.790218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:29:44] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:29:45.869974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:29:45.879806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:29:45] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:29:47] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:30:59.723330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:30:59.727335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:30:59.730326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:30:59.733322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:30:59.738327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:30:59.745341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:30:59.753655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:30:59.757719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:30:59.764718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:30:59.767791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:30:59.772790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:30:59.779276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:30:59.787357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:30:59.796471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:30:59.799463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:30:59.805505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:30:59.808492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:30:59.813815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:30:59] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:31:02.230033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:31:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.191069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:22.194222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:22.198423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.204418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:22.208416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.216779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.225178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.230815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:22.232841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.239836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:22.245689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.253453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.265306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.271800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:22.277806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.283828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:22.291909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:22.292907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.303950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.313220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:22.314216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.323112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.333677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:22.347678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:22] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:23] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:23] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:40.767704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:41.440069 : Delete_List_SessionFormation1 Document supprimé. La session_id 67b8c6187744a5e90ac4544b a été correctement supprimée +INFO:root:2025-02-21 19:34:41.445080 : Delete_List_SessionFormation1 Document supprimé. La session_id 67b8c6187744a5e90ac45449 a été correctement supprimée +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:41] "POST /myclass/api/Delete_List_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:41.451075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.489671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:56.492888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:56.497383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.504385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:56.509381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:56.514377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.525382 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.535532 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.654063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:56.658055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:56.662178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:56.666187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.673187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.680388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.684388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:56.689817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.692806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:56.700807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.706449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.716606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.726480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:56.730775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.737592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:56.742665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.756953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.765481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.771477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.779479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.791486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.800768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:34:56.809931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:34:56.832369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:34:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:01.447908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:01] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:01.450917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:01] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:01.464675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:35:01.466679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:01] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:01] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:06.296202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:35:06.299199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:35:06.302200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:35:06.307201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:35:06.312203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:06.318204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:06.326200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:06.330216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:35:06.335214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:06.344609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:35:06.348074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:06.357393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:35:06.360947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:06.366946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:35:06.370972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:06.376970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:06.382969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:06.389769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:06] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:35:08.201601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:35:08] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:38:55.370952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:38:55.374161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:38:55.379530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:38:55.384164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:38:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:38:55] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:38:55.392967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:38:55.397230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:38:55.400231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:38:55] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:38:55] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:38:55.406714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:38:55.410189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:38:55] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:38:55] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:38:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:38:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:38:55] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:39:18.934838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:39:18] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:40:27.504618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:40:27] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:43:41.466639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:43:41.470645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:43:41.474651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:43:41.481644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:43:41] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:43:41.490641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:43:41] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:43:41.498640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:43:41] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:43:41.503644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:43:41] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:43:41.513646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:43:41] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:43:41.519669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:43:41] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:43:41] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:43:41] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:43:41] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:43:58.186041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:43:58] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:46:51.621476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:46:51.633812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:46:51.636396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:46:51.648261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:46:51.652834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:46:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:46:51] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:46:51.668183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:46:51.673235 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:46:51.684006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:46:51] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:46:51] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:46:51] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:46:51] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:46:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:46:51.709277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:46:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:46:51] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:47:01.153110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:47:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:47:58.821833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:47:58.826972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:47:58.830979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:47:58.838181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:47:58.843389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:47:58] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:47:58.847295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:47:58] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:47:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:47:58] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:47:58] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:47:58.865826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:47:58.868991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:47:58.875898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:47:58] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:47:58] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:47:58] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:47:58] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:49:47.901817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:49:47.907365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:49:47.915279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:49:47.923983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:49:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:49:47.930454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:49:47] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:49:47.939100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:49:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:49:47.946236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:49:47.949458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:49:47] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:49:47] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:49:47.961529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:49:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:49:47] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:49:47] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:49:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:49:53.743915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:49:53] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.742878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:51:18.748845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:51:18.764191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:51:18.772190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.786580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:51:18.792831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.832359 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.852359 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.854517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:51:18.858750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:51:18.863890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:51:18.870976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.880973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.886970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.893974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:51:18.898977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.905489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.911906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:51:18.914909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:51:18.923201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.942337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.945341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.954793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:51:18.960280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.968299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:51:18.973590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:51:18] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:52:21.087923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:52:21.091919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:52:21.095731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:52:21.097723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:52:21.104113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:21] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:52:21.117896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:21] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:52:21.127286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:21] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:52:21.136336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:21] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:21] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:52:21.143613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:21] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:21] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:21] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:21] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:52:24.421794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:52:56.627335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:52:56.631355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:52:56.632638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:52:56.637375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:56] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:52:56.642374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:52:56.654390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:56] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:56] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:52:56.664419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:56] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:52:56.669977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:52:56.674157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:56] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:56] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:56] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:52:56] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:53:00.884562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:00] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:53:18.681669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:53:18.683853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:53:18.689234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:53:18.695240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:53:18.699232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:53:18.704231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:18] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:18] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:53:18.717244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:53:18.721668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:18] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:18] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:53:18.729177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:18] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:18] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:18] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:18] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:53:39.845323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:53:39.848993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:53:39.853405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:39] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:53:39.860148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:53:39.863876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:39] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:53:39.874394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:53:39.881972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:39] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:53:39.887024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:39] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:53:39.896578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:39] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:39] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:39] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:39] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:53:41.915590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:53:41] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:54:01.967656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:54:01.970382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:54:01.975081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:54:01.980492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:54:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:54:01.987687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:54:01.993214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:54:01.999262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:54:02] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:54:02] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:54:02] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:54:02] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:54:02] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:54:02.017011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:54:02.019003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:54:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:54:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:54:02] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:54:04.245720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:54:04] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:55:50.071815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:55:50.082104 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:55:50.087101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:55:50.091100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:50] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:55:50.101185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:50] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:55:50.108829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:50] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:50] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:55:50.117715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:55:50.121713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:50] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:55:50.125991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:50] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:50] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:50] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:50] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:55:59.462148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:55:59.465447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:55:59.469708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:55:59.472309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:55:59.478810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:59] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:59] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:55:59.487492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:55:59.495171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:59] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:59] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:59] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:55:59.502979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:55:59.506290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:59] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:59] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:59] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:55:59] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:56:05.594689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:56:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:57:51.700780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:57:51.705776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:57:51.708779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:57:51.712777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:57:51.720778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:57:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:57:51] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:57:51] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:57:51] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:57:51.736349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:57:51] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:57:51.740842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:57:51.746336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:57:51.751430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:57:51] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:57:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:57:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:57:51] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:58:01.557024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:58:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:59:23.949839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:59:23.954089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:59:23.957085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:59:23.961292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:59:23.967943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 19:59:23.971526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:59:23] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:59:23] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:59:23] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:59:23.985914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:59:23] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:59:23] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:59:23.993947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:59:23] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 19:59:24.000003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:59:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:59:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 19:59:24] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:11:47.280191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:11:47.289407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:11:47.294874 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:11:47.299954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:11:47.311906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:11:47.322961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:11:47.335199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:11:47.342160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:11:47.352158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:11:47.365781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:11:47.370785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:11:47.377783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:11:47.385375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:11:47.392602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:11:47.399289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:11:47.407180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:11:47.413170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:11:47.419227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:11:47] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:13:26.735267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:13:26.748657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:13:26.753391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:13:26.828326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:13:26] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:13:26] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:13:26.992146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:13:26.998923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:13:27.095712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:13:27] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:13:27] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:13:27.228853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:13:27.234116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:13:27] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:13:27] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:13:27] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:13:27] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:13:27] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:14:33.028785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:14:33.031787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:14:33.036793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:14:33.038792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:14:33.044794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:14:33] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:14:33] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:14:33.056309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:14:33] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:14:33] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:14:33.065091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:14:33.067101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:14:33] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:14:33.071403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:14:33] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:14:33] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:14:33] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:14:33] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:16:03.355546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:16:03.359625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:16:03.363640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:16:03.368402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:16:03.374127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:16:03.386497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:16:03.388491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:16:03.397439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:16:03.404734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:16:03.408567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:16:03.417974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:16:03.430057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:16:03.435764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:16:03.442269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:16:03.448697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:16:03.460860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:16:03.468581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:16:03.474308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:16:03] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:17:47.945914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:17:47.949261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:17:47.953201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:17:47.957457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:17:47.978225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:17:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:17:47.981246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:17:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:17:47] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:17:47] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:17:47.991841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:17:47] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:17:47] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:17:48.001217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:17:48.003229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:17:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:17:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:17:48] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:17:56.994075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:17:57] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:18:45.937124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:18:45.940125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:18:45.943593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:18:45.948009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:18:45.951287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:18:45] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:18:45] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:18:45.960783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:18:45] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:18:45] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:18:45.964817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:18:45.969871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:18:45] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:18:45.977964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:18:45] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:18:45] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:18:45] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:18:45] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:18:50.296473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:18:50] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:19:33.841132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:19:33.844418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:19:33.849799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:19:33.852798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:19:33.857326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:19:33] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:19:33.864513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:19:33] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:19:33.873034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:19:33] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:19:33] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:19:33.881352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:19:33] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:19:33] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:19:33.890382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:19:33] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:19:33] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:19:33] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:19:35.608561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:19:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:19:49.251436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:19:49] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:19:49.330943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:19:49] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:04.405484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:21:04.410857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:21:04.415042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:21:04.419333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:04] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:04.430367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:04] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:04.437273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:04] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:04.443589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:04] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:04.447636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:21:04.453967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:04] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:04] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:04] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:04] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:04] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:10.003186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:10] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:36.718711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:21:36.721713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:21:36.724715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:21:36.731713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:36] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:36.739713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:21:36.746806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:36] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:36] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:36.754068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:36] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:36.760456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:36] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:36.765220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:36] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:36] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:36] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:36] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:40.978727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:40] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:53.602481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:53] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:21:53.678406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:21:53] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:22:02.527074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:22:02] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:22:02.655627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:22:02] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:24:35.280154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:24:35.284287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:24:35.287487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:24:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:24:35.293029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:24:35.298015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:24:35] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:24:35.306135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:24:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:24:35.314155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:24:35] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:24:35.321382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:24:35] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:24:35] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:24:35.327379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:24:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:24:35] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:24:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:24:37.229547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:24:37] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:24:50.081677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:24:50] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:24:50.137789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:24:50] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:25:12.226365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:25:12.231368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:25:12.237416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:25:12.243015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:25:12] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:25:12.254004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:25:12] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:25:12] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:25:12.265927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:25:12] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:25:12.273439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 20:25:12.277811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:25:12] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-21 20:25:12.288240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:25:12] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:25:12] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:25:12] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 20:25:12] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 20:31:28.116881 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 20:31:28.116881 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 20:31:28.116881 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 20:31:28.116881 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 20:31:28.116881 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 20:32:38.779229 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 20:32:38.780227 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 20:32:38.780227 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 20:32:38.780227 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 20:32:38.780227 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 20:33:04.732123 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 20:33:04.732123 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 20:33:04.732123 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 20:33:04.732123 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 20:33:04.732123 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 22:40:44.908892 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 22:40:44.909889 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 22:40:44.909889 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 22:40:44.909889 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 22:40:44.909889 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 22:41:12.847362 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 22:41:12.847362 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 22:41:12.847362 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 22:41:12.847362 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 22:41:12.847362 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 22:43:51.952587 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 22:43:51.952587 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 22:43:51.952587 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 22:43:51.952587 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 22:43:51.952587 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-21 22:43:59.267270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:43:59.416339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:43:59.422723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:43:59.427130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:43:59.433236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:43:59.439066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:43:59.446637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:43:59.472559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:43:59.495355 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2025-02-21 22:43:59.499701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:43:59.513643 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:43:59.651206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:43:59.660927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:43:59.663675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:43:59.681368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:43:59.707961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:43:59.718364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:43:59.737930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:43:59.751120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:43:59.772362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:43:59.799081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:43:59] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:44:07] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:44:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:44:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:44:08] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:00.629088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:00.637084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:00.639087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:00.652223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:00.663256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:00.670249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:00.679857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:00.683854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:00.694125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:00.702136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:00.710318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:00.728357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:00.746012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:00.756176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:00.763776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:00.772862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:00.782986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:00.792712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:00.801054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:00.814005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:00.819109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:00.833720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:00.847594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:00.848785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:00] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:07.328794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:07.333153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:07.336548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:07.343100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:07.351226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:07.358923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:07.365839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:07] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:12.256197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:12.258703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:12.262617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:12.268872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:12.276002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:12] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:45:12.285072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:12.291068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:45:12.296295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:12] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:12] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:12] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:13] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:13] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:45:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:48:45.017997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:48:45.023497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:48:45.028493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:48:45.034495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:45] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:45] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:48:51.341110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:48:54.461472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:48:54.467673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:48:54.476151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:48:54.485985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:48:54.499130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:48:54.506624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:48:54.510606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:48:54.522661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:48:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:50:41.898611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:50:41.902226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:50:41.907597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:50:41.912996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:50:41] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:50:41] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:50:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:50:42] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:50:51.852871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:50:51.857740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:50:51.863746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:50:51.868734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:50:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:50:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:50:52] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:50:52] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:51:03.092034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:51:06.054722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:51:06.060719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:51:06.066907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:51:06.075164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:51:06.096331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:51:06.116538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:51:06.130989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:51:06.138383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:06] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:06] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:07] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:07] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:51:37.245622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:51:37.247737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:51:37.255259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:51:37.261396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:37] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:51:37] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:53:22.458949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:53:24.102798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:53:24.107797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:53:24.113344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:53:24.123288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:53:24.132717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:53:24.133734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:53:24.144615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:53:24.160223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:24] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:24] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:25] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:53:29.830581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:53:29.835166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:53:29.838430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:53:29.843380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:29] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:30] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:53:30] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:25.119946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:25.123944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:25.134521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:25.140791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:25] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.228819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.238051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.245366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.249366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.258876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.276076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.277083 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.287292 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.424669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.429012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.436347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.444355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.455131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.463446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.475165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.483257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.490155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.494147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.510637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.521639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.525635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.535502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.553765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.562145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.570368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.576790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.593765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.600968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.605680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.617342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:40.627454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:40.651642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:46.004546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:46.011549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:46.015550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:46.018971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:46.027090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:46.034426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:46.040219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:50.111106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:50.117113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:50.126117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:50] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:55:50.138477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:50.151513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:50.163495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:50.176733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:55:50.183304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:50] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:50] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:50] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:55:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:56:25.005315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:56:25.009566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:56:25.014560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:56:25.017099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:56:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:56:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:56:25] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:56:25] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:58:49.709322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:58:49.716018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:58:49.723977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:58:49.730467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:58:49] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:58:49] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:58:50] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:58:50] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:58:59.334450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:58:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:59:02.679757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:59:02.687755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:59:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:59:02.708481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:59:02.740076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:59:02.763787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:59:02] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:59:02.782859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 22:59:02.796804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:59:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 22:59:02.813744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:59:02] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:59:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:59:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:59:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 22:59:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:00:17.702427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:00:17.708327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:00:17.715001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:00:17.720563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:00:17] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:00:17] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:00:18] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:00:18] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:00:54.115949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:00:54.126211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:00:54.132015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:00:54.140030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:00:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:00:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:00:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:00:54] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:06:59.346912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:06:59.352891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:06:59.356246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:06:59.370112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:06:59] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:06:59] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:07:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:07:00] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:12:24.116773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:12:24.119919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:12:24.133141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:12:24.140226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:12:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:12:24] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:12:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:12:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:12:47.125495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:12:47.130989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:12:47.146046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:12:47.153049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:12:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:12:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:12:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:12:47] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:15:40.579279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:15:40.583401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:15:40.589024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:15:40.591006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:15:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:15:40.599939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:15:40.610588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:15:40.614880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:15:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:15:40.635770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:15:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:15:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:15:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:15:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:15:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:15:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:17:18.698828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:17:18.705045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:17:18.710814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:17:18.717563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:17:18] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:17:18] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:17:19] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:17:19] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:21:50.315579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:21:50.318108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:21:50.323023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:21:50] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:21:50.328371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:21:50] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:21:50] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:21:50] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:23:16.158958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:23:16.162366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:23:16.168503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:23:16.174579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:23:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:23:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:23:16] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:23:16] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:32:14.230858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:32:14.239859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:32:14.246863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:32:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:32:14.259105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:32:14] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:32:14] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:32:14] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:33:16.356290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:33:16.371998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:33:16.380003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:33:16.387220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:33:16.393245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:33:16.400455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:33:16.407786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:16] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:33:20.314715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:33:20.321597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:33:20.325914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:33:20.335428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:33:20.352763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:20] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:33:20.364210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-21 23:33:20.371789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:20] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-21 23:33:20.382261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:20] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:20] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Feb/2025 23:33:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 23:38:08.473450 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 23:38:08.473450 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 23:38:08.473450 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 23:38:08.474303 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 23:38:08.474303 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-21 23:38:24.679600 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-21 23:38:24.679600 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-21 23:38:24.679600 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-21 23:38:24.679600 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-21 23:38:24.679600 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-24 11:18:44.509166 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-24 11:18:44.510176 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-24 11:18:44.510176 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-24 11:18:44.510176 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-24 11:18:44.510176 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-24 11:18:57.277753 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-24 11:18:57.278264 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-24 11:18:57.278264 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-24 11:18:57.278264 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-24 11:18:57.278264 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-24 11:29:26.359434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:26.607056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:26.612223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:26.616597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:26.625868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:26.638661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:26.640788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:26.666063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:26.706389 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:26.714546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:26.737386 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:26.811701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:26.814021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:26.825702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:26.844532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:26.867531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:26.879910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:26.890272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:26.908603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:26.915838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:26.961236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:26] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.419018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:29.427249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:29.435616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:29.442453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.452099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:29.460773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:29.479756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.500737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:29.514383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.526850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.535540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:29.553237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.582928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:29.607451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:29.619516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.639285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.656063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:29.675347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.718007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.732937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.772360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:29:29.776351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.841725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:29:29.906933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:29] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:34] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:34] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:29:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:30:31.488968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:30:31.493387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:30:31.499333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:30:31.507521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:30:31] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:30:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:30:31.515298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:30:31.521584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:30:31] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:30:31.526703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:30:31] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:30:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:30:31] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:30:31] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.418840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.424836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.430438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.439557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.446551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.456401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.458414 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.467133 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.664810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.669925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.672335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.678354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.687308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.693821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.701106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.709129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.714702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.722227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.729188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.735183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.744464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.757227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.761226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.775828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.780830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.788013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.804924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.811077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.817074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:43.826068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.836224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:43.852432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:50.220315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:50.230340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:50.243423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:50.249082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:50.259796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:50.280357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:50.293095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:53.890445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:53.900322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:53.911835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:53.933567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:53.951101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:53.965897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:31:53.978758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:31:53.983076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:54] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:31:54] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:32:57.910451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:32:57.916450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:32:57.921971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:32:57.927977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:32:57] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:32:57] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:32:58] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:32:58] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:42:37.306700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:42:37.322730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:42:37.330723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:42:37.341142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:42:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:42:37] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:42:37] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:42:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-24 11:43:26.271424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:43:26.297976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:43:26.326965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 11:43:26.370043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:43:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:43:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:43:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 11:43:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-24 12:07:14.485501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:07:14.490743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:07:14.503587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:07:14.524224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:07:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:07:14] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:07:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:07:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-24 12:10:23.572019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:10:23.582886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:10:23.593061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:10:23.599249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:10:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:10:23] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:10:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:10:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-24 12:13:56.000722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:13:56.007722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:13:56.015717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:13:56.023717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:13:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:13:56] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:13:56] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:13:56] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-24 12:20:40.933585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:20:40.938714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:20:40.943742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:20:40.950264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:20:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:20:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:20:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:20:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-24 12:22:30.883890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:22:30.889890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:22:30.895335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:22:30.901982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:22:30] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-24 12:22:30.914634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:22:30.925450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:22:30.931569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:22:30] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:22:30] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-24 12:22:30.954732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:22:30] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:22:31] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:22:31] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:22:31] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:22:31] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-24 12:23:53.026900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:23:53.033268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:23:53.040262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:23:53.047683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:23:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:23:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:23:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:23:53] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-24 12:33:25.798830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:33:25.809996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:33:25.816993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:33:25.825534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:33:25.831530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:33:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-24 12:33:25.840960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-24 12:33:25.849351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:33:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-24 12:33:25.881707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:33:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:33:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:33:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:33:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:33:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Feb/2025 12:33:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 11:58:17.742158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 11:58:17.756729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 11:58:17.765528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 11:58:17.822684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 11:58:17.834560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 11:58:17.860261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 11:58:17.886860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:17] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:17] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:17] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:18] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-25 11:58:22.633730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 11:58:22.638342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 11:58:22.646747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 11:58:22.652769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:22] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 11:58:22.668009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 11:58:22.675062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 11:58:22.686241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 11:58:22.695686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:22] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:22] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:22] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:23] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:23] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:23] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 11:58:23] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:24.258621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:24.319837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:24.433624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:24.447853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:24.509773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:24.577084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:24.595846 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:24.605943 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:24.747827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:24.753458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:24.761739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:24.826411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:24.829486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:24.883200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:24.897004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:24.908453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:24.962195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:24.976126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:24.984832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:24] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:25.044835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:25.107179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:25.115160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:25.128266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:25.209396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:25.226485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:25.238231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:25.298516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:25.356522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:25.371121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:25.477230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:25.532946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:25.583167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:33.877816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:33.881814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:33.900697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:33.903696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:33] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:33.909413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:00:33.918299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:00:33.924412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:33] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:33] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:33] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:00:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:01:42.373205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:01:42.378723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:01:42.382265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:01:42.387269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:01:42.392801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:01:42.396332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:01:42.403167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:01:42.410615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:01:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:01:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:01:42] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:01:42] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:01:43] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:01:43] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:01:43] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:01:43] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:01:58.256663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:01:58] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:03:12.952149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:03:12.961812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:03:12.967016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:03:12.971010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:03:12] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:03:12] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:03:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:03:13] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:03:27.458465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:03:27.460993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:03:27.467011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:03:27.472158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:03:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:03:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:03:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:03:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:16.120151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:16.129643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:16.136540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:16.142214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:16.151959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:16.163502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:16.174490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:16] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:19.280123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:19.283133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:19.287637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:19.293782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:19.297426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:19] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:19.311847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:19.320508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:19] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:19.330951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:19] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:19] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:20] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:20] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:37.488457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:37.492527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:37.497041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:37.504238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:37] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:37.510557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:37.516204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:37] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:37.523364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:37] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:37] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:37] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:40.785588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:40.789591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:40.792580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:40.798387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:40.805295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:40.817269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:32:40.825574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:32:40.837077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:32:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:40:47.871150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:40:47.876452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:40:47.879765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:40:47.887267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:40:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:40:47.896066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:40:47.905838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:40:47.914825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:40:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:40:47.930253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:40:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:40:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:40:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:40:48] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:40:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:40:48] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:41:00.591424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:41:00.601994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:41:00.607002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:41:00.613192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:41:00.619342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:41:00.626921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:41:00.633247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:41:03.845536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:41:03.856164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:41:03.862054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:41:03.869381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:41:03.877973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:41:03.886107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:41:03.894826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:41:03.899367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:41:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:43:12.726813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:43:12.731812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:43:12.736922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:43:12.739908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:43:12] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:43:12] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:43:12.989147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:43:12.997077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:43:13.005081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:43:13.012077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:43:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:43:13] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:43:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:43:13] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:43:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:43:13] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:44:09.755221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:44:09.764924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:44:09.770602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:44:09.773647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:44:09] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:44:09] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:44:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:44:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:45:46.239430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:45:46.246922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:45:46.255928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:45:46.261126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:45:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:45:46] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:45:46] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:45:46] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:46:41.073020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:46:41.077152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:46:41.082003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:46:41.086800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:46:41] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:46:41] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:46:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:46:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:47:40.020486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:47:40.023486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:47:40.028485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:47:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:47:40.035027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:47:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:47:40] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:47:40] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:48:46.285019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:48:46.290080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:48:46.295507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:48:46.299314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:48:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:48:46] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:48:46] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:48:46] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:49:57.461242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:49:57.466028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:49:57.469943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:49:57.474935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:49:57] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:49:57] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:49:57] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:49:57] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:51:06.645570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:51:06.649838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:51:06.658836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:51:06.662448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:51:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:51:06] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:51:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:51:07] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:51:20.918308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:51:20.921371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:51:20.925585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:51:20.931999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:51:20] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:51:20] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:51:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:51:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:53:23.626626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:53:23.629791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:53:23.634633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:53:23.639634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:53:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:53:23] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:53:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:53:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:54:52.608166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:54:52.612364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:54:52.619270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:54:52.626087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:54:52] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:54:52] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:54:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:54:53] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 12:58:02.624716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:58:02.629833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:58:02.633833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 12:58:02.639998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:58:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:58:02] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:58:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 12:58:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-25 12:59:49.632437 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-25 12:59:49.632437 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-25 12:59:49.632437 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-25 12:59:49.632437 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-25 12:59:49.632437 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-25 13:00:10.133584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:00:10.138954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:00:10.143223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:00:10.148304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:00:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:00:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:00:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:00:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-25 13:18:32.748427 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-25 13:18:32.749440 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-25 13:18:32.749440 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-25 13:18:32.749440 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-25 13:18:32.749440 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-25 13:18:32.864014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:18:32.870015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:18:32.876008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:18:32.883013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:18:32.887013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:18:32.898033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:18:32.913577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:32] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:33] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:18:36.641376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:18:36.647377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:18:36.655376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:18:36.661374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:18:36.670380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:36] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:18:36.687387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:18:36.696369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:18:36.711403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:36] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:36] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:36] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:38] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:38] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:18:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-25 13:19:13.856616 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-25 13:19:13.857616 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-25 13:19:13.857616 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-25 13:19:13.857616 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-25 13:19:13.857616 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-25 13:19:13.954201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:19:13.960456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:19:13.967480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:19:13.975751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:19:13.987116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:19:14.003430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:19:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:19:14.020535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:19:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:19:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:19:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:19:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:19:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:19:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:19:21.028097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:19:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:19:42.374934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:19:42.667004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:19:42.886377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:19:43.053544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:19:43.061528 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:19:43.080590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:19:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:19:43.095582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:19:43] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:20] "POST /myclass/api/CancelAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:20:20.030204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:20:20.038628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:20:20.055062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:20:20.061930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:20] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:22] "POST /myclass/api/CancelAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:20:22.295670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:20:22.297233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:20:22.306425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:22] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:20:22.323978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:24] "POST /myclass/api/CancelAttendeeInscription/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:24] "POST /myclass/api/CancelAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:20:24.690370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:20:24.693981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:20:24.703361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:20:24.711899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:24] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:20:25.077682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:20:25.084222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:20:25.091004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:20:25.099604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:25] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:20:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:08.509339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:10.181361 : Delete_List_SessionFormation Impossible de supprimer la session BONDU01_Mar. Vous avez 2 devis ou commandes (s) associé(s) +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:10] "POST /myclass/api/Delete_List_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:12] "POST /myclass/api/CancelAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:12.318044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:12.325046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:12.331058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:12.343740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:12] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:22.544044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:22.551476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:22.555475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:22.568635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:22.575941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:22.586955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:22.597214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:22.612436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:22.631161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:22.635208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:22.651786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_List_Partner_Produit_Service/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:22.668847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:22.678490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:22.691691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:22.713098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:22.725551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:22.738561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:22.762317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:22.822090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:22.828692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_List_Partner_Produit_Service/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:22] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:23] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:33.436629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:33.540274 : Delete_Partner_Order_Header_And_Lines - Cette commande contient des lignes traitées ou facturées. Impossible de supprimer le document +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:33] "POST /myclass/api/Delete_Partner_Order_Header_And_Lines/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:39.123949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:39] "POST /myclass/api/Delete_Partner_Order_Header_And_Lines/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:39.421240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:39] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:43.056225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:43.060901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:43.088944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:43.094360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:43] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:43] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:21:53.286719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:21:53.291296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:53] "POST /myclass/api/Get_Given_Partner_Invoice/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:21:53] "POST /myclass/api/Get_Given_Partner_Invoice_Lines/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:22:00.118815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:22:00] "POST /myclass/api/Create_Invoice_Avoir_Total/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:22:00.476641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:22:00.483233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:22:00.490662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:22:00.499143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:22:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:22:00] "POST /myclass/api/Get_Given_Partner_Invoice/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:22:00] "POST /myclass/api/Get_Given_Partner_Invoice_Lines/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:22:00] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:35:59.962138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:35:59.968714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:36:00.018049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:36:00.025951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:36:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:36:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:36:00] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:36:00] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-25 13:36:40.181907 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-25 13:36:40.181907 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-25 13:36:40.181907 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-25 13:36:40.182912 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-25 13:36:40.182912 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-25 13:36:40.301041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:36:40.307041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:36:40] "POST /myclass/api/Get_Given_Partner_Invoice/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:36:40] "POST /myclass/api/Get_Given_Partner_Invoice_Lines/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:36:43.292505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:36:43.302056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:36:43] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:36:43] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:16.729972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:16.839213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:16.857083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:16.865088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:16.871521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:16.878407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:16] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:16.900823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:16.911823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:16.925013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:16] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:16.934628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:16.944956 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:16.961947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:16] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:16.975956 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:16.980949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:16.995957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:17.017971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:17] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:17] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:17.033398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:17.051399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:17.061396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:17] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:17.072190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:17.080431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:17.084980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:17.088469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:17] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:17.150254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:17] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:17] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:17] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:43.293632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:43] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:37:44.991560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:37:44.999181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:45] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:37:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:42:59.355726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:42:59.362049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:42:59.369859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:42:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:42:59.381715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:42:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:42:59.389276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:42:59.392548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:42:59.402668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:42:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:42:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:42:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:42:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:42:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:43:03.692439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:43:03.699810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:43:03.706088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:43:03.713694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:43:03.724093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:43:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:43:03.732077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:43:03.743227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:43:03.753504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:43:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:43:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:43:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:43:05] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:43:05] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:43:05] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:43:05] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:44:58.146197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:44:58.152214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:44:58.160249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:44:58.171471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:44:58] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:44:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:44:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:44:58] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:44:58.240916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:44:58.249820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:44:58.256273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:44:58] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:44:58.269621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:44:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:44:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:44:58] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:00.812558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:00.820625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:00.831716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:00.841980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:00.856241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:00.867484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:00.873001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:00.888436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:00.903503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:00] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:00.909102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:00.931906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:00] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:00.944175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:00.953682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:00] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:00.978470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:00.986953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:00] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:01.003178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:01.015472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:01.025994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:01.034002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:01.041164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:01.059027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:01.079273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:01] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:01.119515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:01.128243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:01] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:01] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:12.947339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:13] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:13.959100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:13.967098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:13] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:22.309087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:22.318697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:22.326280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:22.344492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:22] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:22.348841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:22.362647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:22.367665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:22] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:22] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:22] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:22] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:26.496121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:26.505239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:26.510470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:26.519480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:26.524481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:45:26.539096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:26.546444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:45:26.555989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:45:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:46:18.426957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:46:18.431501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:46:18.436778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:46:18.442375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:46:18] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:46:18] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:46:18] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:46:18] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:47:09.905641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:47:09.910946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:47:09.921250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:47:09] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:47:09.933649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:47:09] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:47:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:47:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:48:03.699146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:48:03.703150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:48:03.713327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:48:03.714328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:48:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:48:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:48:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:48:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:50:50.017454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:50:50.023671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:50:50.028050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:50:50.036106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:50:50] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:50:50] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:50:50] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:50:50] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:54:45.203208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:54:45.209825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:54:45.216624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:54:45.224217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:54:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:54:45] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:54:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:54:45] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:55:22.261099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:55:22.269855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:55:22.279321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:55:22.289144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:55:22] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:55:22] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:55:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:55:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:56:08.203200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:56:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:56:10.625319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:56:10.629729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:56:10.640215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:56:10.643612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:56:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:56:10.656008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:56:10.668716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:56:10.683408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:56:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:56:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:56:10.702796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:56:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:56:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:56:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:56:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:56:10] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:57:30.495842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:57:30.503851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:57:30.514593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:57:30.522089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:57:30] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:57:30] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:57:30] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:57:30] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-25 13:59:22.950145 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-25 13:59:22.950145 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-25 13:59:22.950145 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-25 13:59:22.950145 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-25 13:59:22.950145 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-25 13:59:34.737051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:59:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:59:47.737556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:59:47.743556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:59:47.750759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:59:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:59:47.775134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:59:47.789704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:59:47.798563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 13:59:47.809624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:59:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-25 13:59:47.820486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:59:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:59:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:59:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:59:48] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:59:48] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 13:59:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:06:21.893703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:06:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:06:24.951882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:06:24.963883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:06:24.971882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:06:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:06:24.984882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:06:24.995922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:06:25.011479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:06:25.020476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:06:25.031481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:06:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:06:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:06:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:06:25] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:06:25] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:06:25] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:06:25] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:27:34.791853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:27:36.905623 : Controle_Add_Update_SessionFormation_mass_for_many_class : entete du fichier csv. 'client_rattachement_email' n'est pas acceptée +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:27:36] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:02.769483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:02.773664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:02.778665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:02.785789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:02.795644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:02.797955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:02.812847 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:02.820273 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:03.060117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:03.063624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:03.069203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:03.075061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:03.084782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:03.097196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:03.104730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:03.113591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:03.119827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:03.125978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:03.134735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:03.145241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:03.148385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:03.168741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:03.173742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:03.185585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:03.188584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:03.209669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:03.215022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:03.223611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:03.231740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:03.249237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:28:03.262088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:28:03.272248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:28:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:29:02.495843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:29:02.505973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:29:02.511598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:29:02.517604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:29:02.528859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:29:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:29:02] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:29:02.541753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:29:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:29:02.557035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:29:02] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:29:02] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:29:02] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:29:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:29:15.222989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:29:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:29:27.229213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-25 14:30:21.864069 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-25 14:30:21.865069 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-25 14:30:21.865069 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-25 14:30:21.865069 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-25 14:30:21.865069 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-25 14:30:21.927842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:30:23.083665 : AddStagiairetoClass - L'adresse email mysytraining+apprenant1@gmail.com est deja inscrite à la session du 67bdbb59ce29bea8bf704bb7 +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:30:23] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:31:39.385808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:31:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:31:41.398065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:31:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:31:49.251421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:11] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:33:12.012413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:12.014457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:12.023643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:12.033969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:12] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:33:18.213251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:33:26.465702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:26.475475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:26.482949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:26.487412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:26.493602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:26] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:33:26.505510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:26.508507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:26] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:26] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:26] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:26] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:33:30.198101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:30.204089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:30.210933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:30.222643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:30] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:33:30.233239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:30.252763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:30.259126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:30.273573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:30] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:30] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:30] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:30] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:30] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:30] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:30] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:33:36.775668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:33:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:33:51.792321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:33:56.846081 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10061) - Line : 1891 +INFO:root:2025-02-25 14:33:56.852216 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-25 14:34:27.633138 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-25 14:34:27.637204 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-25 14:35:17.066356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:35:17.639748 : incription_training_confirmation_mail -Connection unexpectedly closed - ERRORRRR AT Line : 296 +INFO:root:2025-02-25 14:35:17.643780 : AcceptAttendeeInscription - WARNING : Impossible d'envoyer le mail de notification pour mysytraining+apprenant2@gmail.com +INFO:root:2025-02-25 14:35:18.187553 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-25 14:35:18.190610 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-25 14:35:18.226699 : incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 273 +INFO:root:2025-02-25 14:35:18.229694 : AcceptAttendeeInscription - WARNING : Impossible d'envoyer le mail de notification pour mysytraining+apprenant3@gmail.com +INFO:root:2025-02-25 14:35:18.768330 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-25 14:35:18.771329 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-25 14:35:18.805823 : incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 273 +INFO:root:2025-02-25 14:35:18.808820 : AcceptAttendeeInscription - WARNING : Impossible d'envoyer le mail de notification pour mysy1000formation+01@gmail.com +INFO:root:2025-02-25 14:35:19.328468 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10065) - Line : 1891 +INFO:root:2025-02-25 14:35:19.333005 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-25 14:35:19.374033 : incription_training_confirmation_mail -[Errno 11001] getaddrinfo failed - ERRORRRR AT Line : 273 +INFO:root:2025-02-25 14:35:19.377346 : AcceptAttendeeInscription - WARNING : Impossible d'envoyer le mail de notification pour mysy1000formation+02@gmail.com +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:19] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:35:19.657056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:35:25.149281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:35:35.534855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:35.541930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:35.547288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:35.556417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:35] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:35:35.568199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:35.589389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:35] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:35:35.604574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:35.617796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:35] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:35] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:35] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:35] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:35:49.378064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:49.394244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:49.404320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:49.410512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:35:49.425727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:35:49.438851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:49.448164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:35:53.292324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:53.298751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:53.306530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:53.312765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:53.323656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:35:53.340964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-25 14:35:53.354374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-25 14:35:53.368216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:53] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Feb/2025 14:35:53] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 10:28:42.220938 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 10:28:42.220938 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 10:28:42.222476 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 10:28:42.222476 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 10:28:42.222476 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 10:28:55.135274 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 10:28:55.135274 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 10:28:55.135274 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 10:28:55.135274 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 10:28:55.135274 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 10:29:54.012605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:29:54.124632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.129951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.135483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.141410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.148411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.156409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:29:54.181494 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:29:54.196060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.204063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.232938 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:29:54.315486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.323499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.332708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.344725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:29:54.381396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.383402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.391696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:29:54.404614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:29:54.428888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:29:54.450417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:29:54] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:01] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:02] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:14.313092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:14.317499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:14.323619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:14.330665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:14.338165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:14.344938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:14.354057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:14.361057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:14.371053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:14.380316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:14.386702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:14.395032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:14.399331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:14.408479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:14.417222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:14.424100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:14.434131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:14.439389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:14.447469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:14.454931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:14.471069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:14.481877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:14.489019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:14.498229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:28.859494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:28.867267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:28.875685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:28.884946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:28.892945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:28.906707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:28] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:28.918984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:37.034422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:37.039084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:37.044407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:37.051182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:37.061605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:37.066937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:30:37.074233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:30:37.089599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:37] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:37] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:37] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:30:37] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:34:15.640820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:34:15.645826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:34:15.649875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:34:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:34:15.656911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:34:15] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:34:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:34:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:38:47.779313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:38:47.785402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:38:47.794366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:38:47.800656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:38:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:38:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:38:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:38:48] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:38:59.729340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:38:59.733582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:38:59.740452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:38:59.745619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:38:59] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:38:59] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:38:59] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:38:59] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:40:03.177475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:40:03.184304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:40:03.188735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:40:03.193695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:40:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:40:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:40:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:40:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:49:40.497716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:49:40.502181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:49:40.512101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:49:40.521116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:40] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:40] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:49:44.662176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:49:47.195353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:49:47.204349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:49:47.212018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:49:47.231398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:49:47.238395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:49:47.264574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:49:47.283297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:49:47.304676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:47] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:49:47] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.233648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:03.253358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:03.267354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:03.286349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.325722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.343160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:03.382290 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.405393 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.590027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:03.599268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:03.611703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:03.624482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.644333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.673949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:03.682944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.702643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.733516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:03.756393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.771178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.795082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:03.805661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.824862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.848689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.853797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:03.929924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:03.964443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:03.975738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:04.002943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:04] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:04.019936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:04.041858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:04.059389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:04] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:04.100610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:10.981376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:10.987728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:10.993509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:10.997949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:11.006048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:11.021316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:11.032445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:20.665384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:20.678427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:20.685608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:20.697238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:20] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 10:51:20.703987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:20.713778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:20.725779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 10:51:20.739462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:20] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:20] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:20] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 10:51:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:43.715381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:00:43.722399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:00:43.727384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:43.740382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:00:43.753176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:43.768937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:43] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:43.794438 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:43.801736 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:43] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:43.958999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:00:43.965009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:00:43.975682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:43.984481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:43.991393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:00:44.005130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:00:44.015000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.025496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.044127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.050657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:00:44.059561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:00:44.065671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.076839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.089030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.101798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.111205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.123537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:00:44.136131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.154752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.166472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.178282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.192340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:00:44.203107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:44.228997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:54.475396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:55] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:00:55.455959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:00:55.462749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:55] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:00:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:01:00.333684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:01:00.342834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:01:00.349310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:01:00.352476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:01:00.362058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:01:00.370063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:01:00.377516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:01:06.279907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:01:15.088466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:49] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:01:49.384545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:01:49.390572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:01:49.399590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:01:49.410200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:01:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:03:04.855066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:03:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:03:13.517746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:03:13.525113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:03:13.532112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:03:13.542113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:03:13.552141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:03:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:03:13.577461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:03:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:03:13.595402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:03:13.610256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:03:13] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:03:13] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:03:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:03:13] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:03:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:03:13] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:03:16.992162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:03:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:03:28.191822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:03:52.795648 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 11:03:52.803910 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 11:04:19.133421 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 11:04:19.137421 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 11:04:43.808037 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 11:04:43.812037 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 11:05:08.360189 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 11:05:08.364189 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 11:05:32.211711 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 11:05:32.215264 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:05:36] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:05:36.108640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:05:36.114396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:05:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:05:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:13:46.360722 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:13:46.360722 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:13:46.360722 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:13:46.360722 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:13:46.360722 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:14:23.571602 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:14:23.571602 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:14:23.571602 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:14:23.571602 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:14:23.571602 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:22:09.773485 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:22:09.773485 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:22:09.773485 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:22:09.773485 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:22:09.773485 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:23:43.365720 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:23:43.365720 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:23:43.365720 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:23:43.365720 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:23:43.365720 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:25:01.976241 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:25:01.976241 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:25:01.977244 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:25:01.977244 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:25:01.977244 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:28:35.566357 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:28:35.566357 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:28:35.566357 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:28:35.566357 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:28:35.566357 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:30:48.413701 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:30:48.413701 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:30:48.414714 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:30:48.414714 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:30:48.414714 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:33:49.940886 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:33:49.940886 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:33:49.940886 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:33:49.940886 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:33:49.940886 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:34:40.385006 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:34:40.386009 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:34:40.386009 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:34:40.386009 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:34:40.386009 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:37:53.294418 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:37:53.295414 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:37:53.295414 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:37:53.295414 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:37:53.295414 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:39:46.781810 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:39:46.781810 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:39:46.781810 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:39:46.781810 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:39:46.781810 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 11:40:24.095416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:40:24.098412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:40:24.103427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:40:24.108294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:40:24.113348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:40:24.124246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:24] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:40:24.136564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:24] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:24] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:24] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:24] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:40:27.742195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:40:33.927238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:40:34.725922 : SendPre_InscriptionEmail -'token' - ERRORRRR AT Line : 1893 +INFO:root:2025-02-26 11:40:34.728006 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email mysytraining+apprenant1@gmail.com pour la session 67bee656475c752720ba6ac9 +INFO:root:2025-02-26 11:40:34.826980 : SendPre_InscriptionEmail -'token' - ERRORRRR AT Line : 1893 +INFO:root:2025-02-26 11:40:34.828980 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email mysytraining+apprenant2@gmail.com pour la session 67bee656475c752720ba6ac9 +INFO:root:2025-02-26 11:40:34.930658 : SendPre_InscriptionEmail -'token' - ERRORRRR AT Line : 1893 +INFO:root:2025-02-26 11:40:34.932658 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email mysytraining+apprenant3@gmail.com pour la session 67bee656475c752720ba6ac9 +INFO:root:2025-02-26 11:40:35.036023 : SendPre_InscriptionEmail -'token' - ERRORRRR AT Line : 1893 +INFO:root:2025-02-26 11:40:35.039115 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email mysy1000formation+01@gmail.com pour la session 67bee656475c752720ba6ac9 +INFO:root:2025-02-26 11:40:35.124947 : SendPre_InscriptionEmail -'token' - ERRORRRR AT Line : 1893 +INFO:root:2025-02-26 11:40:35.126948 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email mysy1000formation+02@gmail.com pour la session 67bee656475c752720ba6ac9 +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:35] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:40:35.147564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:40:35.150555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:40:35.154561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:40:35.160566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:40:41.721120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:40:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:43:07.774751 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:43:07.774751 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:43:07.774751 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:43:07.774751 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:43:07.774751 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 11:43:20.459979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:43:20.465974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:43:20.470972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:43:20.476967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:43:20.486974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:43:20.500977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:43:20.503967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:43:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:43:20.513374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:43:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:43:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:43:20.535394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:43:20.548416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:43:20] "POST /myclass/api/Get_List_Groupe_Inscrit_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:43:20] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:43:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:43:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:43:20] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:43:20] "POST /myclass/api/Get_List_Groupe_Inscrit_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:43:20] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:43:21.622388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:43:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:43:29.207728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:44:09] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:44:09.367431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:44:09.369885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:44:09.372886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:44:09.379087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:44:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:44:09] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:44:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:44:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:45:05.916716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:45:05.920226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:45:05.923233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:45:05.927589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:45:05.931584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:05] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:45:05.937586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:45:05.946592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:05] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:45:05.952635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:05] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:05] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:45:05.960350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:45:05.964838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:45:05.971557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:45:05.978781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:05] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:45:05.987264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:45:05.990713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:05] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:45:05.995708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:45:05.997711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:45:06.004740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:06] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:06] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:06] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:45:06.014738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:06] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:06] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:06] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:45:06] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.710289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:47:02.714296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:47:02.718766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.723603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:47:02.729160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:47:02.734163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.747695 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.750870 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.900056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:47:02.905058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:47:02.908368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.913214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:47:02.918205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.926717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.933240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.939819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.947169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:47:02.951365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.961388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.974860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.986009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.991908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:02] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:02.999941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:47:03.003679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:47:03.011213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:03] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:03] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:03] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:03.025908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:03] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:47:29.622484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:47:30.325580 : Add_Update_Partner_Basic_Setup - La configuration 'preinscription_notification_email' n'est pas acceptée +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:47:30] "POST /myclass/api/Add_Update_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\GlobalVariable.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:49:47.229724 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:49:47.229724 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:49:47.229724 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:49:47.229724 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:49:47.229724 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 11:49:47.326407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:49:47] "POST /myclass/api/Add_Update_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:49:47.455564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:49:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.297899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:28.301906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:28.306069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:28.311529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:28.315527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.326040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.335289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.343912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.351856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:28.355387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.366250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.377864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:28.380895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:28.384005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.394795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:28.400874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.409357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.419482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:28.424480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.436506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.445891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.459731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.470132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:28.482353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:28] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:44.356079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:44.358617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:44] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:44.489238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:44.492237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:44] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:50:44.542731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:44.546707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:50:44.550970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:44] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:50:44] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:51:49.075193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:51:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:51:53.520572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:52:37] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:52:37.602071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:52:37.605315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:52:37.609421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:52:37.612421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:52:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:52:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:52:37] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:52:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:58:38.717477 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:58:38.717477 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:58:38.717477 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:58:38.717477 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:58:38.717477 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 11:58:51.449413 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 11:58:51.449413 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 11:58:51.449413 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 11:58:51.456141 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 11:58:51.456141 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 11:58:51.514884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:58:51.519248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:58:51.522283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:58:51.527853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:58:51.532918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:58:51.540268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:58:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:58:51] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:58:51.547892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:58:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:58:51] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:58:51] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:58:51] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:58:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:58:53.936147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:58:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:59:04.001574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:59:04] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:59:04.600584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:59:04.602589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:59:04.605584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 11:59:04.611587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:59:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:59:04] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:59:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:59:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 11:59:11.532302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 11:59:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:00:05.992554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:00:32.818820 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:00:32.821172 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:00:35] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:00:35.753838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:00:35.772259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:00:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:00:35.803264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:00:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:00:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:05:38.906937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:05:38.910939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:05:38.915931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:05:38.919858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:05:38.927258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:05:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:05:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:05:38.938497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:05:38.943336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:05:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:05:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:05:38.947411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:05:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:05:38.957915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:05:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:05:38.964924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:05:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:05:38.972123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:05:38.978007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:05:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:05:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:05:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:05:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:05:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:06:06.229000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:06:06.232190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:06:06.233742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:06:06.241304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:06] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:06:06.248303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:06:06.255302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:06] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:06:06.259295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:06] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:06] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:06:09.293909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:06:29.994310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:30] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:06:30.342103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:06:30.347101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:06:30.354102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:30] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:06:46.991285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:06:49.676813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:06:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:07:03.101254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:07:24.555354 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:07:24.557355 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:07:49.964364 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:07:49.967364 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:08:14.902570 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:08:14.905563 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:08:46.987210 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:08:46.990200 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:08:49] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:08:49.431106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:08:49.433622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:08:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:08:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:15:56.283572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:15:56.290961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:15:56.298858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:15:56.307936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:15:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:15:56.322942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:15:56.332527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:15:56.338802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:15:56] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:15:56.354865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:15:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:15:56] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:15:56] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:15:56] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:15:56] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:15:56] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.340781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.348781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.359818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.376818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.393102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.415828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.423227 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.435733 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.557309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.562712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.571790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.583770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.588759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.596906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.606620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.618633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.628633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.641629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.650631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.660627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.669632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.693828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.705242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.711776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.720774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.741108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.761400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.772396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.778400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.802420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:25.806928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:25.831293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:33.189387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:33.194531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:33.199539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:33.208895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:33] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:33.217760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:33.228656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:33] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:33.237838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:33] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:33] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:36.373520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:36.379661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:36.386819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:36.392032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:36] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:16:36.397799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:36.405404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:36.406883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:16:36.417093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:36] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:36] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:36] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:36] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:36] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:36] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:16:36] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 12:18:37.351843 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 12:18:37.351843 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 12:18:37.351843 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 12:18:37.351843 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 12:18:37.351843 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 12:19:33.792655 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 12:19:33.793655 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 12:19:33.793655 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 12:19:33.793655 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 12:19:33.793655 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 12:20:10.534695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.538026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.541042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.545901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.547915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.554340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.571935 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.580335 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.674511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.676788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.679123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.688210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.693800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.701438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.706117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.715890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.719072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.727182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.736504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.743581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.753655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.760142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.776863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.782861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.792856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.797876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.821367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.829171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.837028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:10.842578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.853481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:10.873060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:21.213059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:21] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:21.694734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:21.697744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:21] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:22] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:48.651673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:48.654786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:48.658248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:48.662245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:48] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:48.667344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:48.674419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:48] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:48.681861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:48] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:48] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:51.361900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:55.837858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:56] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:56.483258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:56.486388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:20:56.491416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:20:56.499500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:20:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:00.534196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:12.048082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:34.186942 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:21:34.188942 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:21:39.269247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.272253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.277245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.281931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.285278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.289288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.303105 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.308606 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.428339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.431334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.436230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.443343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.454848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.464028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.471656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.477322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.480336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.491378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.500990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.511678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.520234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.530922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.536546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.554958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.562652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.567087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.582107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.589642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.592645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.612304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:39.616319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:39.640667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:48.505932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:48.509033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:48.514115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:48.520448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:48.523822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:48.531903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:48.540462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:48.544795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:48.552991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:48.557465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:48.563243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:48.567639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:48.581053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:48.583521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:21:48.587570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:48.594567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:48.604540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:48.611536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:48] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:59.862522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:59] "POST /myclass/api/Add_Update_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:21:59.939419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:21:59] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:00.842791 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:22:00.844791 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:22:13.252654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:13.257604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:13.263623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:13.277615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:13.315976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:13.378543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:13.400543 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:13.825415 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:14.565916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:14.570144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:14.608167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:14.617176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:14.765695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:14.952274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:15.181009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:15.187950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:15.194447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:15.197451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:15.211696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:15.245801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:15.272380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:15.296309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:15.307393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:15.371132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:15.511719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:15.563746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:15.571402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:15.577374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:15.586725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:15.622342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:15.631339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:15.656352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:15] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:23.134724 : incription_training_confirmation_mail -Connection unexpectedly closed - ERRORRRR AT Line : 297 +INFO:root:2025-02-26 12:22:23.138719 : AcceptAttendeeInscription - WARNING : Impossible d'envoyer le mail de notification pour mysytraining+apprenant2@gmail.com +INFO:root:2025-02-26 12:22:38.737857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:38.742388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:38.745419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:38.751752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:38] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:38.755181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:38.763177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:38] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:38.771746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:38] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:38] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:38] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:42.006903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:44.730149 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:22:44.734360 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:22:44.740601 : AcceptAttendeeInscription - Impossible de valider l'inscription (1) +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:44] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:46.324457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:46] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:46.840881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:46.846307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:46.849329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:22:46.856317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:49.386628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:22:51.677238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:22:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:23:02.471160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:23:23.956298 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:23:23.962648 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:23:49.617094 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:23:49.621096 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:24:15.475826 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:24:15.479823 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:24:41.139448 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:24:41.143447 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:25:07.327815 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:25:07.330811 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:25:09] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:25:09.920910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:25:09.924496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:25:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:25:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 12:25:26.011094 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 12:25:26.011094 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 12:25:26.011094 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 12:25:26.011094 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 12:25:26.011094 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 12:26:10.035558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:26:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:26:38.588371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:26:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:26:42.276068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:26:42] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:26:42.757958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:26:42.763640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:26:42.768857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:26:42.769841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:26:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:26:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:26:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:26:42] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:26:45.688470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:26:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:26:47.260453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:26:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:27:02.988508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:27:25.719401 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:27:25.722411 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:27:47.153183 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:27:47.157699 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:28:08.623548 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:28:08.626293 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:28:29.978861 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:28:29.984852 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:28:51.350147 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:28:51.352148 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:28:51] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:28:51.417479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:28:51.419818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:28:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:28:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:30:15.037553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:30:15.040884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:30:15.044875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:30:15.049883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:30:15.054882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:30:15.061276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:30:15.064832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:15] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:30:18.460683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:30:18.464086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:30:18.467089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:30:18.471840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:18] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:30:18.475508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:30:18.482385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:30:18.491565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:30:18.495833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:18] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:18] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:18] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:18] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:18] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:18] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:30:18] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.207538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.211861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.215401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.222396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.231400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.239491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.247869 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.259863 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.396196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.408314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.415847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.424864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.438880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.449556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.476282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.489782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.509640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.517172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.524594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.538618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.551051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.571817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.574888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.582416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.596503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.621613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.635954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.638961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.648962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.680139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:36.692803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:36.709826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:36] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:49.680175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:49] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:50.183771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:50.186760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:50] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:54.309941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:54.313945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:54.318941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:54] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:54.323937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:35:54.326939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:54.332445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:54.340088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:54] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:54] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:35:56.879672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:35:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:36:01.190111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:36:01] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:36:01.759752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:36:01.762759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:36:01.765769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:36:01.768769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:36:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:36:01] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:36:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:36:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:37:34.882271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:37:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:37:36.183885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:37:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:37:37.207105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:37:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:12.941537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:38:12.946007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:38:12.951370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:12.957512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:12.965636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:38:12.974010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:38:12.978171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:12.985187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:12] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:12.997599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:12] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:13.004681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:13] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:13.026052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:13] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:13.033652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:16.589417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:38:16.593747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:38:16.600321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:38:16.667338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:38:16.673407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:16.715180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:16] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:16.757101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:19.518878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:23.859484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:24] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:24.437406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:38:24.441412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:38:24.446415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:24.484422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:24] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:31.926403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:38:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:38:51.978465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:39:13.326166 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:39:13.328425 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:39:34.712333 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:39:34.715332 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:39:56.195446 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:39:56.199429 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:40:17.571026 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:40:17.573010 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 12:40:38.956618 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 12:40:38.962671 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:40:39] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:40:39.032427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:40:39.038966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:40:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:40:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:40:49.187591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:40:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:40:57.888798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:40:57.892986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:40:57.898104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:40:57] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:40:57.907939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:40:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:40:57.912933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:40:57.919190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:40:57] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:40:57] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:40:57.929579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:40:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:40:57] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:40:57] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:41:06.503955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:41:06.509285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:41:06.516520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:41:06.525871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:41:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:41:06.537890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:41:06.541888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:41:06.552988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:41:06.561211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:41:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:41:06] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:41:06] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:41:06] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:41:06] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:41:06] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:41:06] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:43:45.581886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:43:45.588349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:43:45.593963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:43:45.598729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:43:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:43:45] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:43:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:43:45] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:51:14.924329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:51:14.932339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:51:14.940698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:51:14.948318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:51:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:51:14] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:51:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:51:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:51:36.946172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:51:36.952668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:51:36.958969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:51:36.966255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:51:36] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:51:36] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:51:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:51:37] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:51:46.934536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:51:46.940708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:51:46.947299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:51:46.955818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:51:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:51:46] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:51:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:51:47] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:52:29.276309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:52:29.282307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:52:29.287330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:52:29.294404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:52:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:52:29] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:52:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:52:29] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:57:40.808081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:57:40.814889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:57:40.822871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:57:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:57:40.833369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:57:40.836869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:57:40.850499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:57:40.863852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:57:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:57:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:57:40.898375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:57:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:57:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:57:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:57:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:57:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:58:37.531756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:58:37.537756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:58:37.542753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:58:37.548760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:58:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:58:37] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:58:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:58:37] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:59:21.926104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:59:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:59:23.847563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:59:23.854008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:59:23.859008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:59:23.866999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:59:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:59:23.879264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:59:23.889269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 12:59:23.902837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:59:23] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-26 12:59:23.914392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:59:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:59:23] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:59:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:59:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:59:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 12:59:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:00:22.310762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:00:22.316757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:00:22] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:00:22.324143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:00:22.329166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:00:22] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:00:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:00:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:02:21.572455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:02:21.578866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:02:21.583373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:02:21.591010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:02:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:02:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:02:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:02:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:02:44.511018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:02:44.531014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:02:44.538087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:02:44.544086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:02:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:02:44] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:02:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:02:44] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.409054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.415258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.421285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.426930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.441730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.446740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.471428 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.485410 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.597851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.602719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.609201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.618455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.621656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.632629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.641145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.645551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.654368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.668235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.677618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.687081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.699107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.705985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.716357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.734499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.748587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.757543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.775039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.782774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.788560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.805435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 13:03:14.815413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-26 13:03:14.829618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 13:03:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 19:27:14.633371 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 19:27:14.633885 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 19:27:14.633885 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 19:27:14.633885 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 19:27:14.633885 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 19:27:42.774782 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 19:27:42.775786 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 19:27:42.775786 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 19:27:42.775786 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 19:27:42.775786 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 19:29:41.855611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:41] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:42.017860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:42.021286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:42.026537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:42.031541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:42.036545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:42.041545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:42.049753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:42.058515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:42.070866 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:42.080821 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:42.142965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:42.150880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:42.158415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:42.166121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:42.188264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:42.197170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:42.220435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:42.225790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:42.234738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:42] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:42.272010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:44.751320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:44.758796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:44.767540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:44.769539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:44.789279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:44.798654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:44.809161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:44.826102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:44.838320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:44.850477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:44.862616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:44.886520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:44.906253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:44.918519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:44.932017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:44.945018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:44.960522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:44.982290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:45.023424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:45] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:45.058021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:45] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:45.099794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:29:45.109790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:45] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:45.156792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:45] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:29:45.228364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:45] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:49] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:49] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:29:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:30:19.853662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:20] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:30:20.310435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:20.314002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:20] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:30:27.454899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:27.458392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:27.461643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:27.467665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:27] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:30:27.471663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:27.476580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:30:27.485717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:27] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:27] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:27] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:30:30.648304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:30:34.651573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:35] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:30:35.306790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:35.310866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:35.315866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:35.320754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:30:42.049748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:30:46.197617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:46.201623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:46.206144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:46.211153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:30:46.217167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:46.224081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:46.229015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:30:46.236305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:46] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:46] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:46] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:46] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:46] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:46] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:30:53.302560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:30:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:31:07.945536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:31:32.467667 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 19:31:32.470903 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-26 19:31:53.978841 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-26 19:31:53.980846 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:31:54] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:31:54.036692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:31:54.040787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:31:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:31:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:32:09.179998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:09.184541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:09.188030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:09.192435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:09.197903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:09] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:32:09.208074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:09.216532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:09.222617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:09] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:09] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:09] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:09] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:09] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:32:18.685703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:18.689716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:18.693841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:18.698838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:18] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:32:18.706848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:18.715849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:18] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:32:18.726849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:18] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:18] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:18] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:32:21.799106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:21.803276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:21.808277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:21.814281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:21.824965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:32:21.834078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:21.845305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:32:21.854943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:32:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:37:56.890033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:37:56.895860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:37:56.901911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:37:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:37:56.908921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:37:56] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:37:57] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:37:57] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:40:15.622697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:40:15.630786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:40:15.636556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:40:15.643586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:40:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:40:15] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:40:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:40:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 19:43:11.922852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:43:11.928357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:43:11.934350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 19:43:11.940352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:43:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:43:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:43:12] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 19:43:12] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 19:46:24.047867 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 19:46:24.049104 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 19:46:24.049104 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 19:46:24.049104 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 19:46:24.049104 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 19:47:15.702380 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 19:47:15.702380 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 19:47:15.702380 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 19:47:15.702380 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 19:47:15.702380 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 19:48:24.661250 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 19:48:24.662251 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 19:48:24.662251 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 19:48:24.662251 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 19:48:24.662251 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 19:49:05.395589 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 19:49:05.395589 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 19:49:05.395589 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 19:49:05.395589 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 19:49:05.395589 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 19:49:45.783834 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 19:49:45.783834 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 19:49:45.783834 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 19:49:45.784835 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 19:49:45.784835 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 19:51:01.361785 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 19:51:01.361785 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 19:51:01.361785 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 19:51:01.361785 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 19:51:01.361785 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 19:59:14.345180 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 19:59:14.346180 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 19:59:14.346180 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 19:59:14.346180 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 19:59:14.346180 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:00:46.635649 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:00:46.635649 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:00:46.635649 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:00:46.635649 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:00:46.635649 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:04:09.632655 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:04:09.632655 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:04:09.633656 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:04:09.633656 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:04:09.633656 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:04:55.699027 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:04:55.700027 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:04:55.700027 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:04:55.700027 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:04:55.700027 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:05:20.510976 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:05:20.510976 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:05:20.510976 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:05:20.510976 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:05:20.510976 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:06:41.028542 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:06:41.028542 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:06:41.028542 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:06:41.028542 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:06:41.028542 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:08:05.567384 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:08:05.567384 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:08:05.567384 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:08:05.567384 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:08:05.567384 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:09:04.781943 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:09:04.781943 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:09:04.781943 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:09:04.781943 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:09:04.781943 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:09:35.021083 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:09:35.021083 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:09:35.021083 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:09:35.021083 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:09:35.021083 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:12:02.640630 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:12:02.641630 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:12:02.641630 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:12:02.641630 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:12:02.641630 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 20:18:31.221478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:18:31.226924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:18:31.233402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:18:31.237392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:18:31.253640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:18:31.263644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:18:31] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:18:31.280291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:18:31] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:18:31.319414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:18:31] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:18:31] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:18:31] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:18:31] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:18:31] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:18:31] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:18:55.619046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:18:55.623615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:18:55.627648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:18:55.631811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:18:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:18:55] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:18:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:18:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:19:08.261276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:19:08.266045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:19:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:19:08.272752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:19:08.275100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:19:08] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:19:08] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:19:08] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:21:33.259988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:33.263704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:33.268937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:33.273219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:33] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:33] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:33] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:33] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:21:55.990336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:55.993994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:55.997019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:56.002023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:56.008536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:21:56.014541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:21:56.019966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:56] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:21:59.948239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:59.951521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:59.955808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:59.961072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:59.966477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:59] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:21:59.974411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:59.977698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:21:59.988216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:59] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:21:59] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:22:00] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:22:00] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:22:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:22:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:22:00] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:22:13.844130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:22:16.038811 : Update_SessionFormation_Doc_Automatic_Setup -'dict' object is not callable - ERRORRRR AT Line : 14053 +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:22:16] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:24:39.704290 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:24:39.705294 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:24:39.705294 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:24:39.705294 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:24:39.705294 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 20:24:39.795853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:24:40.998751 : Update_SessionFormation_Doc_Automatic_Setup -'dict' object is not callable - ERRORRRR AT Line : 14053 +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:24:40] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:25:44.361057 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:25:44.361057 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:25:44.361057 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:25:44.361057 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:25:44.361057 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 20:25:44.407413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:25:45.219774 : Update_SessionFormation_Doc_Automatic_Setup -'dict' object is not callable - ERRORRRR AT Line : 14071 +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:25:45] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:26:26.219726 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:26:26.220729 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:26:26.220729 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:26:26.220729 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:26:26.220729 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 20:26:41.320286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:26:41] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:29:14.961837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:29:14.965842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:29:15] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:29:15] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:29:29.211542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:29:29.214842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:29:29.218492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:29:29.220516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:29:29.227970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:29:29.235947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:29:29.246207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:29:29.254000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:29:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:29:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:29:29] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:29:29] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:29:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:29:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:29:29] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:29:29] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:30:42.129054 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:30:42.129054 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:30:42.129054 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:30:42.129054 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:30:42.129054 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:35:19.404445 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:35:19.405442 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:35:19.405442 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:35:19.405442 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:35:19.405442 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:35:30.091133 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:35:30.091133 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:35:30.091133 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:35:30.091133 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:35:30.091133 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:39:07.372983 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:39:07.373981 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:39:07.373981 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:39:07.373981 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:39:07.373981 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 20:49:04.478402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:49:04.482451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:49:04.485292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:49:04.487707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:49:04.492785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:49:04.496797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:49:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:49:04.512734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:49:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:49:04] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:49:04.542341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:49:04.550250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:49:04] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:49:04.588811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:49:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:49:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:49:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:49:04] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:49:05.478897 : Get_Given_SessionFormation_List_Automatic_Traitement_From -'Collection' object is not callable. If you meant to call the 'find_on' method on a 'Collection' object it is failing because no such method exists. - ERRORRRR AT Line : 14171 +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:49:05] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:49:05.479899 : Get_Given_SessionFormation_List_Automatic_Traitement_From -'Collection' object is not callable. If you meant to call the 'find_on' method on a 'Collection' object it is failing because no such method exists. - ERRORRRR AT Line : 14171 +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:49:05] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:50:12.419565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:50:12.421172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:50:12.425872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:50:12] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:50:12.435707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:50:12.439809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:50:12] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:50:12.473343 : Get_Given_SessionFormation_List_Automatic_Traitement_From -'Collection' object is not callable. If you meant to call the 'find_on' method on a 'Collection' object it is failing because no such method exists. - ERRORRRR AT Line : 14171 +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:50:12] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:50:12] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:50:12] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:51:13.454449 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:51:13.454449 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:51:13.454449 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:51:13.454449 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:51:13.454449 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 20:51:35.326348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:51:35.337338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:51:35.345339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:51:35.347343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:51:35.354354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:51:35.365888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:51:35.373893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:35] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:51:41.941791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:51:41.946198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:51:41.952391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:51:41.961216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:41] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:51:41.970259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:51:41.974690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:51:41.983741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:42] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:51:42.005241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:51:42.022776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:51:42.033660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:42] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:42] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:42] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:42] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:51:42] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 500 - +INFO:root:2025-02-26 20:52:21.270472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:52:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:52:26.946027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:52:26.951179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:52:26.959552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:52:26.965701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:52:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:52:26.977220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:52:26.985564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:52:27.000691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:52:27.010887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:52:27.017076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:52:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:52:27.031929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:52:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:52:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:52:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:52:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:52:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:52:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:52:27] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 500 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:52:27] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:55:58.989777 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:55:58.989777 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:55:58.989777 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:55:58.989777 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:55:58.989777 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 20:56:26.131355 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 20:56:26.131355 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 20:56:26.131355 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 20:56:26.131355 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 20:56:26.131355 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 20:56:37.145850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:56:37.149994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:56:37.153009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:56:37.156427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:56:37.161375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:56:37.168486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:37] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:56:37.175344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:37] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:37] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:37] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:37] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:56:47.451938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:56:47.456942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:56:47.462952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:56:47.470952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:56:47.477942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:56:47.491943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:56:47.505939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 20:56:47.516959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:47] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:56:47.527495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:56:47.546492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:47] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:47] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:56:47] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:57:04.116545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:57:04] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 20:57:04.235150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 20:57:04] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:08:02.068636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:08:02] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:08:02.144543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:08:02] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:10:03.581626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:10:03.584627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:10:03.588629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:10:03.592630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:10:03.596982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:10:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:10:03] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:10:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:10:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:10:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:11:39.231634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:11:39.235687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:11:39.239876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:11:39.245053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:11:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:11:39.251331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:11:39] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:11:39] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:11:39] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:11:39] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:14:18.735770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:14:18.739072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:14:18.742679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:14:18.751425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:14:18] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:14:18.762141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:14:18] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:14:18] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:14:18] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:14:18] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:14:48.338783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:14:48.343610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:14:48.347118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:14:48.350601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:14:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:14:48.357883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:14:48] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:14:48] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:14:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:14:48] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:15:26.902294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:15:26.908133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:15:26.913672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:15:26.917984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:15:26.922731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:26] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:15:36.473673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:15:36.477004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:15:36.480703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:15:36.487366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:15:36.493398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:36] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:36] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:36] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:36] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:36] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:15:47.124942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:15:47.129944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:15:47.135969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:15:47.141567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:15:47.147563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:47] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:15:47] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:18:49.278876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:18:49.284877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:18:49.289874 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:18:49.293877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:18:49.296876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:18:49] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:18:49] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:18:49] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:18:49] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:18:49] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:21:21.394027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:21:21] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:21:21.476664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:21:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 21:22:38.228632 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 21:22:38.228632 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 21:22:38.228632 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 21:22:38.228632 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 21:22:38.228632 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-26 21:23:05.397987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:23:05.400986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:23:05.402978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:23:05.406982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:23:05.411267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:23:05.415413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:23:05.421011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:23:05.426016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:23:05.441632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:23:05.445630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:23:05.450815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:23:05.455097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:23:05.460345 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:23:05.468493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:23:05.473531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:23:05.480556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:23:05.484560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-26 21:23:05.486559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:05] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-26 21:23:07.570780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2025 21:23:07] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-26 21:27:32.453388 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-26 21:27:32.453388 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-26 21:27:32.453388 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-26 21:27:32.453388 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-26 21:27:32.453388 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:00:57.880295 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:00:57.880295 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:00:57.880295 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:00:57.880295 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:00:57.880295 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:01:14.889734 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:01:14.890729 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:01:14.890729 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:01:14.890729 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:01:14.890729 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:03:42.640621 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:03:42.640621 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:03:42.640621 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:03:42.640621 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:03:42.640621 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:10:13.722021 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:10:13.722021 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:10:13.722021 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:10:13.722021 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:10:13.722021 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:10:38.021706 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:10:38.021706 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:10:38.021706 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:10:38.021706 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:10:38.021706 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:12:56.848380 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:12:56.848380 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:12:56.848380 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:12:56.848380 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:12:56.848380 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:14:18.222807 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:14:18.222807 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:14:18.222807 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:14:18.222807 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:14:18.222807 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 12:14:18.272203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:14:18.273205 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 12:14:18.909996 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 12:14:18.913043 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 12:14:18.915042 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:14:18] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:25:11.263440 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:25:11.264447 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:25:11.264447 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:25:11.264447 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:25:11.264447 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 12:25:21.209025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:25:21.209025 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 12:25:21.804902 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 12:25:21.806901 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 12:25:21.808901 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:25:21] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:26:15.363645 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:26:15.363645 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:26:15.363645 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:26:15.363645 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:26:15.363645 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 12:26:24.502348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:26:24.502348 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 12:26:25.118625 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 12:26:25.121618 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 12:26:25.122620 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:26:25] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:27:04.701272 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:27:04.702276 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:27:04.702276 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:27:04.702276 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:27:04.702276 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 12:27:04.740677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:04.740677 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 12:27:05.432824 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 12:27:05.434820 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 12:27:05.436819 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:05] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:53.319012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:53.410372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:53.414915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:53.417910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:53.420014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:53.424529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:53.428542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:53.455824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:53.456826 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:53.461088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:53.473668 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:53.534070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:53.539594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:53.545686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:53.555183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:53.576084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:53.597392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:53.608384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:53.616733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:53.625726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:53.655438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:53] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.006639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:56.013668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.026416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:56.028905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:56.036240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:56.049187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.064198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:56.068724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.099727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:56.105726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:56.110727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.129726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.164342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:56.174300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.195835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:56.207832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.229599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.253134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.301726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.343692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:27:56.353100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.393709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.445866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:27:56.494694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:56] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:27:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:01] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:01] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:28:28.211020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:28:28.215233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:28:28.219334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:28:28.224378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:28:28.228699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:28:28.233719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:28] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:28:28.245665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:28:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:29:06.293841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:29:06.296500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:29:06.299694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:29:06.307898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:29:06.312002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:29:06.321587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:29:06.326840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:06] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:29:06.337140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:06] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:29:06.347192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:29:06.355922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:06] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:06] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:06] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:06] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:06] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:06] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:29:16.623502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:16] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:29:16.685465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:16] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:29:57.652583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:57] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:29:57.699724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:29:57] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:30:13.355928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:30:13] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:30:13.395592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:30:13] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:30:22.786317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:30:22] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:30:22.822469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:30:22] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 12:30:44.548497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:30:44.549498 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 12:30:44.554494 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 12:30:44.557499 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 12:30:44.560497 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 27/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_68342.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  NDA-001254 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Env Dev Part filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société Env Dev Part  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 Env Dev Part 

\nFormation : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/2025 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  1500.0 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 27/02/2025 

\n\n\n\n\n\n\n\n
\n

 

\nPour l\'organisme de formation prenom   nonn \n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_09083.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 27/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_44284.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  NDA-001254 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Env Dev Part filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société Env Dev Part  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 Env Dev Part 

\nFormation : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/2025 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  1500.0 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 27/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation prenom   nonn 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_34164.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 27/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_10118.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  NDA-001254 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Env Dev Part filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société Env Dev Part  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 Env Dev Part 

\nFormation : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/2025 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  1500.0 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 27/02/2025 

\n\n\n\n\n\n\n\n
\n

 

\nPour l\'organisme de formation prenom   nonn \n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_23937.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  prenom nonn 
Contact :   

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation Env Dev Part 

\n


Formation :  Ma Révolution Quantique 

Durée : 120.0   heure (s) 
Lieu de formation :Bertrange 
Dates de formation : 11/03/2025  25/03/2025 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1500.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 27/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
prenom  nonn

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Env Dev Part 
Téléphone : 
Site web : https://colasrail.com/ 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_20357.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  NDA-001254 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Env Dev Part filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société Env Dev Part  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 Env Dev Part 

\nFormation : Ma Révolution Quantique 
Durée : 120.0   heure (s) 
Lieu de formation :   Bertrange 
Dates de formation :  11/03/2025  25/03/2025 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  1500.0 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 27/02/2025 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation prenom   nonn 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_89165.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:31:09] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:32:17.289546 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:32:17.290644 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:32:17.290644 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:32:17.290644 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:32:17.290644 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 12:32:37.761682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 12:32:37.761682 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 12:32:38.435445 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 12:32:38.437596 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 12:32:38.440017 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 12:32:38] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:39:23.084717 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:39:23.084717 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:39:23.084717 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:39:23.084717 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:39:23.084717 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 12:40:11.664345 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 12:40:11.664345 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 12:40:11.664345 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 12:40:11.664345 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 12:40:11.664345 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 14:56:56.416178 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 14:56:56.416178 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 14:56:56.416178 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 14:56:56.416178 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 14:56:56.416178 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 14:57:17.616945 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 14:57:17.617947 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 14:57:17.617947 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 14:57:17.617947 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 14:57:17.617947 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 15:09:08.751117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:09:08] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:09:08.757230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:09:08.777965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:09:08] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:09:08.780982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:09:08] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:09:08] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:09:19.335739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:09:19] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:09:32.226411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:09:32.229418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:09:32] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:09:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:09:41.571965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:09:41] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:09:49.999617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:09:50] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:09:50.293255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:09:50] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:10:28.861199 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:10:28.861199 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:10:28.861199 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:10:28.861199 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:10:28.861199 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:12:11.059556 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:12:11.059556 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:12:11.059556 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:12:11.059556 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:12:11.059556 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:13:22.413772 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:13:22.413772 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:13:22.413772 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:13:22.413772 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:13:22.413772 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:14:37.431249 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:14:37.432247 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:14:37.432247 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:14:37.432247 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:14:37.432247 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 15:14:41.353043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:14:41.353043 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 15:14:42.065758 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 15:14:42.067756 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 15:14:42.070757 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:14:42] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:16:20.486679 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:16:20.486679 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:16:20.486679 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:16:20.486679 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:16:20.486679 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 15:22:32.516725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:32.520226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:32.523506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:32.526760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:32.532021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:32.537826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:32.544907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:32.551231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:32.557124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:32.563723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:32.570991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:32.576950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:32.586379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:32.594061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:32.603186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:32.610010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:32.615865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:32.621164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:32.634074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:32.637074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:32.645515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:32.655772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:32.657868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:32.664194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:32] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:41.385295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:41] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:41.803643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:41.806703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:41] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:50.330587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:50.334849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:50.337237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:50.343039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:22:50.346924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:50.350956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:22:50.357470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:22:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:23:39.889013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:23:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:23:46.189259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:23:46] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:23:46.745260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:23:46.748281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:23:46.751684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:23:46.756462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:23:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:23:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:23:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:23:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:23:53.265597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:23:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:24:04.744224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:24:26.797850 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-27 15:24:26.799853 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-27 15:24:48.164618 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-27 15:24:48.167618 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-27 15:25:09.559152 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-27 15:25:09.561152 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:09] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:09.611543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:25:09.614274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:21.211667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:29.703112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:25:29.706103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:25:29.710332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:25:29.716155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:25:29.720171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:29.724728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:29.733513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:29] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:33.128512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:25:33.131617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:25:33.134634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:33] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:33.140296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:25:33.142328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:25:33.150092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:25:33.158781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:33] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:33.168224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:33] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:33.177930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:25:33.184390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:33] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:33] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:33] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:33] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:33] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:33] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:33] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:45.804901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:45] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:45.850641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:45] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:58.672493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:58] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:25:58.716958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:25:58] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:26:04.147519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:26:04] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:26:04.188780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:26:04] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:26:10.302786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:26:10] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:26:10.342044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:26:10] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:26:17.005435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:26:17] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:26:17.043446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:26:17] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:27:03.645286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:27:03.645286 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 15:27:03.650004 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 15:27:03.652085 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 15:27:03.654085 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:27:03] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:27:33.676608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:27:33] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:27:33.719996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:27:33] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:27:40.576940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:27:40] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:27:40.615578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:27:40] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:27:48.636063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:27:48] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:27:48.676691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:27:48] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:28:34.989507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:28:34.989507 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 15:28:34.994269 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 15:28:34.996333 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 15:28:34.999353 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:28:35] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:28:52.278776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:28:52] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:28:52.322255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:28:52] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:29:01.553357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:29:01.553357 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 15:29:01.557465 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 15:29:01.559485 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 15:29:01.561489 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:29:01] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:31:44.470099 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:31:44.470099 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:31:44.470099 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:31:44.470099 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:31:44.470099 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 15:31:47.381597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:31:47.381597 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 15:31:48.046895 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 15:31:48.049656 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 15:31:48.052256 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-27 15:31:48.062303 : Cron_Session_Convocation_Sending -'partner_recid' - Line : 1435 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:31:48] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:32:43.839503 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:32:43.839503 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:32:43.839503 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:32:43.839503 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:32:43.839503 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 15:32:43.878587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:32:43.878587 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 15:32:44.473323 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 15:32:44.475319 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 15:32:44.477323 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:32:44] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:34:50.960289 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:34:50.961291 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:34:50.961291 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:34:50.961291 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:34:50.961291 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:35:30.647167 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:35:30.647167 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:35:30.647167 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:35:30.647167 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:35:30.647167 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:36:51.839370 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:36:51.839370 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:36:51.839370 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:36:51.839370 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:36:51.839370 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:37:24.450927 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:37:24.450927 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:37:24.450927 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:37:24.450927 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:37:24.450927 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 15:37:29.211584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:37:29.211584 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 15:37:29.887382 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 15:37:29.889378 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 15:37:29.891382 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_95395.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_64915.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_49436.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:37:40] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:37:50.177669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:37:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:37:52.576781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:37:52.580879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:37:52.584555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:37:52.586953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:37:52.590958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:37:52.598260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:37:52.599264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:37:52.606480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:37:52] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:37:52.614732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:37:52.622460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:37:52] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:37:52] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:37:52] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:37:52] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:37:52] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:37:52] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:37:52] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:37:52] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:37:52] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:38:58.685580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:38:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:39:06.742423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:39:28.083933 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-27 15:39:28.086529 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:39:28] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:39:28.142604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:39:28.145640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:39:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:39:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:42:31.161374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:42:31.164596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:42:31.167120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:42:31.171234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:42:31.176423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:42:31.180440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:42:31] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:42:31.190662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:42:31.198269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:42:31.207390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:42:31] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:42:31] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:42:31] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:42:31.216705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:42:31] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:42:31] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:42:31] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:42:31] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:42:31] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:42:31] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:42:49.783010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:42:49.783010 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 15:42:49.787627 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 15:42:49.789963 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 15:42:49.792031 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_65725.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_57322.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_24341.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_99411.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:43:07] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:43:12.930142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:43:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:43:14.738348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:43:14.741657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:43:14.744694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:43:14.749333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:43:14.752496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:43:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:43:14.761841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:43:14.766140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:43:14.773667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:43:14] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:43:14.785705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:43:14.792259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:43:14] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:43:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:43:14] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:43:14] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:43:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:43:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:43:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:43:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:44:15.987587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:44:15] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:44:15.990602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:44:16] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:44:16.005202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:44:16] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:44:16.008202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:44:16] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:44:24.024583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:44:24] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:44:26.714813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:44:26.717805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:44:26] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:44:26] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:44:31.671673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:44:31] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:44:38.995960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:44:39] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-02-27 15:44:39.131442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:44:39] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:45:55.591421 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:45:55.591421 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:45:55.591421 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:45:55.591421 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:45:55.591421 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 15:46:20.586209 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 15:46:20.587213 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 15:46:20.587213 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 15:46:20.587213 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 15:46:20.587213 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 15:46:35.067359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 15:46:35.067359 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 15:46:35.669130 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 15:46:35.671129 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 15:46:35.673546 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_41755.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_56678.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_66242.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_27856.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_33111.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_24644.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_11105.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_99245.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 15:47:03] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:29:07.965787 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:29:07.967242 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:29:07.967242 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:29:07.967242 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:29:07.967242 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:29:22.915239 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:29:22.915239 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:29:22.915239 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:29:22.915239 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:29:22.915239 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:31:49.593386 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:31:49.593386 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:31:49.593386 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:31:49.593386 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:31:49.594397 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:32:08.872507 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:32:08.872507 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:32:08.872507 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:32:08.872507 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:32:08.872507 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:37:58.467746 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:37:58.467746 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:37:58.467746 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:37:58.467746 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:37:58.467746 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 17:38:07.234438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:38:07.234438 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 17:38:07.979987 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 17:38:07.981988 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 17:38:07.984499 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_19534.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_77459.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_72413.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_14062.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_26908.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_60619.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_90232.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_79532.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:38:46] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.778436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:14.781149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:14.785616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:14.790126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.794678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:14.798260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:14.806492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:14.810753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.820181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.825720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.833852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.839735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:14.848808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:14.853975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.862800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.872372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:14.875792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:14.883431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.889426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.894677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.906235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.913366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:14.920536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:14.926736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:19.295883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:19.298885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:19.302962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:19] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:19.308919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:19.310916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:19] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:19.319766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:44:19.323882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:19] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:19] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:44:23.583561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:44:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 17:46:10.970959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:46:10.970959 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 17:46:10.975321 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 17:46:10.977550 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 17:46:10.980560 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_05911.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_26418.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:root:2025-02-27 17:46:40.628397 : Sent_Convocation_Stagiaire_By_Email -Connection unexpectedly closed - Line : 702 +INFO:root:2025-02-27 17:46:40.629395 : WARNING impossible d'envoyer la convocation a l'apprenant : 67c07572fe0d73ce278d6943 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_78101.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_29619.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:47:01.914039 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:47:01.914039 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:47:01.914039 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:47:01.914039 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:47:01.914039 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 17:47:19.478304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 17:47:19.479302 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 17:47:20.106822 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 17:47:20.108807 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 17:47:20.110871 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_67839.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_57083.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_37788.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_25423.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 17:47:20] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:49:33.161494 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:49:33.161494 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:49:33.161494 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:49:33.161494 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:49:33.161494 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:50:10.587388 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:50:10.588390 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:50:10.588390 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:50:10.588390 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:50:10.588390 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:50:32.139891 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:50:32.139891 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:50:32.139891 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:50:32.139891 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:50:32.139891 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:50:47.077949 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:50:47.077949 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:50:47.077949 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:50:47.077949 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:50:47.078942 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:51:22.556179 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:51:22.557419 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:51:22.557419 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:51:22.557419 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:51:22.557419 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:51:39.885040 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:51:39.885040 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:51:39.885040 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:51:39.886046 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:51:39.886046 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:52:28.814699 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:52:28.814699 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:52:28.814699 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:52:28.815705 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:52:28.815705 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:53:24.471821 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:53:24.471821 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:53:24.471821 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:53:24.471821 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:53:24.471821 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 17:53:43.268054 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 17:53:43.269054 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 17:53:43.269054 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 17:53:43.269054 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 17:53:43.269054 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:05:37.927039 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:05:37.927039 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:05:37.927039 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:05:37.927039 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:05:37.927039 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:05:48.228221 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:05:48.228221 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:05:48.228221 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:05:48.228221 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:05:48.228221 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:06:41.060957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:06:41.060957 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:06:41.754574 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:06:41.757898 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:06:41.762101 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_33168.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_46578.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_57988.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_43119.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:06:42] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:07:32.257955 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:07:32.257955 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:07:32.257955 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:07:32.257955 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:07:32.257955 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:09:18.343365 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:09:18.344369 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:09:18.344369 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:09:18.344369 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:09:18.344369 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:09:21.532675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:09:21.532675 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:09:22.178583 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:09:22.180584 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:09:22.183429 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_36633.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_30643.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_60646.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_91292.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:09:23] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:11:24.232877 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:11:24.232877 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:11:24.232877 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:11:24.232877 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:11:24.232877 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:11:24.333032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:11:24.333032 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:11:24.999074 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:11:25.001073 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:11:25.003190 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-27 18:11:25.020342 : Prepare_and_Send_Convocation_From_Session_By_PDF L'identifiant du courrier_template_type_document est invalide +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:11:25] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:13:44.707142 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:13:44.707142 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:13:44.707142 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:13:44.707142 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:13:44.707142 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:15:31.838499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:15:31.838499 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:15:32.465127 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:15:32.467124 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:15:32.469123 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_25685.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_20524.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_06096.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_89094.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:15:32] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:19:38.818149 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:19:38.818149 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:19:38.818149 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:19:38.818149 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:19:38.818149 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:19:59.228235 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:19:59.228235 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:19:59.229237 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:19:59.229237 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:19:59.229237 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:20:03.710274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:20:03.710274 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:20:04.312637 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:20:04.313636 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:20:04.316639 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-27 18:20:04.333541 : Prepare_and_Send_Convocation_From_Session_By_PDF -name 'courrier_template_type_document_data' is not defined - Line : 312 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:20:04] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:21:15.893881 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:21:15.893881 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:21:15.893881 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:21:15.893881 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:21:15.893881 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:21:36.543898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:21:36.543898 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:21:37.171893 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:21:37.174890 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:21:37.176890 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_35514.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_25126.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_10561.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_61034.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:21:38] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:24:37.470601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:24:37.474613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:24:37.477855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:24:37.481156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:24:37.484555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:24:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:24:37.492862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:24:37.498056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:24:37.503053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:24:37.511852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:24:37] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:24:37.519843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:24:37] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:24:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:24:37] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:24:37] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:24:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:24:38] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:24:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:24:38] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:31:34.334112 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:31:34.334112 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:31:34.334112 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:31:34.334112 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:31:34.334112 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:34:35.998721 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:34:35.999723 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:34:35.999723 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:34:35.999723 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:34:35.999723 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:34:36.041349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:34:36.041349 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:34:36.689602 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:34:36.692167 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:34:36.694163 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:34:36] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:36:43.899842 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:36:43.900846 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:36:43.900846 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:36:43.900846 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:36:43.900846 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:37:25.012737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:37:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:37:27.112346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:37:27.115790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:37:27.120281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:37:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:37:27.125774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:37:27.129226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:37:27.135469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:37:27.141544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:37:27.152660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:37:27.158942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:37:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:37:27] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:37:27.169477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:37:27] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:37:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:37:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:37:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:37:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:37:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:37:27] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:38:39.429756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:38:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:38:41.195437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:38:41.198445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:38:41.201754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:38:41.207830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:38:41.210830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:38:41] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:38:41.218357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:38:41.225521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:38:41] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:38:41.232506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:38:41] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:38:41.243122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:38:41] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:38:41.249241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:38:41] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:38:41] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:38:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:38:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:38:41] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:38:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:38:57.033305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:38:57.033305 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:38:57.619817 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:38:57.622100 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:38:57.624203 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_67935.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_60099.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_34655.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_22714.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:38:58] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:39:06.271597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:39:07.668705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:39:07.672606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:39:07.674608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:39:07.679729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:39:07.686815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:39:07.690822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:07] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:39:07.702141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:07] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:39:07.707669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:07] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:39:07.713668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:07] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:39:07.720666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:07] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:07] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:07] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:08] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:39:22.160565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:39:22.160565 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:39:22.165571 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:39:22.168571 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:39:22.171683 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:22] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:39:27.628528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:39:29.063216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:39:29.066217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:39:29.069218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:39:29.074218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:39:29.077221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:39:29.082211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:39:29.092216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:29] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:39:29.101220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:29] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:39:29.111217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:39:29.115279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:29] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:29] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:29] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:29] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:39:29] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:40:12.412335 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:40:12.412335 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:40:12.412335 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:40:12.412335 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:40:12.412335 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:41:23.732481 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:41:23.732481 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:41:23.732481 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:41:23.732481 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:41:23.732481 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:42:15.365826 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:42:15.365826 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:42:15.365826 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:42:15.365826 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:42:15.365826 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:42:39.694863 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:42:39.694863 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:42:39.694863 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:42:39.694863 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:42:39.694863 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:43:22.384468 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:43:22.384468 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:43:22.384468 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:43:22.384468 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:43:22.384468 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:43:48.944886 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:43:48.944886 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:43:48.944886 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:43:48.944886 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:43:48.944886 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:47:27.014669 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:47:27.014669 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:47:27.014669 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:47:27.014669 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:47:27.014669 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:47:37.598937 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:47:37.598937 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:47:37.598937 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:47:37.598937 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:47:37.598937 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:47:45.974619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:47:45.974619 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:47:46.573855 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:47:46.575439 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:47:46.578659 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:47:46] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:48:14.351781 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:48:14.351781 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:48:14.351781 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:48:14.351781 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:48:14.352781 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:48:49.138588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:48:49.138588 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:48:49.815236 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:48:49.817935 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:48:49.820504 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-27 18:48:49.841810 : Prepare_and_Send_Convocation_From_Session_By_Email -string indices must be integers - Line : 189 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:48:49] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:49:19.841718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:49:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:49:21.855519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:49:21.858994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:49:21.862284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:49:21.865749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:49:21.871244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:49:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:49:21.877951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:49:21.884537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:49:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:49:21.894208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:49:21.898942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:49:21.908397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:49:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:49:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:49:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:49:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:49:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:49:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:49:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:49:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:50:29.441486 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:50:29.441486 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:50:29.441486 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:50:29.441486 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:50:29.441486 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:50:30.623550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:50:30.623550 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:50:31.204421 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:50:31.206424 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:50:31.207636 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-27 18:50:31.223061 : Prepare_and_Send_Convocation_From_Session_By_Email -string indices must be integers - Line : 191 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:50:31] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:51:30.092696 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:51:30.093695 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:51:30.093695 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:51:30.093695 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:51:30.093695 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:51:30.135770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:51:30.135770 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:51:30.699969 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:51:30.702510 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:51:30.704565 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:51:30] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:52:03.741795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:52:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:52:05.150429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:52:05.153811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:52:05.156174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:52:05.160986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:52:05.164640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:52:05.166639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:52:05.175301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:52:05] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:52:05.183794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:52:05] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:52:05.196510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:52:05] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:52:05.203962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:52:05] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:52:05] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:52:05] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:52:05] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:52:05] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:52:05] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:52:05] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:53:30.703031 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:53:30.704031 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:53:30.704031 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:53:30.704031 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:53:30.704031 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:54:09.888956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:54:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:54:11.220011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:54:11.224510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:54:11.229317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:54:11.233318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:54:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:54:11.238904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:54:11.245123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:54:11.255762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:54:11.262603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:54:11.267119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:54:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:54:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:54:11.273632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:54:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:54:11] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:54:11] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:54:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:54:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:54:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:54:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:54:44.691869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:54:44.691869 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:54:45.331812 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:54:45.333821 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:54:45.336816 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_41109.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_82965.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_26609.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_92164.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:55:42] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:55:54.198979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:55:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:55:55.356791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:55:55.360486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:55:55.364943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:55:55.369453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:55:55.377492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:55:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:55:55.386917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:55:55.392450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:55:55.395886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:55:55] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:55:55] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-27 18:55:55.407915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:55:55.413142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:55:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:55:55] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:55:55] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:55:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:55:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:55:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:55:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:59:01.750761 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:59:01.750761 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:59:01.751757 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:59:01.751757 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:59:01.751757 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 18:59:14.785400 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 18:59:14.785400 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 18:59:14.785400 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 18:59:14.785400 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 18:59:14.785400 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 18:59:26.630409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 18:59:26.630409 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 18:59:27.313208 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 18:59:27.315262 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 18:59:27.317486 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 18:59:27] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 19:00:14.365263 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 19:00:14.365263 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 19:00:14.365263 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 19:00:14.365263 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 19:00:14.365263 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 19:03:09.743821 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 19:03:09.744803 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 19:03:09.744803 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 19:03:09.744803 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 19:03:09.744803 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 19:03:33.686147 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 19:03:33.686147 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 19:03:33.686147 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 19:03:33.686147 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 19:03:33.686147 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 19:03:34.343797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:03:34.343797 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 19:03:34.973476 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 19:03:34.975474 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 19:03:34.977474 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:root:2025-02-27 19:03:35.029363 : Get_Courrier_Template_Include_Default_Data Il n'y a aucun modèle de document avec la reférence : CONVOCATION_STAGIAIRE de Type : PDF +INFO:root:2025-02-27 19:03:35.032346 : Cron_Session_Convocation_Sending Impossible de récuperer le modèle de courrier 'CONVOCATION_STAGIAIRE', (type : PDF) +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:03:35] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:03:47.016612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:03:47] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:03:47.019751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:03:47] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:03:47.035900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:03:47] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:03:47.038922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:03:47] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:03:56.905373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:03:56] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:03:59.540191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:03:59.543197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:03:59] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:03:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 19:06:04.226369 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 19:06:04.226369 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 19:06:04.226369 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 19:06:04.226369 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 19:06:04.226369 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 19:06:32.497939 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 19:06:32.498937 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 19:06:32.498937 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 19:06:32.498937 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 19:06:32.498937 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 19:06:32.541023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:06:32.542022 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 19:06:33.203755 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 19:06:33.207757 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 19:06:33.209771 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_85128.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_71571.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_56788.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_41827.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:06:33] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.522630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:01.524655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:01.528633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:01.532964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.538525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:01.545335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:01.550865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.557764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.564386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.569018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:01.573422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.582636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:01.586476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:01.592711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.600674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.611914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:01.613909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.624915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.639488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.651348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:01.656683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.664610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.679226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:01.683720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:07.659985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:07.663506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:07.666040 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:07.671722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:07.676513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:07.681712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:07.690379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:07] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:10.686753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:10.689763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:10.694760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:10.700368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:10.706350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:10.713731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:10.716258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:10.723281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:10.733098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:10] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:10.744452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:10] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:07:37.167238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:07:37.167238 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 19:07:37.171402 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 19:07:37.173642 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 19:07:37.176642 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:07:37] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:10:47.297667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:10:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:10:51.582574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:10:51.585700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:10:51.590042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:10:51.594037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:10:51.600187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:10:51.604186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:10:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:10:51.617198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:10:51.624662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:10:51.636142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:10:51] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:10:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:10:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:10:51.646137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:10:51] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:10:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:10:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:10:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:10:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:10:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:10:55.677175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:10:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:11:08.939133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:08] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:11:12.386596 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_41605.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:12] "GET /myclass/api/Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_PDF/FzGDZ5nkUSED603zcjQXOvzHuPxkLhDEyQ/67c075313e5acb8264826e74/6601cbefe3300c89ee4ba12e/67c07572fe0d73ce278d69eb HTTP/1.1" 200 - +INFO:root:2025-02-27 19:11:12.990562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:11:43.992871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:11:43.996393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:11:43.999396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:11:44.004399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:11:44.011397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:11:44.017397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:11:44.022161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:11:44.033657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:44] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:44] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:11:44.048155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:11:44.053678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:44] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:44] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:44] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:11:44] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 19:12:33.910104 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 19:12:33.911107 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 19:12:33.911107 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 19:12:33.911107 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 19:12:33.911107 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 19:12:49.528557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:12:49.528557 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 19:12:50.175700 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 19:12:50.177697 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 19:12:50.179697 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_62686.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_49684.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_37818.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:12:50] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:12:53.280197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:12:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:12:54.468925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:12:54.471929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:12:54.475925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:12:54.479936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:12:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:12:54.484923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:12:54.489931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:12:54.495939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:12:54] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:12:54.507927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:12:54.511932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:12:54.520928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:12:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:12:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:12:54] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:12:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:12:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:12:54] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:12:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:12:54] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 19:17:28.607158 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 19:17:28.608158 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 19:17:28.608158 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 19:17:28.608158 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 19:17:28.608158 : ++ 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:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +DEBUG:httpx:load_ssl_context verify=True cert=None trust_env=True http2=False +DEBUG:httpx:load_verify_locations cafile='C:\\Users\\billa\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\certifi\\cacert.pem' +INFO:root:2025-02-27 19:17:44.683211 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-02-27 19:17:44.683211 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2025-02-27 19:17:44.683211 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2025-02-27 19:17:44.683211 : ++ FLASK PORT 5001 ++ +INFO:root:2025-02-27 19:17:44.683211 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2025-02-27 19:18:56.933513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:18:57.190129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:18:57.194122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:18:57.198121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:18:57.201709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:18:57.208772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:18:57.211767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:18:57.228538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:18:57.238626 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:18:57.243689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:18:57.259332 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:18:57.291288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:18:57.298319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:18:57.301825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:18:57.308809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:18:57.332058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:18:57.337345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:18:57.343655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:18:57.352660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:18:57.366010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:18:57.382209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:18:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:02] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:19:31.349271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:19:31.353998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:19:31.356379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:19:31.362960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:19:31.369507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:19:31.379728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:19:31.387712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:19:31.392135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:19:31.404260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:19:31.412651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:19:31.417028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:19:31.426130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:19:31.443589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:19:31.445772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:19:31.451722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:19:31.457899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:19:31.458899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:19:31.466830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:31] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:19:38.333203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:19:38] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:15.225466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:15] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:15.299403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:15] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:35.054412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:35] "POST /myclass/api/Add_Update_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:35.124181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:35] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.687154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:20:48.691173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:20:48.695166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:20:48.699719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.706842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:20:48.712776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.718463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.726149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.735157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.746234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.753185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:20:48.757547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.766395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.779563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:20:48.787693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.795367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:20:48.802935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:20:48.807105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:20:48.816418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.827050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.834575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.846743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:20:48.852310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:20:48.860728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:20:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:21:00.237088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:00] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:21:00.962161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:00.965907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:00] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:21:13.669341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:13.672423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:13.679649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:13.684935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:13] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:21:13.691271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:21:13.700899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:13.704540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:13] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:13] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:21:19.778572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:19.781569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:19.787263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:19.791767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:19.798671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:19.804812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:19.811473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:19] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:21:19.827898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:19] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:19] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:21:19.844519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:19] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:21:19.857195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:19] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:19] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:20] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:20] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:21:51.005365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:21:56.903485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:57] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:21:57.697251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:57.702258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:57.703742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:21:57.710664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:57] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:21:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:22:05.096047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:22:05.102620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:22:05.106729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:05] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:22:05.112723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:22:05.117754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:22:05.121763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:22:05.130288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:05] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:05] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:05] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:05] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:22:08.803354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:22:08.807966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:22:08.812994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:22:08.821068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:22:08.829644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:22:08.836320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:22:08.843023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:22:08.851498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:08] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:08] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:22:08.864669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:22:08.873617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:08] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:08] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:09] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:09] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:22:13.885739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:22:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:22:28.897648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:22:51.373453 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-27 19:22:51.375449 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-27 19:23:12.744568 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-27 19:23:12.746692 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:root:2025-02-27 19:23:34.122789 : Create_MySy_LMS_Apprenant -Can't connect to server on '192.168.1.21' (10060) - Line : 1891 +INFO:root:2025-02-27 19:23:34.124824 : AcceptAttendeeInscription WARNING : le compte LSM n'a pas été correctement crée +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:34] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:23:34.185522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:23:34.189536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:23:49.509402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:23:54.066978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:23:54.071053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:23:54.075333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:23:54.080416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:54] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:23:54.086405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:23:54.093593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:23:54.102942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:54] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:54] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:23:57.613681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:23:57.618679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:23:57.622666 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:23:57.629363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:23:57.635414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:57] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:23:57.648557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:23:57.654426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:57] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:57] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:23:57.667945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:23:57.672317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:57] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:23:57.683575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:57] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:57] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:57] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:57] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:57] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:23:57] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:24:21.604593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:24:21] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:24:21.673636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:24:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:24:49.774128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:24:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:25:05.672556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:05] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:25:09.951352 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_03151.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:10] "GET /myclass/api/Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_PDF/HFRcOAIAk9ayJ52B5ZVvlbv1xLpQMslpPQ/67c0ad0c24f14ea57b60ed26/6601cbefe3300c89ee4ba12e/67c0ad45fe0d73ce278e4454 HTTP/1.1" 200 - +INFO:root:2025-02-27 19:25:10.688363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:25:17.738161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:25:17.741684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:25:17.746726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:25:17.753780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:17] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:25:17.761778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:25:17.773606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:25:17.776203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:25:17.782935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:25:17.788493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:17] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:17] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:25:17.798867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:17] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:17] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:17] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:18] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:18] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:18] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:25:18] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:26:01.392445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:26:01.392445 : ### CRONNN Cron_Daily_Document_Sending : payload = +INFO:root:2025-02-27 19:26:01.419002 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034b +INFO:root:2025-02-27 19:26:01.422002 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 65b3f19276e1f67db04d034a +INFO:root:2025-02-27 19:26:01.424011 : Cron_Daily_Document_Sending CRON WARNING * Cron_Daily_Document_Sending: Il a un CRON qui ne n'est pas exécuté à la date prévue. Session Formation = 67bf5dbbc143c20c956f1383 Id du CRON courrier_template_type_document_id = 6615475a4da9d4e61b6e8368 +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_97936.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  Env Dev Part   ci-après nommé l\'Organisme de formation
Situé :  
Déclation d\'activité :  NDA-001254  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : prenom nonn 
Contact :   
Téléphone :  
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   Ma Révolution Quantique
Durée :  120.0 heure (s)
Lieu de formation :   Bertrange
Dates de formation :  11/03/2025 25/03/2025
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2025
\n

 

\n

 Env Dev Part 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :  https://colasrail.com/ 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_43598_97871.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:26:01] "GET /myclass/api/Cron_Daily_Document_Sending/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:26:17.236390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:26:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:26:19.219422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:26:19.223228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:26:19.226816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:26:19.231801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:26:19.239789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:26:19] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:26:19.254044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:26:19.260556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:26:19] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:26:19.273443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:26:19] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:26:19.285096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:26:19.294179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:26:19] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:26:19] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:26:19] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:26:19] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:26:19] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:26:19] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:26:19] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:24.415519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:27:24.419623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:27:24.425561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:24.435083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:24.441261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:27:24.446084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:27:24.450588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:24.460998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:27:24.463890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:27:24.467909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:24.477289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:24.487819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:24.497437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:24.502015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:24.509683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:27:24.515958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:24.522559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:24.530076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:24] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:26.382631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:26] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:36.521817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:36] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:27:40.355729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:27:40] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.160772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:10.163949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:10.167577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:10.172650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:10.176859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.180845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.193918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.201577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.208137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:10.211155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.221048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.229256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:10.232248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.249850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.257873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.269903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.275922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.284471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.297676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:10.304700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.311209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.323179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:10.332214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:10.348872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:17.125457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:17.129510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:17.132589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:17.136581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:17] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:17.146799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:17.161501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:17] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:17.166513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:17] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:17] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:20.522092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:20.526090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:20.530005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:20.534643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:20.545206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:20] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:20.552866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:20.559994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:20.568602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:20] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:20] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:20.583468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:20] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:20.599705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:20] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:20] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:20] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:20] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.017362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.020401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.026491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.034085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.039078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.049126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.060668 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.072429 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.239836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.242944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.251007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.260773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.272359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.281915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.292166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.303858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.313366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.317881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.327423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.334500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.345010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.370829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.382418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.397278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.405674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.412047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.438396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.452389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.465626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.475660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:48.496814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:48.512120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:56.543295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:56.546753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:56.550299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:56.556055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:56.564493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:56.573862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:56.582127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:56.587660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:56.597599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:56.602896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:56.611179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:56.621893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:56.628548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:56.634668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:56.640886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:56.646397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:56.651593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-02-27 19:28:56.662472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:56] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-02-27 19:28:58.107549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2025 19:28:58] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - diff --git a/Session_Formation.py b/Session_Formation.py index 4aeee86..9a602e3 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -107,7 +107,6 @@ def Add_Update_SessionFormation(diction): session_id = diction['session_id'] - code_session = "" if ("code_session" in diction.keys()): mydata['code_session'] = diction['code_session'] @@ -521,6 +520,25 @@ def Add_Update_SessionFormation(diction): if (len(str(session_id)) <= 0): # La session n'existe pas, on fait une simple creation + mydata['date_created'] = str(datetime.now()) + + """ + 21/02/2025 + Il faut aller chercher la configuration des envois automatic de document. + Il faut regarder dans la collection - base_document_automatic_setup - + + """ + mydata['automatic_traitement'] = [] + + qry_automatic_setup = {'collection_target':'session_formation', + 'valide':'1', + 'locked':'0', + "actif": "1", + 'partner_owner_recid':str(my_partner['recid'])} + + for base_document_automatic_setup_for_partner in MYSY_GV.dbname['base_document_automatic_setup'].find(qry_automatic_setup): + mydata['automatic_traitement'].append(base_document_automatic_setup_for_partner) + #print(" ### mydata = ", mydata) coll_name = MYSY_GV.dbname['session_formation'] ret_val = coll_name.insert_one(mydata) @@ -783,6 +801,8 @@ def GetSessionFormation(diction): class_external_code = "" class_ispublished = "0" class_lms_class_code = "" + if ("automatic_traitement" not in user.keys() ): + user['automatic_traitement'] = [] if ('myclass' in retval.keys() and len(retval['myclass']) > 0): @@ -5311,7 +5331,7 @@ def Prepare_and_Send_Default_Convention_From_Session_By_Email(tab_files, Folder, if( default_courrier_template_client_count <= 0 ): mycommon.myprint( str(inspect.stack()[0][ - 3]) + " Aucune convention d'entreprise n'est configurée ") + 3]) + " Aucune convention d'entreprise n'est configurée - 1 ") return False, " Aucune convention d'entreprise n'est configurée " if (default_courrier_template_client_count > 1): @@ -5641,7 +5661,7 @@ def Prepare_and_Send_Convention_From_Session_By_PDF(diction): local_diction['courrier_template_id'] = diction['courrier_template_id'] local_diction['client_id'] = str(val) - + print(" ### UUU Client_id = ", str(val)) local_status, local_full_file_name = Create_Convention_By_Client_PDF(local_diction) if( local_status is False): return local_status, local_full_file_name @@ -5833,7 +5853,7 @@ def Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF(diction local_diction['courrier_template_id'] = diction['courrier_template_id'] local_diction['client_id'] = str(val) - + print(" ## ZZZ1 client_id PRRRR = ", str(val)) local_status, local_full_file_name = Create_Convention_By_Client_PDF(local_diction) if( local_status is False): return local_status, local_full_file_name @@ -5841,8 +5861,6 @@ def Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF(diction list_file_name_to_zip.append(str(local_full_file_name)) - - elif (str(is_convention_by_client) == "0"): liste_inscription_no_client = MYSY_GV.dbname['inscription'].find( {"$or": [{'session_id': str(diction['session_id']), @@ -5979,7 +5997,7 @@ def Prepare_and_Send_Default_Convention_From_Session_By_PDF(diction): if (default_courrier_template_client_count <= 0): mycommon.myprint( str(inspect.stack()[0][ - 3]) + " Aucune convention d'entreprise n'est configurée ") + 3]) + " Aucune convention d'entreprise n'est configurée - 2") return False, " Aucune convention d'entreprise n'est configurée " if (default_courrier_template_client_count > 1): @@ -6293,7 +6311,7 @@ def Create_Convention_By_Client_PDF(diction): for val in inscription_data: tab_participant.append(val['_id']) - print(" ### tab_participant = ", tab_participant) + #print(" ### tab_participant 1 = ", tab_participant) # Creation du dictionnaire d'information à utiliser pour la creation du doc convention_dictionnary_data = {} new_diction = {} @@ -6318,6 +6336,8 @@ def Create_Convention_By_Client_PDF(diction): Creation du ficier PDF """ + #print(" ### body = ", body) + contenu_doc_Template = jinja2.Template(str(template_courrier_data['contenu_doc'])) sourceHtml = contenu_doc_Template.render(params=body["params"]) @@ -6619,7 +6639,7 @@ def Prepare_and_Send_Convocation_From_Session_By_PDF(diction): local_diction['courrier_template_id'] = diction['courrier_template_id'] local_diction['inscription_id'] = str(val['_id']) - print(" #### Traitemnt de local_diction bb = ", local_diction) + #print(" #### Traitemnt de local_diction bb = ", local_diction) local_status, local_full_file_name = Create_Convocation_By_Stagiaire_PDF(local_diction) if( local_status is False): return local_status, local_full_file_name @@ -6740,7 +6760,7 @@ def Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_PDF(dictio local_diction['courrier_template_id'] = diction['courrier_template_id'] local_diction['inscription_id'] = str(val['_id']) - print(" #### Traitemnt de local_diction bb = ", local_diction) + #print(" #### Traitemnt de local_diction bb = ", local_diction) local_status, local_full_file_name = Create_Convocation_By_Stagiaire_PDF(local_diction) if( local_status is False): return local_status, local_full_file_name @@ -6809,7 +6829,7 @@ def Create_Convocation_By_Stagiaire_PDF(diction): 'ref_interne': 'CONVOCATION_STAGIAIRE', 'partner_owner_recid':str(my_partner['recid'])} - print(" ##### qry = ", qry) + #print(" ##### qry = ", qry) # 1 - Verifier que le modele de courrier est bien editable par individu template_courrier_data = MYSY_GV.dbname['courrier_template'].find_one({'_id':ObjectId(str(diction['courrier_template_id'])), @@ -7005,7 +7025,7 @@ def Prepare_and_Send_Convocation_From_Session_By_Email(tab_files, Folder, dictio ) - print(" ### la liste des liste_participants = ", liste_participants) + #print(" ### la liste des liste_participants = ", liste_participants) # Sauvegarde des fichiers joints depuis le front @@ -7018,7 +7038,7 @@ def Prepare_and_Send_Convocation_From_Session_By_Email(tab_files, Folder, dictio tab_saved_file_full_path.append(saved_file_full_path) - print(" #### tab_saved_file_full_path = ", tab_saved_file_full_path) + #print(" #### tab_saved_file_full_path = ", tab_saved_file_full_path) # Recupération des données du modèle de document is_convention_by_client = "0" @@ -7040,11 +7060,11 @@ def Prepare_and_Send_Convocation_From_Session_By_Email(tab_files, Folder, dictio } ) - print(" ### LIST liste_inscription: ", liste_inscription) + #print(" ### LIST liste_inscription: ", liste_inscription) for single_inscrit in liste_inscription : - print(" ### convocation traitement de l'inscrit : ",single_inscrit ) + #print(" ### convocation traitement de l'inscrit : ",single_inscrit ) #field_list_obligatoire = [ 'token', 'inscription_id', 'courrier_template_id', 'email_test', 'email_production' ] new_diction_no_client = {} new_diction_no_client['token'] = str(diction['token']) @@ -7055,7 +7075,7 @@ def Prepare_and_Send_Convocation_From_Session_By_Email(tab_files, Folder, dictio new_diction_no_client['email_test'] = diction['email_test'] new_diction_no_client['email_production'] = diction['email_production'] - print(" ##### new_diction_no_client = ", new_diction_no_client) + #print(" ##### new_diction_no_client = ", new_diction_no_client) local_status, local_retval = Sent_Convocation_Stagiaire_By_Email(tab_saved_file_full_path, Folder, new_diction_no_client) if (local_status is False): @@ -7144,7 +7164,7 @@ def Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_Email(tab_ ) - print(" ### la liste des liste_participants = ", liste_participants) + #print(" ### la liste des liste_participants = ", liste_participants) # Sauvegarde des fichiers joints depuis le front @@ -7157,7 +7177,7 @@ def Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_Email(tab_ tab_saved_file_full_path.append(saved_file_full_path) - print(" #### tab_saved_file_full_path = ", tab_saved_file_full_path) + #print(" #### tab_saved_file_full_path = ", tab_saved_file_full_path) # Recupération des données du modèle de document is_convention_by_client = "0" @@ -7180,11 +7200,11 @@ def Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_Email(tab_ } ) - print(" ### LIST liste_inscription: ", liste_inscription) + #print(" ### LIST liste_inscription: ", liste_inscription) for single_inscrit in liste_inscription : - print(" ### convocation traitement de l'inscrit : ",single_inscrit ) + #print(" ### convocation traitement de l'inscrit : ",single_inscrit ) #field_list_obligatoire = [ 'token', 'inscription_id', 'courrier_template_id', 'email_test', 'email_production' ] new_diction_no_client = {} new_diction_no_client['token'] = str(diction['token']) @@ -7195,7 +7215,7 @@ def Prepare_and_Send_Convocation_From_Session_For_Selected_Inscrit_By_Email(tab_ new_diction_no_client['email_test'] = diction['email_test'] new_diction_no_client['email_production'] = diction['email_production'] - print(" ##### new_diction_no_client = ", new_diction_no_client) + #print(" ##### new_diction_no_client = ", new_diction_no_client) local_status, local_retval = Sent_Convocation_Stagiaire_By_Email(tab_saved_file_full_path, Folder, new_diction_no_client) if (local_status is False): @@ -7411,11 +7431,11 @@ def Sent_Convocation_Stagiaire_By_Email(tab_files, Folder, diction): stagiaire_client_id = str(inscription_data['client_rattachement_id']) local_diction = {"token":str(diction['token']), "_id":stagiaire_client_id } - print(" ##### local_diction pr Get_Partner_Client_Communication_Contact= ", local_diction) + #print(" ##### local_diction pr Get_Partner_Client_Communication_Contact= ", local_diction) local_status, partner_client_contact_communication = partner_client.Get_Partner_Client_Communication_Contact(local_diction) if (local_status is True): - print(" ### partner_client_contact_communication = ", partner_client_contact_communication) + #print(" ### partner_client_contact_communication = ", partner_client_contact_communication) tab_local_email_production = [] for tmp in partner_client_contact_communication: tmp_JSON = ast.literal_eval(tmp) @@ -7780,7 +7800,7 @@ def Prepare_and_Send_Attestation_From_Session_By_Email(tab_files, Folder, dictio new_diction_no_client['email_test'] = diction['email_test'] new_diction_no_client['email_production'] = diction['email_production'] - print(" ##### new_diction_no_client = ", new_diction_no_client) + #print(" ##### new_diction_no_client = ", new_diction_no_client) tab_saved_file_full_path = [] local_status, local_retval = Sent_Attestation_Stagiaire_By_Email(tab_saved_file_full_path, Folder, new_diction_no_client) @@ -9176,7 +9196,7 @@ def Invoice_Partner_From_Session( diction): tab_apprenant.append(ObjectId(str(val['apprenant_id']))) - print(" ### tab_participant = ", tab_participant) + print(" ### tab_participant 2 = ", tab_participant) # Recuperations des info de la session de formation session_data = MYSY_GV.dbname['session_formation'].find_one({'_id': ObjectId(str(diction['session_id']))}) @@ -9673,7 +9693,7 @@ def Sent_Facture_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_path, tab_apprenant.append(ObjectId(str(val['apprenant_id']))) - print(" ### tab_participant = ", tab_participant) + print(" ### tab_participant 3 = ", tab_participant) # Recuperations des info de la session de formation session_data = MYSY_GV.dbname['session_formation'].find_one({'_id': ObjectId(str(diction['session_id']))}) @@ -13931,3 +13951,230 @@ def Add_SessionFormation_From_Quotation_Line(diction): exc_type, exc_obj, exc_tb = sys.exc_info() mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) return False, "Impossible de créer la session de formation" + + +""" +Cette fonction permet de mettre à jour le paramettrage +d'envoie automatique des documents d'une session de formation. +Par exemple : +- Envoyer les convention X avant le début de la session de formation +""" +def Update_SessionFormation_Doc_Automatic_Setup(diction): + try: + + ''' + # Verification que les champs reçus dans l'API sont bien dans la liste des champs autorisés + # Cela evite le cas ou une entité tierce ajouter les valeurs inconnu dans l'API + # Ici on doit mettre tous les champs possible (obligatoire ou non) de la BDD dans la liste + # field_list. + ''' + field_list = ['token', '_id', 'nb_jour_action', 'actif', 'courrier_template_type_document_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, " Toutes les informations fournies ne sont pas valables" + + """ + Verification de la liste des champs obligatoires + """ + field_list_obligatoire = ['token', '_id', 'nb_jour_action', 'actif', 'courrier_template_type_document_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 liste ") + return False, "Toutes les informations necessaires n'ont pas été fournies" + + mydata = {} + query_key = {} + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_token = diction['token'] + + nb_jour_action = diction['nb_jour_action'] + local_status, local_retval = mycommon.IsInt(str(nb_jour_action)) + if (local_status is False): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " Le nombre de jours est invalide ") + return False, " Le nombre de jours est invalide " + + actif = diction['actif'] + if (actif not in ['0', '1']): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " Le status (actif/inactif) est invalide ") + return False, " Le status (actif/inactif) est invalide " + + data_for_check_connexion = {'token': my_token} + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(data_for_check_connexion) + if (local_status is not True): + return local_status, my_partner + + + """ + Verifier la valididé de la session de formation + """ + is_valide_session = MYSY_GV.dbname['session_formation'].count_documents({'_id':ObjectId(str(diction['_id'])), + 'valide':'1', 'partner_owner_recid':str(my_partner['recid'])}) + + if( is_valide_session != 1 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - L'identifiant de la session de formation est invalide ") + return False, "L'identifiant de la session de formation est invalide" + + + is_valide_session_data = MYSY_GV.dbname['session_formation'].find_one({'_id': ObjectId(str(diction['_id'])), + 'valide': '1', + 'partner_owner_recid': str( + my_partner['recid'])}) + + if( "invoiced_statut" in is_valide_session_data.keys() and is_valide_session_data['invoiced_statut'] == '1'): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - Cette session est partiellement facturée. Modification impossible ") + return False, "Cette session est partiellement facturée. Modification impossible" + + if ("invoiced_statut" in is_valide_session_data.keys() and is_valide_session_data['invoiced_statut'] == '2'): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Cette session est complètement facturée. Modification impossible ") + return False, "Cette session est complètement facturée. Modification impossible" + + + """ + Verifier la validité du type de document 'courrier_template_type_document_id' + """ + + is_courrier_template_type_document_id_valide = MYSY_GV.dbname['courrier_template_type_document'].count_documents( + {'_id':ObjectId(str(diction['courrier_template_type_document_id'])), + 'valide':'1', + 'locked':'0'}) + + if( is_courrier_template_type_document_id_valide != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Le type de modèle de courrier est invalide ") + return False, " Le type de modèle de courrier est invalide " + + is_courrier_template_type_document_data = MYSY_GV.dbname[ + 'courrier_template_type_document'].find_one( + {'_id': ObjectId(str(diction['courrier_template_type_document_id'])), + 'valide': '1', + 'locked': '0'}) + + + update = MYSY_GV.dbname['session_formation'].update_one({'_id': ObjectId(str(diction['_id'])), + 'valide': '1', + 'partner_owner_recid': str(my_partner['recid']), + 'automatic_traitement.courrier_template_type_document_id': str(diction['courrier_template_type_document_id'])}, + {'$set': + { + 'automatic_traitement.$[xxx].actif': str(actif), + 'automatic_traitement.$[xxx].nb_jour_action': str(nb_jour_action), + 'automatic_traitement.$[xxx].date_update': str(datetime.now()), + 'automatic_traitement.$[xxx].update_by': str(my_partner['_id']), + } + }, + upsert=False, + array_filters=[ + {"xxx.courrier_template_type_document_id": str(diction['courrier_template_type_document_id'])} + ] + ) + + + + """ + # Ajout de l'evenement dans l'historique + """ + + + now = str(datetime.now().strftime("%d/%m/%Y %H:%M:%S")) + history_event_dict = {} + history_event_dict['token'] = diction['token'] + history_event_dict['related_collection'] = "session_formation" + history_event_dict['related_collection_recid'] = str(diction['_id']) + history_event_dict['action_date'] = str(now) + history_event_dict['action_description'] = "Modif. automatisation d'envoi des documents. " \ + " Type Doc "+str(is_courrier_template_type_document_data['nom'])+". " \ + " Nouveau : actif = "+str(actif)+" - nb_jour_action = "+str(nb_jour_action) + + + 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, " La session de formation à bien été mise à jour" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) + return False, "Impossible mettre à jour la session de formation" + + + +""" +Recuperation la list des : "automatic_traitement" + d'une session de formation + """ +def Get_Given_SessionFormation_List_Automatic_Traitement_From(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, "de récupérer la liste des stagiaires . 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 liste ") + return False, "Impossible de récupérer la liste des stagiaires, 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({'token':str(diction['token'])}) + if (local_status is not True): + return local_status, my_partner + + partner_recid = my_partner['recid'] + + session_id = "" + if ("session_id" in diction.keys()): + if diction['session_id']: + session_id = diction['session_id'] + + if(str(session_id).strip() == ""): + return True, [] + + coll_session = MYSY_GV.dbname['session_formation'] + RetObject = [] + + local_session_data = coll_session.find_one({'_id':ObjectId(str(session_id)), 'partner_owner_recid':str(partner_recid)}, {'automatic_traitement':1}) + if( local_session_data and "automatic_traitement" in local_session_data.keys() ): + RetObject.append(mycommon.JSONEncoder().encode(local_session_data['automatic_traitement'])) + + 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) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) + return False, "Impossible de récupérer la session de formation" diff --git a/email_inscription_mgt.py b/email_inscription_mgt.py index 88d030f..76cc523 100644 --- a/email_inscription_mgt.py +++ b/email_inscription_mgt.py @@ -793,7 +793,7 @@ def incription_training_cancelled_mail(diction): 'valide': '1', 'locked': '0', 'ref_interne': 'ANNULE_INSCRIPTION'} - print(" ### partner_document_PRE_INSCRIPTION_data_qry = ", partner_document_ANNULE_INSCRIPTION_data_qry) + print(" ### partner_document_PRE_INSCRIPTION_data_qry (cancellation) = ", partner_document_ANNULE_INSCRIPTION_data_qry) partner_document_ANNULE_INSCRIPTION_data = MYSY_GV.dbname['courrier_template'].find_one( {'partner_owner_recid': str(diction['partner_owner_recid']), 'valide': '1', 'locked': '0', 'ref_interne': 'ANNULE_INSCRIPTION'}) @@ -905,7 +905,7 @@ def incription_training_cancelled_mail(diction): smtpserver.login(MYSY_GV.O365_SMTP_COUNT_user, MYSY_GV.O365_SMTP_COUNT_password) val = smtpserver.send_message(msg) smtpserver.close() - print(" Email confirlation envoyé " + str(val)) + print(" Email confirlation (cancellation) envoyé " + str(val)) return True, " Email d'annulation de l'inscritpion bien envoyé" diff --git a/main.py b/main.py index f1a42ad..5958b2c 100644 --- a/main.py +++ b/main.py @@ -2233,6 +2233,32 @@ def Update_SessionFormation_Only_Step(): return jsonify(status=localStatus, message=message ) +""" +API de mise à jour du parametrage d'automatisation d'envoi des documents +/!\ : Une session est modifiable tanque la facturation n'a pas demarré. Apres tous est bloqué +""" +@app.route('/myclass/api/Update_SessionFormation_Doc_Automatic_Setup/', methods=['POST','GET']) +@crossdomain(origin='*') +def Update_SessionFormation_Doc_Automatic_Setup(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Update_SessionFormation_Doc_Automatic_Setup : payload = ",str(payload)) + localStatus, message= SF.Update_SessionFormation_Doc_Automatic_Setup(payload) + return jsonify(status=localStatus, message=message ) + + +""" +API qui permet de recuperer la liste des '' d'une session de formation +en partant de l'_id de la session +""" +@app.route('/myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Given_SessionFormation_List_Automatic_Traitement_From(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Given_SessionFormation_List_Automatic_Traitement_From : payload = ",str(payload)) + localStatus, message= SF.Get_Given_SessionFormation_List_Automatic_Traitement_From(payload) + return jsonify(status=localStatus, message=message ) @@ -11937,7 +11963,17 @@ def Get_Given_base_document_automatic_setup(): localStatus, message= base_document_automatic_setup.Get_Given_base_document_automatic_setup(payload) return jsonify(status=localStatus, message=message ) - +""" +API de test du cron qui va traiter automatiquement les documents à envoyer +""" +@app.route('/myclass/api/Cron_Daily_Document_Sending/', methods=['POST', 'GET']) +@crossdomain(origin='*') +def Cron_Daily_Document_Sending(): + mycommon.myprint(" ### CRONNN Cron_Daily_Document_Sending : payload = ") + print(" ### CRONNN Cron_Daily_Document_Sending : payload = ") + status, retval = Job_Cron.Cron_Daily_Document_Sending() + print(" FIN traitement Cron_Daily_Document_Sending localStatus = ") + return jsonify(status=status, message="OK" ) if __name__ == '__main__': diff --git a/module_editique.py b/module_editique.py index e1651a2..da08c8b 100644 --- a/module_editique.py +++ b/module_editique.py @@ -199,9 +199,6 @@ def Get_Editable_Document_By_Partner_By_Collection(diction): return local_status, my_partner - - - RetObject = [] val_tmp = 0 @@ -242,7 +239,7 @@ def Get_Editable_Document_By_Partner_By_Collection(diction): ]) #print(" #### Get_Editable_Document_By_Partner_By_Collection pipe_qry_Get_Editable_Document_By_Partner = ", pipe_qry) - json_formatted_str = json.dumps(pipe_qry, indent=2) + #json_formatted_str = json.dumps(pipe_qry, indent=2) #print(" #### Get_Editable_Document_By_Partner_By_Collection pipe_qry_Get_Editable_Document_By_Partner = ", json_formatted_str) @@ -431,8 +428,6 @@ def Get_Editable_Document_By_Partner_By_Collection(diction): RetObject.append(mycommon.JSONEncoder().encode(user)) - - #print(" #### rrrr RetObject = ", RetObject) return True, RetObject diff --git a/partners.py b/partners.py index 6ea1fde..d868d82 100644 --- a/partners.py +++ b/partners.py @@ -934,6 +934,7 @@ La modification ne s'effectue que si le compte n'est pas verrouillé. /!\ : Juste apres la validation, le compte de payement est créé dans Stripe +cette fontion initialise / initialisation des paramettre par defaut de chaque partenaire ''' def valide_partnair_account(value): try: diff --git a/prj_common.py b/prj_common.py index ff08289..8afcf50 100644 --- a/prj_common.py +++ b/prj_common.py @@ -5239,6 +5239,7 @@ def Get_Partner_Currency(partner_owner_recid): """ 12/03/2024 : +** initialiser / initialisation / ** Cette fonction permette d'initialiser les configuration par defaut d'un nouveau partenaire de MySy. C'est une fonction qui doit etre utilisé à l'activation du compte partenaire. Cela ne l'empechera pas de @@ -5280,6 +5281,8 @@ Mais ca permet d'envoir un systeme pleinement operationnel des l'activation du c -> 0JF -> 30JF -> 15JFDM + + - initialiser aussi les document envoyé automatiquement (en mode no automatic, pour que le client l'active lui meme) """ def Configure_Partner_Init_Setup_No_Token(diction): try: @@ -5355,6 +5358,7 @@ def Configure_Partner_Init_Setup_No_Token(diction): myprint(" #### FIN CONFIGURATION DE "+str(cpt)+" DOCUMENT(S) ") + """ 2 - Configuration du modele de journée de travail """ @@ -5503,6 +5507,28 @@ def Configure_Partner_Init_Setup_No_Token(diction): myprint(" #### FIN CONFIGURATION DE " + str(cpt) + " SITE DE FORMATION ") + """ + 7 - Creation du paramettrage pour l'automatisation de l'envoi de certains courrier + (ex : activer et decider d'envoyer les convention X jour avant le début de la session + """ + cpt = 0 + for my_courrier_data in MYSY_GV.dbname['base_document_automatic_setup'].find( + { + 'partner_owner_recid': 'default', 'valide': '1', + 'locked': '0'}, ): + new_courrier_for_automation = my_courrier_data + new_courrier_for_automation['date_created'] = str(datetime.now()) + new_courrier_for_automation['update_by'] = str(my_partner_data['_id']) + new_courrier_for_automation['partner_owner_recid'] = str(my_partner_data['recid']) + + if ("_id" in new_courrier_for_automation.keys()): + del new_courrier_for_automation['_id'] + + MYSY_GV.dbname['base_document_automatic_setup'].insert_one(new_courrier) + cpt = cpt + 1 + + myprint(" #### FIN CONFIGURATION DE " + str(cpt) + " AUTOMATISATION DOCUMENT(S) ") + return True, "La configuration fonctionnelle a été correctement faite" @@ -5585,6 +5611,156 @@ def Is_Partnair_Has_Digital_Signature(diction): return False, " Impossible de verifier si le partenaire dispose de la signature digitale " +""" +Cette fonction verifie si le paramettre de notification automatique des inscriptions +est actif pour ce partenaire +""" +def Is_Partnair_Inscription_Notification(diction): + try: + diction = 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: + 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: + myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + 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 = Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['partner_owner_recid'] = str(my_partner['recid']) + data_cle['config_name'] = "inscription_notification_email" + data_cle['locked'] = "0" + data_cle['valide'] = "1" + + RetObject = [] + val_tmp = 1 + + retval_value = "" + for retval in MYSY_GV.dbname['base_partner_setup'].find(data_cle): + user = retval + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + + RetObject.append(JSONEncoder().encode(user)) + + if ("config_value" in retval.keys()): + retval_value = retval['config_value'] + + return True, str(retval_value) + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de verifier si le partenaire dispose de la signature digitale " + + + +""" +Cette fonction verifie si le paramettre de notification automatique des inscriptions +est actif pour ce partenaire +""" +def Is_Partnair_Prenscription_Notification(diction): + try: + diction = 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: + 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: + myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + 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 = Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['partner_owner_recid'] = str(my_partner['recid']) + data_cle['config_name'] = "preinscription_notification_email" + data_cle['locked'] = "0" + data_cle['valide'] = "1" + + RetObject = [] + val_tmp = 1 + + retval_value = "0" + + for retval in MYSY_GV.dbname['base_partner_setup'].find(data_cle): + user = retval + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + + if( "config_value" in retval.keys()): + retval_value = retval['config_value'] + + RetObject.append(JSONEncoder().encode(user)) + + return True, str(retval_value) + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de verifier si le partenaire dispose de la signature digitale " """ Recuperation des differents niveaux de compétence @@ -5627,6 +5803,7 @@ def Get_Partner_SMTP_Param(partner_recid): + partner_own_smtp = MYSY_GV.dbname['base_partner_setup'].find_one( {'partner_owner_recid': str(partner_recid), 'config_name': 'partner_smtp', @@ -6347,7 +6524,7 @@ def Get_Courrier_Template_Include_Default_Data(diction): """ Verification des input acceptés """ - field_list = ['partner_owner_recid', 'ref_interne', 'type_doc'] + field_list = ['partner_owner_recid', 'ref_interne', 'type_doc', 'default'] incom_keys = diction.keys() for val in incom_keys: @@ -6366,34 +6543,47 @@ def Get_Courrier_Template_Include_Default_Data(diction): str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") return False, " Les informations fournies sont incorrectes" - courrier_template_data_count = MYSY_GV.dbname['courrier_template'].count_documents({'partner_owner_recid':diction['partner_owner_recid'], + Qry_courrier_template = {'partner_owner_recid':diction['partner_owner_recid'], 'valide':'1', 'locked':'0', 'type_doc':str(diction['type_doc']), - 'ref_interne':str(diction['ref_interne'])}) + 'ref_interne':str(diction['ref_interne'])} + + if( "default_version" in diction.keys() and diction['default_version'] == "1"): + Qry_courrier_template = {'partner_owner_recid': diction['partner_owner_recid'], + 'valide': '1', + 'locked': '0', + 'type_doc': str(diction['type_doc']).lower(), + 'ref_interne': str(diction['ref_interne']), + 'default_version':'1'} + + + courrier_template_data_count = MYSY_GV.dbname['courrier_template'].count_documents(Qry_courrier_template) + if( courrier_template_data_count > 0 ): - courrier_template_data_data = MYSY_GV.dbname['courrier_template'].find_one({'partner_owner_recid':diction['partner_owner_recid'], - 'valide':'1', - 'locked':'0', - 'type_doc':str(diction['type_doc']), - 'ref_interne':str(diction['ref_interne'])}) + courrier_template_data_data = MYSY_GV.dbname['courrier_template'].find_one(Qry_courrier_template) return True, courrier_template_data_data else: - courrier_template_data_count = MYSY_GV.dbname['courrier_template'].count_documents( - {'partner_owner_recid': 'default', + + Qry_courrier_template = {'partner_owner_recid': 'default', 'valide': '1', 'locked': '0', 'type_doc': str(diction['type_doc']), - 'ref_interne': str(diction['ref_interne'])}) + 'ref_interne': str(diction['ref_interne'])} + + if ("default_version" in diction.keys() and diction['default_version'] == "1"): + Qry_courrier_template = {'partner_owner_recid': 'default', + 'valide': '1', + 'locked': '0', + 'type_doc': str(diction['type_doc']), + 'ref_interne': str(diction['ref_interne']), + 'default_version': '1'} + + courrier_template_data_count = MYSY_GV.dbname['courrier_template'].count_documents(Qry_courrier_template) if (courrier_template_data_count > 0): - courrier_template_data_data = MYSY_GV.dbname['courrier_template'].find_one( - {'partner_owner_recid': 'default', - 'valide': '1', - 'locked': '0', - 'type_doc': str(diction['type_doc']), - 'ref_interne': str(diction['ref_interne'])}) + courrier_template_data_data = MYSY_GV.dbname['courrier_template'].find_one(Qry_courrier_template) return True, courrier_template_data_data else: