From 2add31c414633819ad80145b7025b6853c286947 Mon Sep 17 00:00:00 2001 From: cherif Date: Sun, 20 Aug 2023 23:57:00 +0200 Subject: [PATCH] 20/08/23 - 23h30 --- .idea/workspace.xml | 25 +- Inscription_mgt.py | 262 ++-- Log/log_file.log | 3509 ++++++++++++++++++++++++++++++++++++++++++ Session_Formation.py | 71 +- prj_common.py | 15 +- 5 files changed, 3764 insertions(+), 118 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index b7feb3e..65ecd42 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,12 +1,11 @@ - + - @@ -71,13 +70,6 @@ @@ -429,7 +428,6 @@ - @@ -454,6 +452,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 318afaf..4ac0162 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -78,7 +78,7 @@ def AddStagiairetoClass(diction): mydata['session_id'] = str(diction['session_id']).strip() session_id = str(diction['session_id']).strip() - """ + mytoken = "" if ("token" in diction.keys()): if diction['token']: @@ -89,8 +89,8 @@ def AddStagiairetoClass(diction): if (partner_recid is False): mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de recuperer les données du partenaire ") return False, "Impossible de recuperer les données du partenaire " - """ + mydata['partner_owner_recid'] = str(partner_recid) """ Recuperation des info de la session de formation """ @@ -105,10 +105,7 @@ def AddStagiairetoClass(diction): """ new_price = "-1" # 0 ==> par defaut - for tmp_val in MYSY_GV.dbname['session_formation'].find({"code_session":str(session_id), - 'class_internal_url': str( - diction['class_internal_url']), 'valide':'1' - }): + for tmp_val in MYSY_GV.dbname['session_formation'].find({"_id":ObjectId(str(session_id)), 'valide':'1' }): mydata['date_du'] = tmp_val['date_debut'] mydata['date_au'] = tmp_val['date_fin'] @@ -219,8 +216,8 @@ def AddStagiairetoClass(diction): ## Verification si cette adresse n'est pas deja inscrite à cette session # print(" myquery pr demo_account = " + str(myquery)) tmp = coll_inscription.count_documents({'email':str(mydata['email']), - 'session_id':str( mydata['session_id']), - 'class_internal_url':str(mydata['class_internal_url'])}) + 'session_id':ObjectId(str( mydata['session_id'])), + }) if( tmp > 0 ) : mycommon.myprint( @@ -230,9 +227,25 @@ def AddStagiairetoClass(diction): return False, "Impossible de créer le stagiaire. l'adresse email "+str(mydata['email'])\ +" est deja inscrite à cette session de formation " - ret_val = coll_inscription.insert_one(mydata) - inserted_id = ret_val.inserted_id + """ + Un email ne pouvant s'inscrire qu'a une seule session_id; on fait un usert + """ + + ret_val = MYSY_GV.dbname['inscription'].find_one_and_update( + {'session_id': str(mydata['session_id']), 'email': str(mydata['email']),}, + {"$set": mydata}, + return_document=ReturnDocument.AFTER, + upsert=True, + ) + + if (ret_val is None): + mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible d'ajouter la participant ") + return False, " Impossible d'ajouter la participant " + + #ret_val = coll_inscription.insert_one(mydata) + + inserted_id = ret_val['_id'] if( inserted_id ): # Le stagaire a bien ete inseré, on declenche l'envoi des emaisl print(" ### l'inscription est ok, il faut declenché l'envoi des email") @@ -420,6 +433,31 @@ def UpdateStagiairetoClass(diction): if ("client_rattachement_id" in diction.keys()): mydata['client_rattachement_id'] = str(diction['client_rattachement_id']).strip() + # ici recup des infos de la session + local_query = {'_id': ObjectId(str(mysession_id)), 'valide': '1'} + print("### local_query = " + str(local_query)) + + local_tmp_session_count = MYSY_GV.dbname['session_formation'].count_documents(local_query) + if (local_tmp_session_count <= 0): + mycommon.myprint(str(inspect.stack()[0][3]) + " - Aucune session de formation pour " + str(local_query)) + return False, "Impossible de mettre à jour le stagiaire, Cette session de formation n'est pas valide " + + if (local_tmp_session_count > 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - Plusieurs session existent pour ce code sessions " + str( + local_query)) + return False, "Impossible de mettre à jour le stagiaire, Cette session de formation n'est pas valide (2) " + + local_tmp_session_data = MYSY_GV.dbname['session_formation'].find_one(local_query) + + """ + update de 20/08/23 : + Vu qu'on autorise maintenant le changement de session, alors pour parer à une eventellement changement de sessio + pour une affectation a une session appartenant à une autre formation, + on va ecraser le 'class_internal_url' de la collection 'inscription' avec celui de la collection 'session_formation' + + """ + mydata['class_internal_url'] = str(local_tmp_session_data['class_internal_url']).strip() """ Pour gerer la date de validation, differemment d'une simple mise à jour, @@ -487,20 +525,8 @@ def UpdateStagiairetoClass(diction): lms_class_code = local_tmp_myclass['lms_class_code'] - # ici recup des infos de la session - local_query = {'code_session':str(mysession_id), 'class_internal_url':str(diction['class_internal_url']).strip(), 'valide':'1'} - print("### local_query = "+str(local_query)) - local_tmp_session_count = MYSY_GV.dbname['session_formation'].count_documents(local_query) - if( local_tmp_session_count <= 0 ): - mycommon.myprint(str(inspect.stack()[0][3]) + " - Aucune session de formation pour "+str(local_query)) - return False, "Impossible de mettre à jour le stagiaire, Cette session de formation n'est pas valide " - - if (local_tmp_session_count > 1): - mycommon.myprint(str(inspect.stack()[0][3]) + " - Plusieurs session existent pour ce code sessions " + str(local_query)) - return False, "Impossible de mettre à jour le stagiaire, Cette session de formation n'est pas valide (2) " - if ( diction['status'] == "1" ): @@ -1460,7 +1486,7 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): # Ici on doit mettre tous les champs possible (obligatoire ou non) de la BDD dans la liste # field_list. ''' - field_list = ['token','session_id', 'class_internal_url'] + field_list = ['token', 'code_session', 'class_internal_url'] incom_keys = diction.keys() for val in incom_keys: if val not in field_list: @@ -1471,7 +1497,7 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): Une fois qu'on a controlé que toutes les clés mise dans l'API sont correcte. etape precedente, On controle que les champs obligatoires sont presents dans la liste ''' - field_list_obligatoire = ['token', 'session_id', 'class_internal_url'] + field_list_obligatoire = ['token', 'code_session', 'class_internal_url'] for val in field_list_obligatoire: if val not in diction: @@ -1483,16 +1509,23 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): if diction['token']: my_token = diction['token'] + partner_recid = mycommon.get_parnter_recid_from_token(my_token) + if (partner_recid is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - partner_recid KO : Impossible d'importer la liste des participants ") + return False, " Les information de connexion sont incorrectes. Impossible d'importer la liste des participants" + # Verifier la validité du token retval = mycommon.check_partner_token_validity("", my_token) if retval is False: return "Err_Connexion", " La session de connexion n'est pas valide" - session_id = "" - if ("session_id" in diction.keys()): - if diction['session_id']: - session_id = diction['session_id'] + + code_session = "" + if ("code_session" in diction.keys()): + if diction['code_session']: + code_session = diction['code_session'] class_internal_url = "" if ("class_internal_url" in diction.keys()): @@ -1501,7 +1534,8 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): # Verification de l'existance de la formation (class_internal_url) - tmp_count = MYSY_GV.dbname['myclass'].count_documents({'internal_url': str(class_internal_url), 'valide': '1', 'locked':'0'}) + tmp_count = MYSY_GV.dbname['myclass'].count_documents({'internal_url': str(class_internal_url), 'valide': '1', + 'locked':'0', 'partner_owner_recid':str(partner_recid)}) # logging.info(" TMP = "+str(tmp)) if (tmp_count <= 0): @@ -1509,17 +1543,23 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): return False, " Cette formation n'est pas valide " - - if(len(str(session_id).strip()) <= 0 ): + ## Verification de l'existance de session et recuperation de de "_id" + session_count = MYSY_GV.dbname['session_formation'].count_documents({'class_internal_url':str(class_internal_url), 'valide': '1', + 'code_session':str(code_session), 'partner_owner_recid':str(partner_recid)}) + if (session_count <= 0): mycommon.myprint( - str(inspect.stack()[0][3]) + " La session de formation est vide : Impossible d'importer la liste des participants ") - return False, " La session de formation est incorrecte. Impossible d'importer la liste des participants" + str(inspect.stack()[0][3]) + " -" + str(code_session) + " : ' Cette session n'est pas valide ") + return False, " La session de formation "+str(code_session)+" n'est pas valide " + if (session_count > 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + " -" + str(code_session) + " : ' Cette session existe en double ") + return False, " La session de formation "+str(code_session)+" n'est est incohérente " + + session_data = MYSY_GV.dbname['session_formation'].find_one( + {'class_internal_url': str(class_internal_url), 'valide': '1', + 'code_session': str(code_session), 'partner_owner_recid': str(partner_recid)}, {'_id':1}) - partner_recid = mycommon.get_parnter_recid_from_token(my_token) - if (partner_recid is False): - mycommon.myprint(str(inspect.stack()[0][3]) + " - partner_recid KO : Impossible d'importer la liste des participants ") - return False, " Les information de connexion sont incorrectes. Impossible d'importer la liste des participants" status, saved_file = mycommon.Upload_Save_CSV_File(file, Folder) if (status == False): @@ -1584,7 +1624,7 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): mydata['employeur'] = str(df['employeur'].values[n]) mydata['telephone'] = str(df['telephone'].values[n]) mydata['email'] = str(df['email'].values[n]) - mydata['session_id'] = str(session_id) + mydata['session_id'] = str(session_data['_id']) mydata['token'] = str(my_token) modefinancement = "" @@ -1631,34 +1671,36 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): """ client_rattachement_email = "" if ("client_rattachement_email" in df.keys()): - if (str(df['client_rattachement_email'].values[n])): + if (str(df['client_rattachement_email'].values[n]) and str(df['client_rattachement_email'].values[n]) != "nan" ): client_rattachement_email = str(df['client_rattachement_email'].values[n]) client_rattachement_nom = "" - if ("client_rattachement_nom" in df.keys()): + if ("client_rattachement_nom" in df.keys() and str(df['client_rattachement_nom'].values[n]) != "nan"): if (str(df['client_rattachement_nom'].values[n])): client_rattachement_nom = str(df['client_rattachement_nom'].values[n]) - local_client_retval_qry = {'email':str(client_rattachement_email), 'nom':str(client_rattachement_nom), 'valide':'1', - 'locked':'0', 'partner_recid' :str(partner_recid)} - local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(local_client_retval_qry) + if( client_rattachement_email and client_rattachement_nom ): + local_client_retval_qry = {'email':str(client_rattachement_email), 'nom':str(client_rattachement_nom), 'valide':'1', + 'locked':'0', 'partner_recid' :str(partner_recid)} - if( local_client_retval_count > 1 ): - mycommon.myprint( - str(inspect.stack()[0][3]) +"Ligne : "+str(n) +". Plusieurs clients correspondent aux critère de nom :"+str(client_rattachement_nom)+" et email : "+str(client_rattachement_email)) - return False, "Ligne : "+str(n) +". Plusieurs clients correspondent aux critère de nom :"+str(client_rattachement_nom)+" et email : "+str(client_rattachement_email) + local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(local_client_retval_qry) - if (local_client_retval_count < 1): - mycommon.myprint( - str(inspect.stack()[0][3]) + "Ligne : "+str(n) +". Aucun client ne repond aux critères de nom :" + str( - client_rattachement_nom) + " et email : " + str(client_rattachement_email)) - return False, "Ligne : "+str(n) +". Aucun client ne repond aux critères de nom :" + str( - client_rattachement_nom) + " et email : " + str(client_rattachement_email) + if( local_client_retval_count > 1 ): + mycommon.myprint( + str(inspect.stack()[0][3]) +"Ligne : "+str(n) +". Plusieurs clients correspondent aux critère de nom :"+str(client_rattachement_nom)+" et email : "+str(client_rattachement_email)) + return False, "Ligne : "+str(n) +". Plusieurs clients correspondent aux critère de nom :"+str(client_rattachement_nom)+" et email : "+str(client_rattachement_email) - local_client_retval_data = MYSY_GV.dbname['partner_client'].find_one(local_client_retval_qry) - if( local_client_retval_data is not None ): - mydata['client_rattachement_id'] = local_client_retval_data['_id'] + if (local_client_retval_count < 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Ligne : "+str(n) +". Aucun client ne repond aux critères de nom :" + str( + client_rattachement_nom) + " et email : " + str(client_rattachement_email)) + return False, "Ligne : "+str(n) +". Aucun client ne repond aux critères de nom :" + str( + client_rattachement_nom) + " et email : " + str(client_rattachement_email) + + local_client_retval_data = MYSY_GV.dbname['partner_client'].find_one(local_client_retval_qry) + if( local_client_retval_data is not None ): + mydata['client_rattachement_id'] = local_client_retval_data['_id'] mydata['status'] = str(df['status'].values[n]).strip() @@ -1821,16 +1863,64 @@ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=No mydata['employeur'] = str(df['employeur'].values[n]) mydata['telephone'] = str(df['telephone'].values[n]) mydata['email'] = str(df['email'].values[n]) - mydata['session_id'] = str(df['code_session'].values[n]) + mydata['token'] = str(my_token) + """ + Recuperation de l'internal url de la formation a partir de la cle + - formation code externe + - partner_owner_recid + """ + qry = {'external_code':str(class_external_code), 'valide':'-51', 'locked':'0', 'partner_owner_recid':str(partner_recid)} + print(" ### qry = ", qry) + myclass_data_count = MYSY_GV.dbname['myclass'].count_documents({'external_code':str(class_external_code), 'valide':'1', 'locked':'0', + 'partner_owner_recid':str(partner_recid)}) + + if( myclass_data_count != 1 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Ligne : " + str( + n + 2) + ": Le code externe de la formation et le code de la session ne correspondent pas .") + return False, "Ligne : " + str( + n + 2) + ": Le code externe de la formation et le code de la session ne correspondent pas." + + + myclass_data = MYSY_GV.dbname['myclass'].find_one({'external_code':str(class_external_code), 'valide':'1', 'locked':'0', + 'partner_owner_recid':str(partner_recid)}) + + mysession_count_qry = {'class_internal_url': str(myclass_data['internal_url']), 'valide': '1', + 'partner_owner_recid': str(partner_recid), 'code_session':str(df['code_session'].values[n]) } + + print(" ### mysession_count_qry = ", qry) + + mysession_count = MYSY_GV.dbname['session_formation'].count_documents(mysession_count_qry) + + if( mysession_count != 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Ligne : " + str( + n + 2) + ": Le code externe de la formation et le code de la session ne correspondent pas (2).") + return False, "Ligne : " + str( + n + 2) + ": Le code externe de la formation et le code de la session ne correspondent pas (2)." + + mysession_data = MYSY_GV.dbname['session_formation'].find_one(mysession_count_qry) + + + + mydata['session_id'] = str(mysession_data['_id']) + mydata['class_internal_url'] = str(mysession_data['class_internal_url']) + """ + Recuperation de l''_id' de la session à partir de la clé + - formation code externe + - code_session + - partner_owner_recid + """ + """ On verifie que le code de le session et le l'external class code correspondent. En gros : que la formation en question a bien une session du meme code """ - check_class_session_query = [{'$match': {'code_session':str(df['code_session'].values[n])}}, + """check_class_session_query = [{'$match': {'code_session':str(df['code_session'].values[n])}}, {'$lookup': { 'from': 'myclass', @@ -1856,9 +1946,9 @@ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=No str(inspect.stack()[0][3]) + "Ligne : " + str( n+2) + ": Le code externe de la formation et le code de la session ne correspondent pas .") return False, "Ligne : " + str(n+2) + ": Le code externe de la formation et le code de la session ne correspondent pas." + """ - mydata['class_internal_url'] = real_class_internal_url modefinancement = "" @@ -1905,35 +1995,35 @@ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=No """ client_rattachement_email = "" if ("client_rattachement_email" in df.keys()): - if (str(df['client_rattachement_email'].values[n])): + if (str(df['client_rattachement_email'].values[n]) and str(df['client_rattachement_email'].values[n]) != "nan"): client_rattachement_email = str(df['client_rattachement_email'].values[n]) client_rattachement_nom = "" if ("client_rattachement_nom" in df.keys()): - if (str(df['client_rattachement_nom'].values[n])): + if (str(df['client_rattachement_nom'].values[n]) and str(df['client_rattachement_nom'].values[n]) != "nan" ): client_rattachement_nom = str(df['client_rattachement_nom'].values[n]) + if (client_rattachement_email and client_rattachement_nom): + local_client_retval_qry = {'email':str(client_rattachement_email), 'nom':str(client_rattachement_nom), + 'valide':'1', 'locked':'0', 'partner_recid' :str(partner_recid)} - local_client_retval_qry = {'email':str(client_rattachement_email), 'nom':str(client_rattachement_nom), - 'valide':'1', 'locked':'0', 'partner_recid' :str(partner_recid)} + local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(local_client_retval_qry) - local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(local_client_retval_qry) + if( local_client_retval_count > 1 ): + mycommon.myprint( + str(inspect.stack()[0][3]) +"Ligne : "+str(n+2) +". Plusieurs clients correspondent aux critère de nom :"+str(client_rattachement_nom)+" et email : "+str(client_rattachement_email)) + return False, "Ligne : "+str(n+2) +". Plusieurs clients correspondent aux critère de nom :"+str(client_rattachement_nom)+" et email : "+str(client_rattachement_email) - if( local_client_retval_count > 1 ): - mycommon.myprint( - str(inspect.stack()[0][3]) +"Ligne : "+str(n+2) +". Plusieurs clients correspondent aux critère de nom :"+str(client_rattachement_nom)+" et email : "+str(client_rattachement_email)) - return False, "Ligne : "+str(n+2) +". Plusieurs clients correspondent aux critère de nom :"+str(client_rattachement_nom)+" et email : "+str(client_rattachement_email) + if (local_client_retval_count < 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Ligne : "+str(n+2) +". Aucun client ne repond aux critères de nom :" + str( + client_rattachement_nom) + " et email : " + str(client_rattachement_email)) + return False, "Ligne : "+str(n+2) +". Aucun client ne repond aux critères de nom :" + str( + client_rattachement_nom) + " et email : " + str(client_rattachement_email) - if (local_client_retval_count < 1): - mycommon.myprint( - str(inspect.stack()[0][3]) + "Ligne : "+str(n+2) +". Aucun client ne repond aux critères de nom :" + str( - client_rattachement_nom) + " et email : " + str(client_rattachement_email)) - return False, "Ligne : "+str(n+2) +". Aucun client ne repond aux critères de nom :" + str( - client_rattachement_nom) + " et email : " + str(client_rattachement_email) - - local_client_retval_data = MYSY_GV.dbname['partner_client'].find_one(local_client_retval_qry) - if( local_client_retval_data is not None ): - mydata['client_rattachement_id'] = local_client_retval_data['_id'] + local_client_retval_data = MYSY_GV.dbname['partner_client'].find_one(local_client_retval_qry) + if( local_client_retval_data is not None ): + mydata['client_rattachement_id'] = local_client_retval_data['_id'] mydata['status'] = str(df['status'].values[n]).strip() @@ -3761,12 +3851,9 @@ def Get_Statgaire_List_Partner_with_filter(diction): if ("nom" in diction.keys()): filt_nom = {'nom': {'$regex': str(diction['nom']), "$options": "i"}} - - - filt_class_partner_recid = {'partner_owner_recid': str(partner_recid)} - query = [{'$match':{ '$and' : [ filt_class_internal_url, filt_session_id, filt_email, filt_nom] } }, + query = [{'$match':{ '$and' : [ filt_class_internal_url, filt_session_id, filt_email, filt_nom, {'partner_owner_recid':str(partner_recid)}] } }, {'$lookup': { 'from': 'myclass', @@ -3825,14 +3912,18 @@ def Get_Statgaire_List_Partner_with_filter(diction): val['domaine'] = retVal['myclass_collection'][0]['domaine'] # Recuperation des informations de la session - local_qry = {'class_internal_url':str(retVal['class_internal_url']), 'code_session':str(retVal['session_id']), 'valide':'1'} + local_qry = {'_id':ObjectId(retVal['session_id']), 'valide':'1'} + + count_session = MYSY_GV.dbname['session_formation'].count_documents(local_qry) client_rattachement_id = "" client_rattachement_nom = "" # Si il a un client rattacher, recuperation des information du client + + #print(" ### retVal = ", retVal ) if( "client_rattachement_id" in retVal.keys()): - if( retVal['client_rattachement_id']): + if( retVal['client_rattachement_id'] and str(retVal['client_rattachement_id'] ) != 'undefined'): client_retval = MYSY_GV.dbname['partner_client'].find_one({'id':ObjectId( retVal['client_rattachement_id']), 'valide':'1', 'locked':'0'}) @@ -3854,8 +3945,7 @@ def Get_Statgaire_List_Partner_with_filter(diction): #qry2 = {'class_internal_url':str(retVal['class_internal_url']), 'code_session':str(retVal['session_id']), 'valide':'1'} #print(" ### qry 2 =", qry2) - session_retval = MYSY_GV.dbname['session_formation'].find_one({'class_internal_url':str(retVal['class_internal_url']), - 'code_session':str(retVal['session_id']), 'valide':'1'}) + session_retval = MYSY_GV.dbname['session_formation'].find_one({'_id':ObjectId(str(retVal['session_id'])), 'valide':'1'}) if ("date_debut" in session_retval.keys()): diff --git a/Log/log_file.log b/Log/log_file.log index 0e7b94f..975e6b8 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -1764038,3 +1764038,3512 @@ INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:35:25] "POST /myclass/api/get_partne INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:35:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - INFO:root:2023-08-19 20:35:30.510923 : Security check : IP adresse '127.0.0.1' connected INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:35:30] "POST /myclass/api/GetAllValideSessionPartner_List_filter_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:41:57.526070 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 12:41:57.526070 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 12:41:57.527544 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 12:41:57.527544 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 12:41:57.527544 : ++ LMS_BAS_URL mysy-training.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 +INFO:root:2023-08-20 12:42:08.498580 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 12:42:08.498580 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 12:42:08.498580 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 12:42:08.498580 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 12:42:08.498580 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 12:42:20.134130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:20.135144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:20.137160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:20] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:20] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:20] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:42:20.382190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:20.385188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:20] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:42:20.672633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:42:20.981871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:20.983901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:20.985911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:20.989239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:42:20.997572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:42:21.003414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:42:21.309735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:21.310728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:21.313817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:42:21.327248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:21.329267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:21.330279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:42:21.628794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:21.629303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:42:21.636389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:42:21.644343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:21.645352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:42:21.647365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:42:21.947621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:42:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:36.245384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:36.248378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:36.249507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:36] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:36] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.009583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:37.011576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.719489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:37.723011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.727032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:37.728040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.735139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.743053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.750215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.754411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.759819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:37.761830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.769281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.778083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:37.779971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.785864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.794641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:37.797245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:37.802398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:37.808207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:37.814714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:37.817733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:41.067064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:41] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:41.213677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:41.217701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:41.221705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:41.225700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:41.236799 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:41.289077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:45.009223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:45.013221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:45.015218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:46:45.019224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:46:46.087017 : Get_Statgaire_List_Partner_with_filter -'undefined' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 3836 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:46:46] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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 +INFO:root:2023-08-20 12:48:59.054640 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 12:48:59.054640 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 12:48:59.054640 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 12:48:59.054640 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 12:48:59.054640 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 12:49:03.886121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:49:03.889345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:49:03.892460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:49:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:49:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:49:03.903177 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:49:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:49:04.001792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:49:04.003790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:49:04.007273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:49:04.012141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:49:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:49:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:49:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:49:04.730523 : Get_Statgaire_List_Partner_with_filter -'undefined' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 3838 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:49:04] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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 +INFO:root:2023-08-20 12:50:39.070057 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 12:50:39.070057 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 12:50:39.070057 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 12:50:39.070057 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 12:50:39.071403 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 12:50:46.596990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:50:46.600026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:50:46.602229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:50:46.609732 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:50:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:50:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:50:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:50:46.712816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:50:46.715821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:50:46.718817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:50:46.722816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:50:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:50:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:50:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:50:46] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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 +INFO:root:2023-08-20 12:51:06.795145 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 12:51:06.795145 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 12:51:06.795145 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 12:51:06.795145 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 12:51:06.795145 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 12:52:47.641509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:52:47.645858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:52:47] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:52:47] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:05.045979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:05.048133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:05.049568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:05] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:05] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:05] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:05.937153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:05.938376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.292901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:06.296017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.300529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.304099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:06.308626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.313107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.319594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.324577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.329292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.334500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.338519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:06.344333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.349207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:06.353038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.359441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.367145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:06.369293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:06.373207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.376811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.383604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:06.989770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:06.992831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:06.997471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:07.000786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:07.012926 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:07.064769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:07] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:09.072402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:09.075078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:09.080114 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:09] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:11.721669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:11.771764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:11] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:25.738754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:25] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:27.728893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:27.732398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:27.738092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:27] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:27.743204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:31.527062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:31.531019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:31.534402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:31.539740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:31.543985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:31] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:31] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:31] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:32.611249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:32] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 12:53:39.609207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 12:53:39.612498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:39] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 12:53:39] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:05:11.235777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:05:11.239691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:05:11.242701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:11] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:05:11.247028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:11] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:11] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:05:34.348705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:05:34.353641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:05:34.358119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:34] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:05:34.365122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:05:43.612334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:05:43.616190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:05:43.617476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:05:43.623119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:05:43.627147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:43] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:43] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:43] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:05:44.688195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:44] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:05:47.792481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:05:47.796209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:47] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:05:47] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:06:07.147950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:06:07.151188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:06:07.155190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:06:07] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:06:07.161803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:06:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:06:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:06:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:06:11.406486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:06:11.411054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:06:11.415586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:06:11.419057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:06:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:06:11.425140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:06:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:06:11] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:06:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:06:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:06:12.856679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:06:12] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:06:17.594715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:06:17.598030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:06:17] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:06:17] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:07:06.312955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:07:06.316763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:07:06] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:07:06.322956 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:07:06.325951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:07:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:07:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:07:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:09:43.876530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:09:43.881015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:09:43.886855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:09:43] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:09:43.893858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:09:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:09:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:09:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:11:52.074457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:11:52.080852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:11:52.087260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:11:52] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:11:52.091497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:11:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:11:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:11:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:12:58.110518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:12:58.116551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:12:58] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:12:58.122230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:12:58.126813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:12:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:12:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:12:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:13:04.135315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:13:04.142637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:13:04.148894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:13:04.157332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:13:04] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:13:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:13:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:13:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:13:08.937142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:13:08.941478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:13:08.948397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:13:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:13:08.953582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:13:08.958591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:13:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:13:08] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:13:08] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:13:08] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:13:10.054224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:13:10] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:13:13.656730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:13:13.661650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:13:13] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:13:13] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:16:43.864681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:16:43.869117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:16:43.871330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:16:43.875977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:16:43] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:16:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:16:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:16:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:16:47.230695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:16:47.235903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:16:47] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:16:47] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:20:44.134585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:20:44.138608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:20:44.142600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:20:44] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:20:44.147950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:20:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:20:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:20:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:26:51.913420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:26:51.919174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:26:51.923830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:26:51.928719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:26:51] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:26:51] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:26:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:26:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:27:06.008489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:27:06.013340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:27:06.017346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:27:06.025509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:27:19.112290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:27:19.130184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:19] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:27:19.137320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:27:19.143300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:19] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:19] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:27:23.233311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:27:23.241460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:27:23.248164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:27:23.252564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:27:23.258785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:23] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:23] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:23] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:27:24.209566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:24] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:27:27.835190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:27:27.840473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:27] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:27:27] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:29:56.147904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:29:56.152921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:29:56.157923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:29:56.162156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:29:56] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:29:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:29:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:29:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:34:40.449803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:34:40.457118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:34:40.460117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:34:40] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:34:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:34:40.472630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:34:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:34:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:38:22.958760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:38:22.963764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:38:22.968181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:22] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:38:22.975195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:22] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:38:27.700828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:38:27.712267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:38:27.717662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:27] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:38:27.726571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:38:31.067934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:38:31.071932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:38:31.079935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:38:31.083939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:38:31.091937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:31] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:31] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:31] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:38:32.224876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:32] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:38:42.746514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:38:42.750847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:42] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:38:42] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:39:02.964467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:39:02.975498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:39:02] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:39:02] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:45:31.444792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:45:31.456091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:45:31.459613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:45:31.464637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:45:31] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:45:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:45:31] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:45:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:47:04.425776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:47:04.429949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:47:04.435618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:47:04] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:47:04.441952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:47:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:47:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:47:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:48:46.291188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:48:46.301546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:48:46.307470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:48:46.310490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:48:46] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:48:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:48:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:48:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:48:50.196900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:48:50.200902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:48:50.205627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:48:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:48:50.210181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:48:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:48:50.217007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:48:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:48:50] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:48:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:48:51.183849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:48:51] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:48:55.083463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:48:55.086459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:48:55] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:48:55] "POST /myclass/api/GetAttendeeDetail_perSession/ 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 +INFO:root:2023-08-20 13:52:41.264738 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 13:52:41.264738 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 13:52:41.264738 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 13:52:41.264738 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 13:52:41.264738 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 13:52:45.642462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:52:45.647464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:52:45.650458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:52:45.654919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:52:45] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:52:45] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:52:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:52:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:52:50.066840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:52:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:52:50.075499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:52:50.078762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:52:50.082294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:52:50.087448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:52:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:52:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:52:50] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:52:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:52:51.355688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:52:51] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:52:55.348135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:52:55.351132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:52:55] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:52:56] "POST /myclass/api/GetAttendeeDetail_perSession/ 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 +INFO:root:2023-08-20 13:53:20.973363 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 13:53:20.974363 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 13:53:20.974363 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 13:53:20.974363 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 13:53:20.974363 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 13:53:25.390867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:53:25.394121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:53:25] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:53:26] "POST /myclass/api/GetAttendeeDetail_perSession/ 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 +INFO:root:2023-08-20 13:53:57.477885 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 13:53:57.477885 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 13:53:57.477885 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 13:53:57.477885 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 13:53:57.477885 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 13:54:06.985171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:54:06.988219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:54:07] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:54:07] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:54:46.558758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:54:46.565264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:54:46] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:54:46] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:54:58.651068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:54:58.654556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:54:58] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:54:58] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 13:55:05.697473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 13:55:05.702779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:55:05] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 13:55:05] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:03:08.758497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:03:08.761499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:03:08.766507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:03:08.770783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:03:08.776609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:03:08.782111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:08] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:03:08.799192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:03:08.804712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:08] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:03:16.001102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:03:16.004466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:16] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:16] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:03:28.759112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:03:28.763158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:03:28.769463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:28] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:03:28.774693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:28] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:03:32.616804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:03:32.620819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:03:32.626824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:03:32.633339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:03:32.637359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:32] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:32] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:32] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:03:33.772939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:33] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:03:39.633176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:03:39.636390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:39] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:03:39] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:04:11.359859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:04:12.855824 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-20 14:04:13.334565 : UpdateStagiairetoClass Le compte LMS du participant a été correctement mis à jour : local_ret_val['_id'] = 64e0f1078a43f9601d166b09 +INFO:root:2023-08-20 14:04:13.409410 : UpdateStagiairetoClass TOP, l'inscription dans le LMS a ete correctement faite +INFO:root:2023-08-20 14:04:13.410407 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:04:13] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:04:15.315900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:04:15.326235 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:04:15.333251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:04:15] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:04:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:04:15] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:04:15.383549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:04:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:06:12.045154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:06:12.051657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:06:12.055013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:06:12.060576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:06:12] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:06:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:06:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:06:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:06:15.136497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:06:15.140017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:06:15.144392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:06:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:06:15.149390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:06:15.154920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:06:15] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:06:15] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:06:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:06:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:06:16.431489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:06:16] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ 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 +INFO:root:2023-08-20 14:07:34.414782 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 14:07:34.414782 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 14:07:34.414782 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 14:07:34.414782 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 14:07:34.414782 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 14:11:01.453646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:11:01.459641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:11:01.462182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:11:01.464188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:11:01] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:11:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:11:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:11:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:13:58.220878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:13:58.223658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:13:58] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:13:58.232681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:13:58.236672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:13:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:13:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:13:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:14:06.866140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:14:06.870136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:14:06.878234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:14:06] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:14:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:14:06.890559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:14:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:14:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:14:11.107952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:14:11.111957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:14:11] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:14:11] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:14:28.709448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:14:29.237460 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-20 14:14:29.634180 : UpdateStagiairetoClass Le compte LMS du participant a été correctement mis à jour : local_ret_val['_id'] = 64aef8b4a70b3665dd2c7df5 +INFO:root:2023-08-20 14:14:29.695302 : UpdateStagiairetoClass TOP, l'inscription dans le LMS a ete correctement faite +INFO:root:2023-08-20 14:14:29.695302 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:14:29] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:14:30.434492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:14:30] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:14:30.447815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:14:30] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:14:30.475134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:14:30.479648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:14:30] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:14:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:16:25.604750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:16:25.610284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:16:25.615288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:16:25] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:16:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:16:25.623419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:16:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:16:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:17:04.625295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:17:04.629396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:17:04] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:17:04.635389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:17:04.637390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:17:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:17:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:17:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:17:06.721237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:17:06.725226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:17:06] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:17:06] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:18:17.171539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:18:17.179534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:18:17] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:18:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:18:17.194025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:18:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:18:17.208022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:18:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:18:21.471841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:18:21.476079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:18:21.480129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:18:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:18:21.485120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:18:21.490122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:18:21] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:18:21] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:18:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:18:21] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:18:22.604036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:18:22] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:18:26.828275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:18:26.836362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:18:26] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:18:26] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:19:33.167219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:19:33.171803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:19:33.175382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:19:33.178810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:19:33] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:19:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:19:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:19:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:24:31.255131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:24:31.262130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:24:31.268127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:24:31] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:24:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:24:31] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:24:31.284118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:24:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:25:22.214074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:25:22.221892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:25:22.224966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:25:22] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:25:22.231204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:25:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:25:22] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:25:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:25:30.008171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:25:30.013442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:25:30.015451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:25:30] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:25:30.026168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:25:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:25:30] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:25:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:25:56.450476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:25:56.459574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:25:56.463960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:25:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:25:56] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:25:56.470989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:25:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:25:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:27:31.037233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:27:31.041047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:27:31.046071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:27:31] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:27:31.051273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:27:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:27:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:27:31] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:27:50.910600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:27:50.918241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:27:50.923600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:27:50] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:27:50.929604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:27:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:27:50] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:27:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:27:59.410895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:27:59.417898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:27:59.423442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:27:59] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:27:59.431028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:27:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:27:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:27:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:28:07.927440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:28:07.932557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:28:07] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:28:07.942924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:28:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:28:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:28:07.975002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:28:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:28:20.529580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:28:20.533577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:28:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:28:20.540113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:28:20.544811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:28:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:28:20] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:28:20] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:28:27.367080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:28:27.370255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:28:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:28:27.376861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:28:27.382444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:28:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:28:27] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:28:27] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:29:59.722703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:29:59.728739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 14:29:59.734115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:29:59] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 14:29:59.739743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:29:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:29:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 14:29:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:17:40.869341 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:17:40.870649 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:17:40.871976 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:17:40.871976 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:17:40.871976 : ++ LMS_BAS_URL mysy-training.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 +INFO:root:2023-08-20 19:17:53.156216 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:17:53.157211 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:17:53.157211 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:17:53.157211 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:17:53.157211 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 19:18:56.799562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:18:56.801056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:18:56.803551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:56] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:56] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:56] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:57.524554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:18:57.528280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.316726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:18:58.320200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:18:58.326002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.329596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.334840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.343392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.349355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.355354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:18:58.360911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.365748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.373825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.379204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.387036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.391879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:18:58.396123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.405005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.410507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:18:58.415178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:18:58.422768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:18:58.430763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:18:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:01.501494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:01] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:01.697678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:01.698683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:01.705411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:01.710916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:01.715920 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:01.780240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:01] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.246244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:16.247410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:16.249844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.533809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:16.536830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.885058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:16.888791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.894125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:16.897446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.903364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.909594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:16.911941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.916023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:16.921052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.926737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.933052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.935060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.943762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:16.948617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.954629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:16.957105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.964311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.968914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.976239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:16.982745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:55.895088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:55] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:56.046812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:56.051327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:56.055335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:19:56.059338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:56.072632 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:19:56.108494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:19:56] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:20:00.482433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:20:00.485439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:20:00.490206 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:20:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:20:00] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:23:50.476853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:23:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:23:50.580737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:23:50] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:23:53.423449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:23:53.426961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:23:53] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:23:53] "POST /myclass/api/get_List_metier_formation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:24:09.317834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:24:10.112406 : add_class_mass : entete du fichier csv. 'formation_code_externe' n'est pas acceptée +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:24:10] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:25:23.026385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:25:23.269290 : external_code = MYSY_Test_AP ==> PRATICIEN EN AROMATHERAPIE INTEGRATIVE +INFO:root:2023-08-20 19:25:23.867745 : La formation indexée (champ title) =64a58d3f7420e5ba1bd2f655 +INFO:root:2023-08-20 19:25:23.867745 : 1 ont été indexes => title +INFO:root:2023-08-20 19:25:24.145681 : ela_index_class_key_word 3 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_AP +INFO:root:2023-08-20 19:25:24.259833 : external_code = MYSY_Test_OP ==> PRATICIEN EN OLFACTOTHERAPIE +INFO:root:2023-08-20 19:25:24.637389 : La formation indexée (champ title) =64a58d447420e5ba1bd2f683 +INFO:root:2023-08-20 19:25:24.637389 : 1 ont été indexes => title +INFO:root:2023-08-20 19:25:24.893892 : ela_index_class_key_word 2 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_OP +INFO:root:2023-08-20 19:25:25.016863 : external_code = MYSY_Test_AR ==> PRATICIEN EN AROMATHERAPIE INTEGRATIVE +INFO:root:2023-08-20 19:25:25.332059 : La formation indexée (champ title) =64a58d497420e5ba1bd2f6a9 +INFO:root:2023-08-20 19:25:25.333070 : 1 ont été indexes => title +INFO:root:2023-08-20 19:25:25.638306 : ela_index_class_key_word 3 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_AR +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:25:25] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:27:12.500705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:27:12.663088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:12] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:27:18.064282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:18] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:27:22.750341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:27:22.753483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:27:22.756545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:27:22.762445 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:27:24.187529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:27:24.191470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:27:24.196639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:24] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:27:24.201140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:27:33.951739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:27:33.954811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:27:33.957809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:27:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:28:22.804230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:28:22.808344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:28:22.810343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:28:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:28:22] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:28:22] "POST /myclass/api/GetAllValideSessionPartner_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 +INFO:root:2023-08-20 19:37:22.805497 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:37:22.805497 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:37:22.806511 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:37:22.806511 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:37:22.806511 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 19:37:49.267177 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:37:49.267177 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:37:49.267177 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:37:49.267177 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:37:49.267177 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 19:38:24.404383 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:38:24.405385 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:38:24.405385 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:38:24.405385 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:38:24.405385 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 19:49:52.125769 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:49:52.125769 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:49:52.125769 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:49:52.125769 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:49:52.126773 : ++ LMS_BAS_URL mysy-training.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 +INFO:root:2023-08-20 19:50:01.096411 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:50:01.097457 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:50:01.097457 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:50:01.097457 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:50:01.097457 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 19:51:18.392949 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:51:18.393950 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:51:18.393950 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:51:18.393950 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:51:18.393950 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 19:52:16.048429 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:52:16.048959 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:52:16.048959 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:52:16.048959 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:52:16.048959 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 19:53:37.823852 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:53:37.823852 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:53:37.824855 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:53:37.824855 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:53:37.824855 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 19:54:58.242682 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:54:58.242682 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:54:58.243941 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:54:58.243941 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:54:58.243941 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 19:55:22.908291 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:55:22.909300 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:55:22.909300 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:55:22.909300 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:55:22.909300 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 19:55:45.956654 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 19:55:45.956654 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 19:55:45.956654 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 19:55:45.956654 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 19:55:45.956654 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 19:56:34.750366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:56:34.752380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:56:34.757388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:56:34.759613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:56:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:56:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:56:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:56:34] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:58:04.227615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:58:04.229635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:58:04.234236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:58:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:58:04.242664 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:58:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:58:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 19:58:04.369100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:58:04.372929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 19:58:04.375915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:58:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:58:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 19:58:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:01:31.112655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:01:31.115668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:01:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:01:31.118667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:01:31.125668 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:01:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:01:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:01:31.244726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:01:31.247728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:01:31.250723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:01:31] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:01:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:01:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:01:51.072656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:01:52.114060 : Add_Update_SessionFormation_mass_for_many_class -'code_session' - ERRORRRR AT Line : 1541 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:01:52] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ 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 +INFO:root:2023-08-20 20:03:02.959271 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:03:02.959271 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:03:02.959271 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:03:02.960543 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:03:02.960543 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 20:03:03.005491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:03:03.008511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:03:03.013510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:03:03.016549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:03:03.020549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:03:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:03:03.026533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:03:03.034189 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:03:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:03:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:03:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:03:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:03:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:03:13.095676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:03:13.840213 : Add_Update_SessionFormation_mass_for_many_class -'str' object has no attribute 'values' - ERRORRRR AT Line : 1541 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:03:13] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ 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 +INFO:root:2023-08-20 20:04:28.509079 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:04:28.509079 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:04:28.509079 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:04:28.509079 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:04:28.509079 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 20:05:19.404324 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:05:19.404324 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:05:19.404324 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:05:19.404324 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:05:19.404324 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 20:05:19.440428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:05:19] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:05:27.031133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:05:27.034233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:05:27.036444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:05:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:05:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:05:27.051305 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:05:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:05:27.150404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:05:27.154390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:05:27.157445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:05:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:05:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:05:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:06:37.290153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:06:37] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:06:52.637619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:06:52.640617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:06:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:06:52.645617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:06:52.649626 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:06:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:06:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:06:52.760593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:06:52.763589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:06:52.767110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:06:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:06:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:06:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:09:05.996515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:09:05.999810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:09:06.005452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:09:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:09:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:09:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:09:10.884821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:09:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:09:10.891839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:09:10.896827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:09:10.901845 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:09:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:09:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:09:11.053021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:09:11.057024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:09:11.061032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:09:11] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:09:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:09:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:09:20.535511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:09:20] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:09:21.245068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:09:21.251536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:09:21] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:09:21] "POST /myclass/api/GetAllValideSessionPartner_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 +INFO:root:2023-08-20 20:15:02.036304 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:15:02.037306 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:15:02.037306 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:15:02.037306 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:15:02.037306 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 20:17:18.605265 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:17:18.605265 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:17:18.605265 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:17:18.605265 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:17:18.605265 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 20:18:40.749514 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:18:40.750517 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:18:40.750517 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:18:40.750517 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:18:40.750517 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 20:19:12.299592 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:19:12.299592 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:19:12.300592 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:19:12.300592 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:19:12.300592 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 20:24:20.078941 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:24:20.078941 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:24:20.078941 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:24:20.079937 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:24:20.079937 : ++ LMS_BAS_URL mysy-training.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 +INFO:root:2023-08-20 20:24:29.613092 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:24:29.614092 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:24:29.614092 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:24:29.614092 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:24:29.614092 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 20:25:21.148647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:25:21.153149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:25:21.156458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:25:21.169850 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:25:21.326945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:25:21.332978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:25:21.336260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:21] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:25:28.990102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:29] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:25:29.566804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:29] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:25:29.594124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:25:44.446155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:44] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:25:44.817812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:25:44.821326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:44] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:25:51.013482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:51] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:25:51.022008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:25:51.025634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:25:51.032242 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:51] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:25:51.209368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:25:51.213855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:25:51.218577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:51] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:25:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:26:54.424672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:26:54] "POST /myclass/api/GetAllValideSessionPartner_List_filter_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:27:05.320228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:27:05.326664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:27:05.329983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:27:05.331965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:27:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:27:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:27:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:27:06.157106 : Get_Statgaire_List_Partner_with_filter -'client1' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 3838 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:27:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:27:10.386261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:27:10.412973 : AddStagiairetoClass_mass_for_many_sessionLigne : 2. Aucun client ne repond aux critères de nom :client1 et email : client1@mysy.fr +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:27:10] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 20:27:34.407035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:27:34.429241 : AddStagiairetoClass_mass_for_many_sessionLigne : 2. Aucun client ne repond aux critères de nom :nan et email : nan +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:27:34] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 20:32:05.730848 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:32:05.730848 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:32:05.730848 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:32:05.730848 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:32:05.730848 : ++ LMS_BAS_URL mysy-training.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 +INFO:root:2023-08-20 20:32:17.051758 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:32:17.051758 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:32:17.051758 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:32:17.051758 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:32:17.052764 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 20:32:18.234835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:32:18.836008 : AddStagiairetoClass_mass_for_many_sessionLigne : 2. Aucun client ne repond aux critères de nom : et email : +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:32:18] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 20:34:31.373623 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:34:31.373623 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:34:31.373623 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:34:31.374622 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:34:31.374622 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 20:34:31.426987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 20:34:32.108872 : AddStagiairetoClass - L'adresse email line1@mysy.fr est deja inscrite à la session du AM02 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 20:34:32] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 20:41:24.668003 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:41:24.668003 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:41:24.668003 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:41:24.668003 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:41:24.668003 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 20:43:42.830600 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:43:42.830600 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:43:42.831600 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:43:42.831600 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:43:42.831600 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 20:45:33.720962 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:45:33.720962 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:45:33.720962 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:45:33.720962 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:45:33.720962 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 20:46:05.680837 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:46:05.680837 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:46:05.680837 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:46:05.680837 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:46:05.680837 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 20:46:41.637819 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:46:41.637819 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:46:41.637819 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:46:41.637819 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:46:41.637819 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 20:47:44.653312 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:47:44.653312 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:47:44.653312 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:47:44.653312 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:47:44.653312 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 20:52:30.141501 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 20:52:30.141501 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 20:52:30.142505 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 20:52:30.142505 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 20:52:30.142505 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:09:02.183760 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:09:02.184760 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:09:02.184760 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:09:02.184760 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:09:02.184760 : ++ LMS_BAS_URL mysy-training.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 +INFO:root:2023-08-20 21:09:11.412718 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:09:11.412718 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:09:11.414242 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:09:11.414242 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:09:11.414242 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:09:14.365541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:09:14.369533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:09:14.371876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:09:19.059893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:09:19.064343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:09:19.067354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:09:19.078524 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:09:19.238906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:09:19.247985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:09:19.253109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:19] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:09:26.831629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:26] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:09:27.219091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:09:27.223130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:27] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:09:40.252374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:40] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:09:40.628033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:09:40.635092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:40] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:09:52.614684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:09:52.617680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:09:52.642212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:09:52.646217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:09:53.350611 : Get_Statgaire_List_Partner_with_filter -'client1' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 3894 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:09:53] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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 +INFO:root:2023-08-20 21:11:02.013272 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:11:02.014293 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:11:02.014293 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:11:02.014293 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:11:02.014293 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:11:06.084711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:11:06.676762 : AddStagiairetoClass_mass_for_many_session : entete du fichier csv. 'date_debut' n'est pas acceptée +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:06] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:11:10.412961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:11:10.416058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:11:10.420185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:10] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:11:13.753694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:11:13.759031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:11:13.765828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:11:13.773054 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:11:13.944659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:11:13.949652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:11:13.953203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:13] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:11:24.260217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:11:24.270231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:11:24.275250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:11:24.278262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:11:24.381226 : Get_Statgaire_List_Partner_with_filter -'client1' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 3894 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:11:24] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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 +INFO:root:2023-08-20 21:13:10.951348 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:13:10.951348 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:13:10.951348 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:13:10.952354 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:13:10.952354 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:13:10.990426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:13:10.993875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:13:10.997123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:13:11.000137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:13:11.002342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:13:11.007128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:13:11.017419 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2023-08-20 21:13:11.021134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:11] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:11] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:13:33.662025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:13:33.670330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:13:33.676181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:13:33.679689 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:13:33.846587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:13:33.850177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:13:33.854197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:13:33.859117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:13:33] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:18:13.683448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:18:13.687320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:18:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:18:13.693315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:18:13.700419 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:18:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:18:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:18:13.896195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:18:13.900195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:18:13.905229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:18:13.911478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:18:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:18:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:18:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:18:14] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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 +INFO:root:2023-08-20 21:25:16.447969 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:25:16.448967 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:25:16.448967 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:25:16.448967 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:25:16.448967 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:25:38.663655 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:25:38.663655 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:25:38.663655 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:25:38.663655 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:25:38.663655 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:27:24.766923 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:27:24.767927 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:27:24.767927 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:27:24.767927 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:27:24.767927 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:28:51.236010 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:28:51.236010 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:28:51.236988 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:28:51.236988 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:28:51.236988 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:31:27.622870 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:31:27.622870 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:31:27.622870 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:31:27.622870 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:31:27.623871 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:32:04.786679 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:32:04.786679 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:32:04.787667 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:32:04.787667 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:32:04.787667 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:32:31.328919 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:32:31.329933 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:32:31.329933 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:32:31.329933 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:32:31.329933 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:33:03.702496 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:33:03.702496 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:33:03.702496 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:33:03.702496 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:33:03.702496 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:36:51.243725 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:36:51.243725 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:36:51.243725 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:36:51.243725 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:36:51.243725 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:37:54.640616 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:37:54.640616 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:37:54.640616 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:37:54.642073 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:37:54.642073 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:38:28.785291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:38:28.788306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:38:28.792428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:38:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:38:28.805604 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:38:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:38:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:38:28.990888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:38:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:38:29.021667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:38:29.027809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:38:29.035968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:38:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:38:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:38:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:38:38.218428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:38:38.838458 : AddStagiairetoClass_mass_for_many_session -object of type 'Cursor' has no len() - ERRORRRR AT Line : 1849 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:38:38] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 21:39:39.046816 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:39:39.046816 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:39:39.046816 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:39:39.046816 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:39:39.046816 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:40:35.270474 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:40:35.270474 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:40:35.270474 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:40:35.270474 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:40:35.270474 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:41:11.907819 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:41:11.908822 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:41:11.908822 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:41:11.908822 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:41:11.908822 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:41:12.666218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:41:13.425263 : AddStagiairetoClass_mass_for_many_session -'Cursor' object has no attribute 'size' - ERRORRRR AT Line : 1848 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:41:13] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 21:41:59.393871 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:41:59.394903 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:41:59.394903 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:41:59.394903 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:41:59.395905 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:42:09.320686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:42:09.889371 : AddStagiairetoClass_mass_for_many_session -'Cursor' object has no attribute 'count' - ERRORRRR AT Line : 1848 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:42:09] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 21:42:45.193935 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:42:45.193935 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:42:45.193935 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:42:45.193935 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:42:45.193935 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:42:48.264204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:42:48.963138 : AddStagiairetoClass_mass_for_many_session -'dict' object has no attribute 'count' - ERRORRRR AT Line : 1848 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:42:48] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 21:43:58.267416 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:43:58.267416 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:43:58.267416 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:43:58.274348 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:43:58.274348 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:44:17.164974 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:44:17.165977 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:44:17.165977 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:44:17.165977 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:44:17.165977 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:44:17.246101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:44:18.075060 : AddStagiairetoClass_mass_for_many_session -'dict' object has no attribute 'size' - ERRORRRR AT Line : 1850 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:44:18] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 21:44:54.032232 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:44:54.033239 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:44:54.033239 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:44:54.033239 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:44:54.033239 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:44:54.194678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:44:54.963048 : AddStagiairetoClass_mass_for_many_session -no such item for Cursor instance - ERRORRRR AT Line : 1849 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:44:54] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 21:45:44.430058 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:45:44.430058 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:45:44.431058 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:45:44.431058 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:45:44.431058 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:45:50.968433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:45:52.261752 : AddStagiairetoClass_mass_for_many_session -no such item for Cursor instance - ERRORRRR AT Line : 1849 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:45:52] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 21:46:19.017362 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:46:19.018372 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:46:19.018372 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:46:19.018372 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:46:19.018372 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:46:24.551118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:46:25.138563 : AddStagiairetoClass_mass_for_many_session -no such item for Cursor instance - ERRORRRR AT Line : 1849 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:46:25] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 21:53:43.866134 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:53:43.866134 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:53:43.866134 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:53:43.866134 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:53:43.866134 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:53:43.974128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:53:46.081423 : AddStagiairetoClass_mass_for_many_sessionLigne : 2: Le code externe de la formation et le code de la session ne correspondent pas . +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:53:46] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 21:55:08.026008 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:55:08.026008 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:55:08.026008 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:55:08.026008 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:55:08.026008 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:55:08.067490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:55:08.762650 : AddStagiairetoClass_mass_for_many_sessionLigne : 2: Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:55:08] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 21:56:08.467024 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:56:08.467024 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:56:08.467024 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:56:08.467024 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:56:08.467024 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:56:08.514077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:56:09.166553 : AddStagiairetoClass_mass_for_many_sessionLigne : 2: Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:56:09] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 21:56:33.271561 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:56:33.271561 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:56:33.271561 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:56:33.271561 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:56:33.271561 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 21:57:16.196837 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 21:57:16.196837 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 21:57:16.196837 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 21:57:16.196837 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 21:57:16.196837 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 21:57:16.248284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:57:16.991022 : AddStagiairetoClass_mass_for_many_sessionLigne : 2: Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:57:16] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:58:28.053513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:58:28.056859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:58:28.061905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:58:28.076678 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:58:28.247139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:58:28.252495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:58:28.256923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:58:28.261930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:58:32.532253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:58:32.538429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:58:32.541429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:58:41.546765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:58:41.550466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:58:41.554461 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:41] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:58:43.026908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:58:43.029159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:43] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:43] "POST /myclass/api/get_List_metier_formation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:58:44.558288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:58:44.672738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:44] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:58:55.304217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:58:55.308472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:58:55.311992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:58:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:59:01.987269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:59:02] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:59:02.265413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:59:02] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:59:02.274705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:59:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:59:29.959358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:59:29.962678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:59:29.970845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:59:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:59:29.977934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:59:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:59:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:59:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 21:59:34.254483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 21:59:34.275620 : AddStagiairetoClass_mass_for_many_sessionLigne : 2: Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 21:59:34] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:00:17.322041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:00:17.324035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:00:17.327034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:00:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:00:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:00:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:01:27.448563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:01:27.451080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:01:27] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:01:27.458605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:01:27.465117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:01:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:01:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:01:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:01:30.996611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:01:31.019746 : AddStagiairetoClass_mass_for_many_sessionLigne : 2: Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:01:31] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:02:08.563107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:02:08.564115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:02:08.567774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:02:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:02:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:02:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:02:13.117524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:02:13] "POST /myclass/api/GetAllValideSessionPartner_List_filter_like/ 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 +INFO:root:2023-08-20 22:03:20.585789 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:03:20.586798 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:03:20.586798 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:03:20.586798 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:03:20.586798 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:03:32.600572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:03:32.603654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:03:32.607061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:03:32.609634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:03:32] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:03:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:03:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:03:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:03:37.239897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:03:37.884745 : AddStagiairetoClass_mass_for_many_sessionLigne : 2: Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:03:37] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 22:06:47.930897 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:06:47.931896 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:06:47.931896 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:06:47.931896 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:06:47.931896 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 22:07:10.358635 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:07:10.358635 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:07:10.358635 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:07:10.358635 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:07:10.358635 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:07:15.024136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:07:15.705517 : AddStagiairetoClass_mass_for_many_sessionLigne : 2: icici Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:07:15] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 22:09:00.603852 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:09:00.604855 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:09:00.604855 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:09:00.604855 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:09:00.604855 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:09:06.915633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:09:07.587172 : AddStagiairetoClass_mass_for_many_sessionLigne : 2: Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:09:07] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 22:09:34.929216 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:09:34.929216 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:09:34.929216 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:09:34.929216 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:09:34.929216 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 22:10:37.253868 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:10:37.253868 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:10:37.253868 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:10:37.253868 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:10:37.253868 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:10:37.308295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:10:39.281251 : AddStagiairetoClass_mass_for_many_session -'NoneType' object is not subscriptable - ERRORRRR AT Line : 1881 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:10:39] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 22:11:23.848710 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:11:23.848710 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:11:23.848710 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:11:23.848710 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:11:23.848710 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:11:23.890156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:11:24.450407 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 889 +INFO:root:2023-08-20 22:11:24.452407 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e27086be06fff5f79f3c76 +INFO:root:2023-08-20 22:11:24.481407 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 889 +INFO:root:2023-08-20 22:11:24.484407 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e27086be06fff5f79f3c77 +INFO:root:2023-08-20 22:11:24.517407 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 889 +INFO:root:2023-08-20 22:11:24.519407 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e27086be06fff5f79f3c75 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:11:24] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:11:24.662166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:11:24.683341 : Get_Statgaire_List_Partner_with_filter - Impossible de recuperer la liste des stagiaires, Il y a une incohérence sur la session : 64e27086be06fff5f79f3c76 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:11:24] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:11:54.264005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:11:54.269034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:11:54.272029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:11:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:11:54.282198 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:11:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:11:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:11:54.464205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:11:54.471220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:11:54.477213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:11:54.492257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:11:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:11:54.505627 : Get_Statgaire_List_Partner_with_filter - Impossible de recuperer la liste des stagiaires, Il y a une incohérence sur la session : 64e27086be06fff5f79f3c76 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:11:54] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:11:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:11:54] "POST /myclass/api/GetAllValideSessionPartner_List/ 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 +INFO:root:2023-08-20 22:13:32.428941 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:13:32.428941 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:13:32.429973 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:13:32.429973 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:13:32.429973 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 22:14:50.882260 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:14:50.883263 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:14:50.883263 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:14:50.883263 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:14:50.883263 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 22:15:08.380703 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:15:08.380703 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:15:08.380703 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:15:08.381721 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:15:08.381721 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 22:15:33.976708 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:15:33.976708 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:15:33.977709 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:15:33.977709 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:15:33.977709 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:15:34.096631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:15:34.099656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:15:34.104650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:15:34.142658 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:15:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:15:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:15:34.191646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:15:34.197638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:15:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:15:34.234207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:15:34.245245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:15:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:15:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:15:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:15:35.761412 : Get_Statgaire_List_Partner_with_filter -'NoneType' object has no attribute 'keys' - ERRORRRR AT Line : 3926 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:15:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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 +INFO:root:2023-08-20 22:16:41.488610 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:16:41.488610 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:16:41.489775 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:16:41.489775 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:16:41.489775 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:16:41.540886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:16:41.544879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:16:41.547430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:16:41.551851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:16:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:16:41.562055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:16:41.566609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:16:41.571605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:16:41.572603 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:16:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:16:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:16:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:16:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:16:41] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:16:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:16:52.810920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:16:52.813874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:16:52] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:16:52] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:17:59.147752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:17:59.155682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:17:59.158950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:17:59.161946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:17:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:17:59] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:17:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:17:59] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:18:02.682365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:18:02.686087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:18:02] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:18:02] "POST /myclass/api/getRecodedStagiaireImage_from_front/ 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 +INFO:root:2023-08-20 22:18:59.429696 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:18:59.429696 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:18:59.429696 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:18:59.430692 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:18:59.430692 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 22:21:22.082489 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:21:22.083519 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:21:22.083519 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:21:22.083519 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:21:22.083519 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 22:22:11.839353 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:22:11.839353 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:22:11.839353 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:22:11.839353 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:22:11.839353 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:22:15.483214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:22:15.487248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:22:15] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:22:15] "POST /myclass/api/GetAttendeeDetail_perSession/ 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 +INFO:root:2023-08-20 22:23:12.935337 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:23:12.935337 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:23:12.935337 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:23:12.935337 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:23:12.935337 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:23:12.970406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:23:12.973475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:23:12] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:23:12] "POST /myclass/api/getRecodedStagiaireImage_from_front/ 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 +INFO:root:2023-08-20 22:29:20.915763 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:29:20.915763 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:29:20.915763 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:29:20.915763 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:29:20.915763 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:29:20.962220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:29:20.965740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:29:20.967742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:29:20.970743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:29:20.977143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:29:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:29:20.983586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:29:20.988668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:29:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:29:20.997663 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:29:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:29:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:29:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:29:21] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:29:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:29:27.884345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:29:27.890570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:29:27] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:29:27] "POST /myclass/api/getRecodedStagiaireImage_from_front/ 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 +INFO:root:2023-08-20 22:31:55.876507 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:31:55.877032 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:31:55.877032 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:31:55.877032 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:31:55.877032 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:32:14.455481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:32:14.458645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:32:14] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:32:14] "POST /myclass/api/getRecodedStagiaireImage_from_front/ 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 +INFO:root:2023-08-20 22:38:25.496103 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:38:25.496103 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:38:25.496103 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:38:25.496103 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:38:25.496103 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:38:32.771961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:38:32.775994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:38:32] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:38:32] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:25.116588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:25.119056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:25.120069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:25.556485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:25.557729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:25.938789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:25.941788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:25.945816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:25.949676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:25.951729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:25.951729 : La session de connexion n'est pas valide +INFO:root:2023-08-20 22:39:25.956562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:25.957569 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:25.960220 : La session de connexion n'est pas valide +INFO:root:2023-08-20 22:39:25.962237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:25.967932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:25.971457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:25.976694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:25.981884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:25.982882 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:25.985331 : La session de connexion n'est pas valide +INFO:root:2023-08-20 22:39:25.986562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:25.988697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:25.993292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:25.996663 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:25.998667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:26.002664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:26.004660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:26.009978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:26.013128 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:26.017203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:26.018207 : La session de connexion n'est pas valide +INFO:root:2023-08-20 22:39:26.020207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:26.020207 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:26.027228 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:33.009954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:33] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:33.175723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:33.179189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:33.183791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:33.185790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:33.195045 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:33.244583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:36.512746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:36.515264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:36.517493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:36.520739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:36] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:41.382361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:41.384360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:41.386359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:41] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:41] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:41] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:41.650556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:41.652394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:41] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:41.967000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:41.971182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:41.973172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:41.977846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:41.979136 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:41.982264 : La session de connexion n'est pas valide +INFO:root:2023-08-20 22:39:41.983440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:41.987065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:41.989549 : La session de connexion n'est pas valide +INFO:root:2023-08-20 22:39:41.991030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:41.995093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:41.999248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:42.003515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:42.004932 : La session de connexion n'est pas valide +INFO:root:2023-08-20 22:39:42.004932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:42.009100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:42.011176 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:42.014941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:42.017024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:42.021414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:42.023405 : La session de connexion n'est pas valide +INFO:root:2023-08-20 22:39:42.026740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:42.030303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:42.032364 : La session de connexion n'est pas valide +INFO:root:2023-08-20 22:39:42.035767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:42.038836 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:42.041184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:42.042446 : La session de connexion n'est pas valide +INFO:root:2023-08-20 22:39:42.047004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:42.052623 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:46.186793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:46] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:46.336113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:46.339105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:46.343531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:46.346537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:46.356864 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:46.402533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:46] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:39:58.281883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:58.284822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:39:58.288225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:39:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:40:13.571361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:40:14.108088 : Add_Update_SessionFormation_mass_for_many_class Le champs 'code_exyer' de ligne 2 ne correspond pas à une formation valide. +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:40:14] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ 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 +INFO:root:2023-08-20 22:41:21.751513 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:41:21.751513 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:41:21.751513 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:41:21.752516 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:41:21.752516 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:41:21.792841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:41:21.795856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:41:21.799855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:41:21.801858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:41:21.804887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:41:21.809487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:41:21.822870 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:21] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:41:28.462700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:41:28.466432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:28] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:28] "POST /myclass/api/get_List_metier_formation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:41:29.035764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:41:29.096752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:29] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:41:36.267112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:41:36.270279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:36] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:36] "POST /myclass/api/get_List_metier_formation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:41:45.850081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:41:46.085519 : external_code = MYSY_Test_AP ==> PRATICIEN EN AROMATHERAPIE INTEGRATIVE +INFO:root:2023-08-20 22:41:46.701171 : La formation indexée (champ title) =64a58d3f7420e5ba1bd2f655 +INFO:root:2023-08-20 22:41:46.701171 : 1 ont été indexes => title +INFO:root:2023-08-20 22:41:47.466923 : ela_index_class_key_word 3 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_AP +INFO:root:2023-08-20 22:41:47.568169 : external_code = MYSY_Test_OP ==> PRATICIEN EN OLFACTOTHERAPIE +INFO:root:2023-08-20 22:41:47.852144 : La formation indexée (champ title) =64a58d447420e5ba1bd2f683 +INFO:root:2023-08-20 22:41:47.853155 : 1 ont été indexes => title +INFO:root:2023-08-20 22:41:48.109616 : ela_index_class_key_word 2 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_OP +INFO:root:2023-08-20 22:41:48.223235 : external_code = MYSY_Test_AR ==> PRATICIEN EN AROMATHERAPIE INTEGRATIVE +INFO:root:2023-08-20 22:41:48.532247 : La formation indexée (champ title) =64a58d497420e5ba1bd2f6a9 +INFO:root:2023-08-20 22:41:48.532247 : 1 ont été indexes => title +INFO:root:2023-08-20 22:41:48.787215 : ela_index_class_key_word 3 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_AR +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:48] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:41:54.421043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:41:54.539908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:41:54] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:42:00.477402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:42:00.480145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:42:00.482368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:42:04.993772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:05] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:42:05.361455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:42:05.364248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:05] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:42:18.863257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:42:18.865710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:42:18.869751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:18] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:42:18.874668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:42:24.485587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:42:24.531078 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 889 +INFO:root:2023-08-20 22:42:24.533091 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e27a9d9835fb699bc20521 +INFO:root:2023-08-20 22:42:24.574094 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 889 +INFO:root:2023-08-20 22:42:24.580069 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e27a9d9835fb699bc20522 +INFO:root:2023-08-20 22:42:24.616592 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 889 +INFO:root:2023-08-20 22:42:24.619045 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e27a9d9835fb699bc20520 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:24] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:42:24.757868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:24] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:42:31.432760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:42:31.436910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:31] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:31] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:42:44.971382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:42:44.974726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:44] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:42:44] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:43:13.093937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:43:13.109670 : UpdateStagiairetoClass - Aucune session de formation pour {'code_session': 'OP20', 'class_internal_url': 'praticien-en-aromatherapie-integrative-45d', 'valide': '1'} +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:43:13] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:43:33.069220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:43:33.073271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:43:33] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:43:33] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:43:36.571419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:43:36.574222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:43:36] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:43:36] "POST /myclass/api/GetAttendeeDetail_perSession/ 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 +INFO:root:2023-08-20 22:46:09.830972 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:46:09.830972 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:46:09.830972 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:46:09.830972 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:46:09.830972 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 22:46:38.355433 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:46:38.355433 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:46:38.355433 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:46:38.355433 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:46:38.355433 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:48:41.093252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:48:41.095291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:48:41.098343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:48:41.102703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:48:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:48:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:48:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:48:41.652337 : Get_Statgaire_List_Partner_with_filter -'OP20' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 3886 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:48:41] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:48:50.976536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:48:50.978938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:48:50.982697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:48:50.986416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:48:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:48:50.999358 : Get_Statgaire_List_Partner_with_filter -'OP20' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 3886 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:48:50] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:48:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:48:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:49:25.165933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:25.170123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:25.174726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:25.178739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:49:25.193492 : Get_Statgaire_List_Partner_with_filter -'OP20' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 3886 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:25] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:49:28.969967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:28.973980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:28.977990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:49:28.987087 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:49:29.159015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:29.162791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:29.165824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:29.169818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:49:29.191120 : Get_Statgaire_List_Partner_with_filter -'OP20' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 3886 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:49:45.146565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:45.150170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:45.152214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:45] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:49:47.298770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:47.301768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:47.304767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:49:47.307772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:49:47.323771 : Get_Statgaire_List_Partner_with_filter -'OP20' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 3886 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:47] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:49:47] "POST /myclass/api/GetAllValideSessionPartner_List/ 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 +INFO:root:2023-08-20 22:52:08.013048 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 22:52:08.014049 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 22:52:08.014049 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 22:52:08.014049 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 22:52:08.014049 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 22:52:49.491428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:52:49.653609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:52:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:52:49.701646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:52:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:52:49.710127 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:52:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:52:49.859030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:52:49.864247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:52:49.868247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:52:49.875246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:52:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:52:49] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:52:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:52:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:54:45.271546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:54:45.275569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:54:45.280048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:54:45.289267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:54:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:54:45] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:54:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:54:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:54:46.579054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:54:46.584350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:54:46] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:54:46] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:57:36.668773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:57:36.672284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:57:36.676277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:57:36.681990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:36] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:57:40.372365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:57:40.376454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:57:40.380448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:57:40.389462 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:57:40.537082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:57:40.541601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:57:40.547678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:57:40.551120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:57:45.389912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:57:45.392906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:45] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:57:45] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:58:42.564773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:58:42.569189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:58:42.572566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:58:42.577679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:58:42] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:58:42] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:58:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:58:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:58:55.793984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:58:55.798674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:58:55.802688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:58:55.805695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:58:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:58:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:58:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:58:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:58:59.768418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:58:59.772565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:58:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:58:59.780142 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:58:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:58:59.784138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:58:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:58:59.974065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:58:59.988465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:58:59.994085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:58:59.998779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:58:59] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:59:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:59:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:59:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 22:59:06.745003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 22:59:06.747121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:59:06] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 22:59:06] "POST /myclass/api/GetAttendeeDetail_perSession/ 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 +INFO:root:2023-08-20 23:03:16.760224 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 23:03:16.760224 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 23:03:16.761224 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 23:03:16.761224 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 23:03:16.761224 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 23:03:35.585313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:03:35.588790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:03:35.591355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:03:35.597022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:03:42.953403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:03:42.956404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:03:42.960640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:42] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:42] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:03:42.972180 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:42] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:03:43.122726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:03:43.130518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:03:43.134731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:03:43.141734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:43] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:43] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:03:50.059728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:03:50.063238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:50] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:50] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:03:58.517893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:03:58.523906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:58] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:03:58] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:05:25.086690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:05:25.089214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:05:25.093846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:05:25.097885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:25] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:05:28.681356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:05:28.684455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:05:28.688649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:05:28.695525 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:05:28.835930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:05:28.836923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:05:28.840609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:05:28.845931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:05:32.517704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:05:32.520706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:32] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:05:32] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:06:35.882604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:06:35.886605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:06:35.891939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:06:35.896590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:06:39.516739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:06:39.521246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:06:39.524249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:06:39.535973 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:06:39.693032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:06:39.695972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:06:39.698642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:06:39.705539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:06:44.199236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:06:44.201590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:44] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:44] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:06:55.933622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:06:56.617060 : UpdateStagiairetoClass - Aucune session de formation pour {'code_session': '64e27a9d9835fb699bc2051d', 'class_internal_url': 'praticien-en-aromatherapie-integrative-45d', 'valide': '1'} +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:06:56] "POST /myclass/api/UpdateStagiairetoClass/ 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 +INFO:root:2023-08-20 23:09:31.340110 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 23:09:31.341118 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 23:09:31.341118 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 23:09:31.341118 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 23:09:31.341118 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 23:11:39.657168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:11:39.664224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:11:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:11:39.671368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:11:39.679008 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:11:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:11:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:11:39.847792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:11:39.852798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:11:39.856786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:11:39.861033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:11:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:11:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:11:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:11:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:11:50.401830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:11:50.407103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:11:50] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:11:50] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:12:04.089739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:12:04.811387 : UpdateStagiairetoClass - Aucune session de formation pour {'_id': ObjectId('64e27a9d9835fb699bc2051e'), 'class_internal_url': 'praticien-en-aromatherapie-integrative-37e', 'valide': '1'} +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:12:04] "POST /myclass/api/UpdateStagiairetoClass/ 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 +INFO:root:2023-08-20 23:12:53.455180 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 23:12:53.455180 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 23:12:53.455180 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 23:12:53.455180 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 23:12:53.455180 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 23:12:53.881953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:12:53.904945 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:12:53] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:12:55.095929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:12:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:12:56.069227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:12:56] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:13:07.579751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:13:07.584764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:13:07] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:13:07] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:13:30.574799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:13:30.580422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:13:30.584579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:13:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:13:30.594268 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:13:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:13:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:13:30.781200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:13:30.785496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:13:30.789788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:13:30.795813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:13:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:13:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:13:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:13:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:13:35.961717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:13:35.965718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:13:35] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:13:35] "POST /myclass/api/getRecodedStagiaireImage_from_front/ 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 +INFO:root:2023-08-20 23:24:02.747118 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 23:24:02.748121 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 23:24:02.748121 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 23:24:02.748121 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 23:24:02.748121 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 23:24:31.571998 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 23:24:31.571998 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 23:24:31.571998 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 23:24:31.571998 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 23:24:31.571998 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 23:27:50.267812 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 23:27:50.267812 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 23:27:50.267812 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 23:27:50.267812 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 23:27:50.267812 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 23:28:07.372233 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 23:28:07.372233 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 23:28:07.372233 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 23:28:07.372233 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 23:28:07.372233 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 23:28:41.802402 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 23:28:41.802402 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 23:28:41.802402 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 23:28:41.803406 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 23:28:41.803406 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 23:30:04.574544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:30:04.579748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:30:04.584131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:30:04.594266 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:30:04.759749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:30:04.764254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:30:04.768882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:30:04.773987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:04] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:30:09.863742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:30:09.868227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:09] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:09] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:30:40.889817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:30:40.893258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:30:40.898546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:30:40.907789 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:30:41.053131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:30:41.057133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:30:41.062128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:30:41.067129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:41] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:30:47.285380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:30:47.289000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:47] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:30:47] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:31:09.237987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:31:09.241989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:31:09.246054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:31:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:31:09.255274 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:31:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:31:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:31:09.414256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:31:09.416756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:31:09.421315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:31:09.425988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:31:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:31:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:31:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:31:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:31:17.942831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:31:18.739896 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 902 +INFO:root:2023-08-20 23:31:18.741394 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e27a9d9835fb699bc20521 +INFO:root:2023-08-20 23:31:18.780010 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 902 +INFO:root:2023-08-20 23:31:18.782013 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e27a9d9835fb699bc20522 +INFO:root:2023-08-20 23:31:18.815791 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 902 +INFO:root:2023-08-20 23:31:18.817802 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e27a9d9835fb699bc20520 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:31:18] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:31:19.054685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:31:19] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:31:38.962309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:31:39.015582 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 902 +INFO:root:2023-08-20 23:31:39.017857 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e27a9d9835fb699bc20521 +INFO:root:2023-08-20 23:31:39.059781 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 902 +INFO:root:2023-08-20 23:31:39.061775 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e27a9d9835fb699bc20522 +INFO:root:2023-08-20 23:31:39.100883 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 902 +INFO:root:2023-08-20 23:31:39.102869 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e27a9d9835fb699bc20520 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:31:39] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:31:39.345963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:31:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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 +INFO:root:2023-08-20 23:39:07.209863 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 23:39:07.210861 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 23:39:07.210861 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 23:39:07.210861 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 23:39:07.210861 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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 +INFO:root:2023-08-20 23:39:32.717153 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 23:39:32.718384 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 23:39:32.718384 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 23:39:32.718384 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 23:39:32.718384 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 23:40:08.495623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:40:08.498636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:40:08.502826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:40:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:40:08.514997 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:40:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:40:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:40:08.667619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:40:08.671636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:40:08.677249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:40:08] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:40:08.682234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:40:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:40:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:40:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:40:13.295573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:40:13.941410 : AddStagiairetoClass -'dict' object has no attribute 'inserted_id' - ERRORRRR AT Line : 248 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:40:13] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ 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 +INFO:root:2023-08-20 23:41:01.391352 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 23:41:01.392139 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 23:41:01.392139 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 23:41:01.392139 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 23:41:01.392139 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 23:41:02.304151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:41:02.939214 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:41:02.942256 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e27a9d9835fb699bc20521 +INFO:root:2023-08-20 23:41:02.975319 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:41:02.979322 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e27a9d9835fb699bc20522 +INFO:root:2023-08-20 23:41:03.014307 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:41:03.017311 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e27a9d9835fb699bc20520 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:41:03] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:41:03.167695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:41:03] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:41:10.588820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:41:10.642065 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:41:10.644580 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e27a9d9835fb699bc20521 +INFO:root:2023-08-20 23:41:10.686301 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:41:10.689299 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e27a9d9835fb699bc20522 +INFO:root:2023-08-20 23:41:10.733611 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:41:10.738610 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e27a9d9835fb699bc20520 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:41:10] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:41:11.003683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:41:11] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:41:19.290958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:41:19.342334 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:41:19.345038 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e27a9d9835fb699bc20521 +INFO:root:2023-08-20 23:41:19.386734 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:41:19.389735 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e27a9d9835fb699bc20522 +INFO:root:2023-08-20 23:41:19.430463 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:41:19.433483 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e27a9d9835fb699bc20520 +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:41:19] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:41:19.666447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:41:19] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:41:27.196795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:41:27.201306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:41:27] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:41:27] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:42:01.301243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:42:01.329487 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-20 23:42:01.618564 : UpdateStagiairetoClass Le compte LMS du participant a été correctement mis à jour : local_ret_val['_id'] = 64e2886e06df10b2089157e1 +INFO:root:2023-08-20 23:42:01.671625 : UpdateStagiairetoClass TOP, l'inscription dans le LMS a ete correctement faite +INFO:root:2023-08-20 23:42:01.672625 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:42:01] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:42:02.036525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:42:02] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:42:02.484565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:42:02] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:42:26.902383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:42:26.906747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:42:26] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:42:26] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:42:34.636148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:42:34.639275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:42:34] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:42:34] "POST /myclass/api/GetAttendeeDetail_perSession/ 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 +INFO:root:2023-08-20 23:43:59.046802 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-20 23:43:59.046802 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-20 23:43:59.047801 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-20 23:43:59.047801 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-20 23:43:59.047801 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-20 23:43:59.119145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:43:59.122161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:43:59.127565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:43:59.132157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:43:59.136414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:43:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:43:59.146456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:43:59.150914 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2023-08-20 23:43:59.159177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:43:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:43:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:43:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:43:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:43:59] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:43:59] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:44:02.830675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:44:02.833683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:44:02] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:44:02] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:44:11.071891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:44:11.076454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:44:11] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:44:11] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:44:27.513730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:44:27.528151 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:44:27] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:44:28.010383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:44:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:44:28.490692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:44:28] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:44:32.528021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:44:32.533023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:44:32] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:44:32] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:44:37.680238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:44:37.685251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:44:37] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:44:37] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:45:56.488760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:45:56.492214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:45:56.495213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:45:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:45:56.525567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:45:56] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:45:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:45:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:04.555744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:04.559289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:04.562307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:04] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:04] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:04] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.136258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.137250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.482649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.486225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.489223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.490219 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.494218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.499496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.500520 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.505636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.506640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.511834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.515920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.515920 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.520723 : La session de connexion n'est pas valide +INFO:root:2023-08-20 23:46:05.522235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.525840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.530365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.533678 : La session de connexion n'est pas valide +INFO:root:2023-08-20 23:46:05.536699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.539699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.539699 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.545175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.548730 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.552486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.555504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.560499 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.570433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.574949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.577946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:05.579947 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:05.583949 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:09.377246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:09] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:09.576071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:09.581067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:09.586167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:09.592086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:09.600949 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:09.663325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:09] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:13.836654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:13.849823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:13.853471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:13] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:24.176925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:24.282770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:29.688273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:29.691788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:29] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:29] "POST /myclass/api/get_List_metier_formation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:37.543334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:37.795471 : external_code = MYSY_Test_AP ==> PRATICIEN EN AROMATHERAPIE INTEGRATIVE +INFO:root:2023-08-20 23:46:38.526328 : La formation indexée (champ title) =64a58d3f7420e5ba1bd2f655 +INFO:root:2023-08-20 23:46:38.526328 : 1 ont été indexes => title +INFO:root:2023-08-20 23:46:39.319025 : ela_index_class_key_word 3 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_AP +INFO:root:2023-08-20 23:46:39.429557 : external_code = MYSY_Test_OP ==> PRATICIEN EN OLFACTOTHERAPIE +INFO:root:2023-08-20 23:46:39.760155 : La formation indexée (champ title) =64a58d447420e5ba1bd2f683 +INFO:root:2023-08-20 23:46:39.761155 : 1 ont été indexes => title +INFO:root:2023-08-20 23:46:40.018772 : ela_index_class_key_word 2 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_OP +INFO:root:2023-08-20 23:46:40.128228 : external_code = MYSY_Test_AR ==> PRATICIEN EN AROMATHERAPIE INTEGRATIVE +INFO:root:2023-08-20 23:46:40.432409 : La formation indexée (champ title) =64a58d497420e5ba1bd2f6a9 +INFO:root:2023-08-20 23:46:40.432409 : 1 ont été indexes => title +INFO:root:2023-08-20 23:46:40.725772 : ela_index_class_key_word 3 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_AR +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:40] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:43.721846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:43.911254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:43] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:46:45.775593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:45.779776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:46:45.782788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:45] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:46:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:47:19.270855 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:47:19.273881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:47:19.278866 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:47:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:47:19] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:48:12.991110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:48:12.994411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:48:12.998675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:48:13.005160 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:48:13.195160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:48:13.197988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:48:13.203014 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:13] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:48:15.610544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:48:15.614670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:48:15.615687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:48:17.986083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:48:18.077408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:18] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:48:19.164936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:48:19.168933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:48:19.170939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:19] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:48:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:49:01.473336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:49:01] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:49:01.895068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:49:01] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:49:01.918707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:49:01] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:49:06.247986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:49:06.251403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:49:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:49:06.269675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:49:06.275555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:49:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:49:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:49:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:49:14.826116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:49:14.851188 : AddStagiairetoClass_mass_for_many_sessionLigne : 2: Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:49:14] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:50:19.030999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:50:19.081078 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:50:19.083071 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e28a4dee9344ff9323ade9 +INFO:root:2023-08-20 23:50:19.121925 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:50:19.124928 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e28a4dee9344ff9323adea +INFO:root:2023-08-20 23:50:19.135104 : AddStagiairetoClass_mass_for_many_sessionLigne : 4: Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:50:19] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:50:54.424901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:50:54.427901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:50:54] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:50:54] "POST /myclass/api/get_List_metier_formation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:50:55.755297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:50:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:50:55.878755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:50:55] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:51:01.795399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:51:01.799010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:51:01.802034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:51:01.812564 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:51:01.944471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:01] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:51:06.641234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:51:06.644757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:51:06.648778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:51:11.684875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:51:11.688084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:11] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:11] "POST /myclass/api/get_List_metier_formation/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:51:13.027162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:51:13.187742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:13] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:51:17.723378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:51:17.726671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:51:17.731675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:51:39.207119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:51:39.209211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:51:39.214149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:39] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:51:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:53:01.271772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:53:01.274776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:53:01.278771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:53:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:53:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:53:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:53:29.632713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:53:29.635594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:53:29.639095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:53:29.643321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:53:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:53:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:53:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:53:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:53:36.907462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:53:36.956888 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:53:36.958920 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e28a4dee9344ff9323ade9 +INFO:root:2023-08-20 23:53:36.995710 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:53:36.997362 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e28a4dee9344ff9323adea +INFO:root:2023-08-20 23:53:37.037745 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-20 23:53:37.039742 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e28a4dee9344ff9323adea +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:53:37] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:53:37.364697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:53:37] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:53:40.776875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:53:40.779872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:53:40] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:53:40] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:53:49.777492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:53:49] "POST /myclass/api/Update_Stagiaire_Image/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:54:00.910195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:54:00.934866 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-20 23:54:00.934866 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:00] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:54:01.392952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:01] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:54:01.944901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:01] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:54:07.825497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:54:07.829997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:07] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:07] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:54:14.434400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:54:14.436913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:14] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:14] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:54:20.230149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:54:20.235176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:54:20.240187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:54:20.249069 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:54:20.395639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:54:20.398767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:54:20.404793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:54:20.409438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:20] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:20] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:54:25.009692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:54:25.013259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:25] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:25] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:54:36.886569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:54:36.892105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:36] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:54:36] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-20 23:56:26.245467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:56:26.254054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:56:26.259054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-20 23:56:26.263057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:56:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:56:26] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:56:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:56:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - diff --git a/Session_Formation.py b/Session_Formation.py index 702add3..e040cc6 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -108,6 +108,15 @@ def Add_Update_SessionFormation(diction): return False, "Impossible de recuperer les données du partenaire " + """ + update du 20/08/23 : + on ajouter un champs 'owner_recid' a la session. + en effet 2 partenaire peuvent avoir exactement la meme formation et les memes code session. + il faut arriver à les distinguer tout de meme + """ + mydata['partner_owner_recid'] = str(partner_recid) + + if ("date_debut" in diction.keys()): mydata['date_debut'] = diction['date_debut'] @@ -421,7 +430,7 @@ def GetSessionFormation(diction): coll_session = MYSY_GV.dbname['session_formation'] - myquery = [{'$match':{'code_session':code_session, 'class_internal_url':class_internal_url}}, + myquery = [{'$match':{'code_session':code_session, 'class_internal_url':class_internal_url, 'partner_owner_recid':str(partner_recid)}}, {'$lookup': { 'from': 'myclass', @@ -466,7 +475,7 @@ d'une formation données ET les sessions "on demande" def GetActiveSessionFormation_List(diction): try: - field_list = ['class_internal_url'] + field_list = ['token', 'class_internal_url'] incom_keys = diction.keys() for val in incom_keys: if val not in field_list: @@ -477,13 +486,18 @@ def GetActiveSessionFormation_List(diction): """ Verification de la liste des champs obligatoires """ - field_list_obligatoire = [ 'class_internal_url', ] + field_list_obligatoire = [ 'token', 'class_internal_url', ] 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 recuperer la liste des session de formation" + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + # Recuperation du recid du partner mydata = {} @@ -495,6 +509,7 @@ def GetActiveSessionFormation_List(diction): coll_session = MYSY_GV.dbname['session_formation'] myquery = {} myquery['class_internal_url'] = class_internal_url + myquery['partner_owner_recid'] = str(my_partner['recid']) myquery['valide'] = "1" myquery['session_status'] = "true" @@ -539,7 +554,7 @@ Qu'elles soient cloturées ou pas.""" def GetAllValideSessionFormation_List(diction): try: - field_list = ['class_internal_url'] + field_list = ['token', 'class_internal_url'] incom_keys = diction.keys() for val in incom_keys: if val not in field_list: @@ -550,7 +565,7 @@ def GetAllValideSessionFormation_List(diction): """ Verification de la liste des champs obligatoires """ - field_list_obligatoire = ['class_internal_url', ] + field_list_obligatoire = ['token', 'class_internal_url', ] for val in field_list_obligatoire: if val not in diction: mycommon.myprint( @@ -560,6 +575,10 @@ def GetAllValideSessionFormation_List(diction): # Recuperation du recid du partner mydata = {} + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + class_internal_url = "" if ("class_internal_url" in diction.keys()): if diction['class_internal_url']: @@ -568,6 +587,7 @@ def GetAllValideSessionFormation_List(diction): coll_session = MYSY_GV.dbname['session_formation'] myquery = {} myquery['class_internal_url'] = class_internal_url + myquery['partner_owner_recid'] = str(my_partner['recid']) myquery['valide'] = "1" #print(" ##### myquery = "+str(myquery)) @@ -627,7 +647,7 @@ def GetAllValideSessionPartner_List(diction): filt_class_partner_recid = {'partner_owner_recid': str(my_partner['recid'])} - query = [ + query = [{'$match': {'partner_owner_recid':str(my_partner['recid'])}}, {'$lookup': { 'from': 'myclass', @@ -777,7 +797,7 @@ def GetAllValideSessionPartner_List_filter_like(diction): coll_session = MYSY_GV.dbname['session_formation'] - query = [{'$match':filt_code_session }, + query = [ {'$match':{ '$and' : [ filt_code_session,{'partner_owner_recid':str(my_partner['recid'])}] }} , {'$lookup': { 'from': 'myclass', @@ -1262,9 +1282,21 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None): diction_for_session_id['code_postal'] = str(mydata['code_postal'] ) diction_for_session_id['adresse'] = str(mydata['adresse']) + """ + Verifier si la session existe deja en base, si c'est le cas recuperer le '_id' + la clé pour verifier l'existance d'une session est : + - code_session + - class_internal_url + - partner_owner_recid + """ + existing_session = MYSY_GV.dbname['session_formation'].find_one( + {'code_session': str(local_code_session), 'class_internal_url': str(class_internal_url), + 'partner_owner_recid': str(partner_recid), 'valide': '1'}) - mydata['formation_session_id'] = str(mydata['code_session']) + if (existing_session is not None): + if ('_id' in existing_session.keys()): + mydata['session_id'] = existing_session['_id'] clean_dict = {k: mydata[k] for k in mydata if (str(mydata[k]) != "nan")} @@ -1497,9 +1529,9 @@ def Add_Update_SessionFormation_mass_for_many_class(file=None, Folder=None, dict if( count_class != 1 ): mycommon.myprint( - str(inspect.stack()[0][3]) + " Le champs 'code_exyer' de ligne " + str( + str(inspect.stack()[0][3]) + " Le champs 'code_externe' de ligne " + str( n + 2) + " ne correspond pas à une formation valide.") - return False, " Le champs 'code_exyer' de ligne " + str( + return False, " Le champs 'code_externe' de ligne " + str( n + 2) + " ne correspond pas à une formation valide." class_from_external_code = MYSY_GV.dbname['myclass'].find({'external_code':str(external_code), 'valide':'1', @@ -1519,8 +1551,8 @@ def Add_Update_SessionFormation_mass_for_many_class(file=None, Folder=None, dict Ceci est lié au fait que c'est une formation qui est sur la plateforme LMS """ if ("lms_class_code" in class_from_external_code[0].keys()): - if (str(class_from_external_code[0]['code_session'].values[n])): - formation_data_lms_class_code = str(class_from_external_code[0]['code_session'].values[n]) + if ( class_from_external_code[0]['lms_class_code']): + formation_data_lms_class_code = str(class_from_external_code[0]['lms_class_code']) mydata['lms_class_code'] = formation_data_lms_class_code @@ -1690,7 +1722,20 @@ def Add_Update_SessionFormation_mass_for_many_class(file=None, Folder=None, dict diction_for_session_id['code_postal'] = str(mydata['code_postal']) diction_for_session_id['adresse'] = str(mydata['adresse']) - mydata['formation_session_id'] = str(mydata['code_session']) + """ + Verifier si la session existe deja en base, si c'est le cas recuperer le '_id' + la clé pour verifier l'existance d'une session est : + - code_session + - class_internal_url + - partner_owner_recid + """ + + existing_session = MYSY_GV.dbname['session_formation'].find_one({'code_session':str(local_code_session), 'class_internal_url':str(class_internal_url), + 'partner_owner_recid':str(partner_recid), 'valide':'1'}) + + if( existing_session is not None): + if( '_id' in existing_session.keys()): + mydata['session_id'] = existing_session['_id'] clean_dict = {k: mydata[k] for k in mydata if (str(mydata[k]) != "nan")} diff --git a/prj_common.py b/prj_common.py index 0470fe9..ac2a386 100644 --- a/prj_common.py +++ b/prj_common.py @@ -2901,7 +2901,7 @@ def GetAttendeeDetail_perSession(diction): {'$expr': {'$and': [ - {'$eq': ["$code_session", "$$session_id"]}, + {'$eq': ['$_id', { '$toObjectId': '$$session_id' }]}, {'$eq': ["$class_internal_url", "$$class_internal_url"]}, {'$eq': ["$valide", "1"]} ] @@ -2927,7 +2927,7 @@ def GetAttendeeDetail_perSession(diction): for local_Insc_retval in MYSY_GV.dbname['inscription'].aggregate(pipe_qry) : - print(" ### local_Insc_retval == ", local_Insc_retval) + print(" ### local_Insc_retval laa== ", local_Insc_retval) if( local_Insc_retval is None): myprint(str(inspect.stack()[0][3]) + " - Impossible de recuperer le recid du partenaire (2)") @@ -2939,6 +2939,10 @@ def GetAttendeeDetail_perSession(diction): if ("session_id" in local_Insc_retval.keys()): my_retrun_dict['session_id'] = local_Insc_retval['session_id'] + + if ("code_session" in local_Insc_retval['inscription_collectoin'][0].keys()): + my_retrun_dict['code_session'] = str(local_Insc_retval['inscription_collectoin'][0]['code_session']) + if ("date_debut" in local_Insc_retval['inscription_collectoin'][0].keys()): my_retrun_dict['date_du'] = str(local_Insc_retval['inscription_collectoin'][0]['date_debut'])[0:10] @@ -3006,8 +3010,8 @@ def GetAttendeeDetail_perSession(diction): my_retrun_dict['status'] = local_status local_price = "" - if ("price" in local_Insc_retval['inscription_collectoin'][0].keys()): - local_price = local_Insc_retval['inscription_collectoin'][0]['price'] + if ("price" in local_Insc_retval.keys()): + local_price = local_Insc_retval['price'] my_retrun_dict['price'] = local_price local_inscription_validation_date = "" @@ -3034,8 +3038,7 @@ def GetAttendeeDetail_perSession(diction): client_rattachement_id = "" client_rattachement_nom = "" if ("client_rattachement_id" in local_Insc_retval.keys()): - if( local_Insc_retval['client_rattachement_id']): - + if( local_Insc_retval['client_rattachement_id'] and str(local_Insc_retval['client_rattachement_id']) != 'undefined' ): local_client_retval_data = MYSY_GV.dbname['partner_client'].find_one({'_id': ObjectId(str(local_Insc_retval['client_rattachement_id'])), 'valide': '1', 'locked': '0'}, {'_id':1, 'nom':1})