From ae9218fddf7e4724d2f36d84f495f3248364d62d Mon Sep 17 00:00:00 2001 From: cherif Date: Fri, 7 Jul 2023 16:13:04 +0200 Subject: [PATCH] 07/07/23 - 16h --- .idea/workspace.xml | 27 +- Attestation_Certificat.py | 11 +- Inscription_mgt.py | 74 +- Log/log_file.log | 2410 +++++++++++++++++++++++++++++ Session_Formation.py | 18 + class_mgt.py | 7 + data_indexees.csv | 4 - ela_output_test_file_pandas_2.txt | 4 - ela_user_account.py | 48 +- email_mgt.py | 5 + emargement.py | 17 + partners.py | 2 +- prj_common.py | 6 + 13 files changed, 2596 insertions(+), 37 deletions(-) delete mode 100644 data_indexees.csv delete mode 100644 ela_output_test_file_pandas_2.txt diff --git a/.idea/workspace.xml b/.idea/workspace.xml index be4488b..6729783 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,12 +1,20 @@ - + + + - - + + + + + + + + @@ -358,7 +373,6 @@ - @@ -383,6 +397,7 @@ - \ No newline at end of file diff --git a/Attestation_Certificat.py b/Attestation_Certificat.py index 7de51a2..a738d7c 100644 --- a/Attestation_Certificat.py +++ b/Attestation_Certificat.py @@ -47,6 +47,12 @@ def GetPartnerAttestation_Certificat(diction): if diction['token']: mytoken = diction['token'] + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", mytoken) + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" + + partner_recid = mycommon.get_parnter_recid_from_token(mytoken) if (partner_recid is False): mycommon.myprint(str(inspect.stack()[0][3]) + " Impossible de recuperer la liste des attestations ") @@ -93,7 +99,10 @@ def GetSpecificPartnerAttestation_Certificat(diction): if diction['token']: mytoken = diction['token'] - + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", mytoken) + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" partner_recid = mycommon.get_parnter_recid_from_token(mytoken) if (partner_recid is False): diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 3838397..f220ce3 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -270,6 +270,12 @@ def UpdateStagiairetoClass(diction): mytoken = str(diction['token']).strip() #query_key['token'] = diction['token'] + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", mytoken) + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" + + myemail = "" if ("email" in diction.keys()): if diction['email']: @@ -634,6 +640,12 @@ def GetAllClassStagiaire(diction): if diction['token']: mytoken = diction['token'] + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", mytoken) + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" + + partner_recid = mycommon.get_parnter_recid_from_token(mytoken) if (partner_recid is False): mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de recuperer la liste des stagiaires, ") @@ -668,7 +680,7 @@ def GetAllClassStagiaire(diction): RetObject = [] val_tmp = 1 - #print(" #### myquery = "+str(myquery)) + print(" #### myquery 01= "+str(myquery)) for retval in coll_session.find(myquery): user = retval @@ -708,6 +720,11 @@ def SendInscriptionConfirmation(diction): if diction['token']: mytoken = diction['token'] + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", mytoken) + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" + partner_recid = mycommon.get_parnter_recid_from_token(mytoken) if (partner_recid is False): mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de recuperer le recid du partenaire") @@ -1383,7 +1400,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'] + field_list = ['token','session_id', 'class_internal_url'] incom_keys = diction.keys() for val in incom_keys: if val not in field_list: @@ -1394,7 +1411,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'] + field_list_obligatoire = ['token', 'session_id', 'class_internal_url'] for val in field_list_obligatoire: if val not in diction: @@ -1406,11 +1423,33 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): if diction['token']: my_token = diction['token'] + # 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'] + class_internal_url = "" + if ("class_internal_url" in diction.keys()): + if diction['class_internal_url']: + class_internal_url = diction['class_internal_url'] + + + # 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'}) + + # logging.info(" TMP = "+str(tmp)) + if (tmp_count <= 0): + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(class_internal_url) + " : ' Cette formation n'est pas valide ") + return False, " Cette formation n'est pas valide " + + + if(len(str(session_id).strip()) <= 0 ): mycommon.myprint( str(inspect.stack()[0][3]) + " La session de formation est vide : Impossible d'importer la liste des participants ") @@ -1465,7 +1504,7 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): 3]) + " : Le champ '" + val + "' n'est pas présent dans le fichier. Il est obligatoire") return False, " Le champ '" + val + "' n'est pas présent dans le fichier. Il est obligatoire " - + """ # Recuperation des info de la session. session_data = MYSY_GV.dbname['session_formation'].find_one({'formation_session_id':str(session_id)}) if( session_data is None ): @@ -1475,7 +1514,7 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): return False, "la session de formation n'existe pas. Impossible d'importer la liste des participants" #print(" #### session_data = ",session_data) - + """ x = range(0, total_rows) for n in x: mydata = {} @@ -1511,7 +1550,7 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): if( str(df['status'].values[n]).strip() == "1"): mydata['inscription_validation_date'] = str(datetime.now().strftime("%d/%m/%Y %H:%M:%S")) - mydata['class_internal_url'] = str(session_data['class_internal_url']) + mydata['class_internal_url'] = str(class_internal_url) local_price = str(df['prix'].values[n]).strip() @@ -1926,6 +1965,12 @@ def SendTrainingEvaluationEmail(diction): if diction['token']: my_token = diction['token'] + # 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" + + # Recuperation du recid du partenaire partner_recid = mycommon.get_parnter_recid_from_token(str(my_token)) if partner_recid is False: @@ -2065,6 +2110,12 @@ def SendAttendeeCertification(diction): if diction['token']: my_token = diction['token'] + # 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" + + # Recuperation du recid du partenaire partner_recid = mycommon.get_parnter_recid_from_token(str(my_token)) if partner_recid is False: @@ -2488,6 +2539,12 @@ def GetListEvaluation_Session(diction): if diction['token']: my_token = diction['token'] + # 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" + + # Recuperation du recid du partenaire partner_recid = mycommon.get_parnter_recid_from_token(str(my_token)) if partner_recid is False: @@ -2563,6 +2620,11 @@ def CancelAttendeeInscription(diction): if diction['token']: mytoken = diction['token'] + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", mytoken) + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" + partner_recid = mycommon.get_parnter_recid_from_token(mytoken) if (partner_recid is False): mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de recuperer le recid du partenaire") diff --git a/Log/log_file.log b/Log/log_file.log index 4261cae..2c867fa 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -1618442,3 +1618442,2413 @@ INFO:root:2023-07-05 19:56:47.199636 : Security check : IP adresse '127.0.0.1' INFO:root:2023-07-05 19:56:47.202183 : Security check : IP adresse '127.0.0.1' connected INFO:werkzeug:127.0.0.1 - - [05/Jul/2023 19:56:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [05/Jul/2023 19:56:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:25:40.180935 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-06 09:25:40.181945 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-06 09:25:40.182925 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-06 09:25:40.182925 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-06 09:25:40.182925 : ++ 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-07-06 09:25:57.387346 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-06 09:25:57.387346 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-06 09:25:57.387346 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-06 09:25:57.387346 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-06 09:25:57.387346 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 790-688-843 +INFO:root:2023-07-06 09:26:08.212576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:26:08.215743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:26:08.216655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:08] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:08] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:08] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:26:09.667632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:26:09.671633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:10] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:26:11.672423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:26:11.678588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:26:11.684604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:26:11.690045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:26:11.695322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:26:11.700753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:26:11.714486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:26:11.726066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:26:11.730085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:26:11.736833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:26:11.745463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:26:11.753441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:26:11.760060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:26:11.765574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:26:11.770889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:26:11.776880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:26:11.785978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:26:11.797689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:26:11.807719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:26:11.813253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:26:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.197564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:28:55.199672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.210508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:28:55.216208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.220390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:28:55.224676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:28:55.228199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.237532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.240960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.249816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.257409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:28:55.260808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.266827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.273753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.279594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.285254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:28:55.288628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.294997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.299288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:28:55.303982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:28:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:03.090725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:29:03.093724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:29:03.094721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:03] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:03] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:03.925176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:29:04.900332 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 09:29:04.900332 : ['1653050342486061', '165305034243858', '1653050342500832', '1652439821664761', '1652439821617886', '1653050329067754', '1653050342421633', '1652439821695679', '1653050342374759', '1653050328350332', '165243982160193', '1652439806654274', '1653050329075731', '1652439805392912', '1652439821555086', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1652439805408902', '1653050341220633', '1652439820368623', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107994403', '1652379107916377', '1652379108009382', '1652379107901418', '1652379107885481', '1652379107870502', '1652439821744549', '1652379107859558', '1652379107825632', '1652379107963253', '1652379107930338', '1652379107946298', '1653050342469634', '1652379107794704', '1652379107979211', '1652439821712633', '1652379107807669', '1652439821648805', '1652439821727593', '1653050342531385', '1653050333234937', '1653050342453557', '1653050340926972'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:04] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:05.084961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:29:05.089478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:05.094976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:29:05.098622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:05.107424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:05.117432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:29:05.124429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:05.135650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:29:05.138827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:05.149568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:05.151969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:29:05.159598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:05.165195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:05.171130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:05.176439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:05.181870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:29:05.185607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:29:05.192239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:29:05.202286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:29:05.204713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:29:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:30:24.217709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:30:24.218706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:30:24.222705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:30:24.229913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:30:24.237721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:30:24.243000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:30:24.251506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:30:24.255502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:30:24.263426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:30:24.266924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:30:24.273614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:30:24.281090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:30:24.288448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:30:24.291753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:30:24.299460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:30:24.305970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:30:24.311274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:30:24.316475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:30:24.320003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:30:24.328009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:30:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:20.506658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:31:20.508908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:31:20.513002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:20] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:20] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:20] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:21.214416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:31:21.854124 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 09:31:21.854124 : ['1653050342486061', '165305034243858', '1653050342500832', '1652439821617886', '1652439821664761', '1653050342421633', '1653050329067754', '1652439821695679', '1653050328350332', '1653050342374759', '1652439806654274', '165243982160193', '1653050329075731', '1652439805392912', '1652439821555086', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1652439805408902', '1653050341220633', '1652439820368623', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107859558', '1652379107946298', '1652379107963253', '1652379107870502', '1652379107916377', '1652379107930338', '1652439821744549', '1652379107994403', '1652379107901418', '1652379107825632', '1652379108009382', '1652379107885481', '1653050342469634', '1652439821712633', '1652379107807669', '1652379107794704', '1652379107979211', '1652439821727593', '1652439821648805', '1653050342531385', '1653050342453557', '1653050333234937', '1652439820025902'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:21] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.049102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:31:22.052733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.058152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:31:22.061945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.067087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.075153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.081176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.085179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.091516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.096743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.101896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:31:22.106604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.113622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.120400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:31:22.124413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.128994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.134510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.139527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.144224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:31:22.148276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:31:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:01.440392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:01.444557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:01.450401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:01.455686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:01.461988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:01.467194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:01.472517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:01.475631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:01.481650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:01.489592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:01.491100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:01.494640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:01.505596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:01.508562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:01.517814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:01.523051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:01.528084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:01.533412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:01.536904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:01.544990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:08.696027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:08.699311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:08.700597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:08] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:08] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:08] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:09.450702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:10.100160 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 09:32:10.100160 : ['165305034243858', '1653050342486061', '1653050342500832', '1652439821617886', '1652439821664761', '1653050329067754', '1653050342421633', '1652439821695679', '1653050342374759', '1653050328350332', '1652439806654274', '165243982160193', '1653050329075731', '1652439821555086', '1652439805392912', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1652439805408902', '1652439820368623', '1653050341220633', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107916377', '1652379107963253', '1652379107994403', '1652379107870502', '1652379107825632', '1652379107930338', '1652379108009382', '1652379107885481', '1652379107901418', '1652379107946298', '1652439821744549', '1652379107859558', '1653050342469634', '1652379107794704', '1652379107979211', '1652439821712633', '1652379107807669', '1652439821648805', '1652439821727593', '1653050342531385', '1653050333234937', '1653050342453557', '1652439820025902'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.304217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.323142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:10.326249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.331273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:10.336665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.343240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.348567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.354883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.360993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.368178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.375827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:10.376825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.381000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.388390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.393604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.400515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.408455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:10.411353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.417242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:10.423185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:12.896568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:12.899233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:12.900251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:12] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:12] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:13] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:13.701073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:13.702060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:13] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:13.997777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:14.002794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:14.011000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:14.014820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:14.019705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:14.024684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:14.029046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:14.033049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:14.037566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:14.044553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:14.051287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:14.054645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:14.060057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:14.066552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:14.073109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:14.078106 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:14.081477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:14.089527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:14.095147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:14.100829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:19.843513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:19.847517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:19] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:19.864516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:19] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:20] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:20.578967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:21.288273 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 09:32:21.288273 : ['165305034243858', '1653050342486061', '1653050342500832', '1652439821617886', '1652439821664761', '1653050329067754', '1653050342421633', '1652439821695679', '1653050342374759', '1653050328350332', '1652439806654274', '165243982160193', '1653050329075731', '1652439821555086', '1652439805392912', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1652439805408902', '1652439820368623', '1653050341220633', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107916377', '1652379107963253', '1652379107994403', '1652379107870502', '1652379107825632', '1652379107930338', '1652379108009382', '1652379107885481', '1652379107901418', '1652379107946298', '1652439821744549', '1652379107859558', '1653050342469634', '1652379107794704', '1652379107979211', '1652439821712633', '1652379107807669', '1652439821648805', '1652439821727593', '1653050342531385', '1653050333234937', '1653050342453557', '1652439820025902'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.458853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.466948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:21.471948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.479948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.483967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:21.489237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.494261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.503142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.508487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.514082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.519510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.525018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:21.531137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.536211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.543533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.556127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:21.557135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:21.562583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.567600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:21.572957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:34.097891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:34.099397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:34.101844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:34] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:34] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:34] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:35.052361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:35.054356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:35] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.124042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.186881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.192032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:36.196038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.201259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.208001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.215349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.219989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.227969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:36.233350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.237996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:36.243019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.249177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.253757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.257172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.264969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.273335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.278686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:32:36.282209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:32:36.287851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:32:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.597121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:14.601280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.604395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.612420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.616850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.623493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.629416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.635052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.639615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:14.643155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:14.646131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.653680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.660177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.665034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.672168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:14.675027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.680178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:14.683774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.691306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:14.696042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:20.885019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:20.889044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:20.890413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:20] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:20] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:21] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:21.852176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:22.758228 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 09:33:22.758228 : ['1653050342486061', '165305034243858', '1653050342500832', '1652439821664761', '1652439821617886', '1653050342421633', '1653050329067754', '1652439821695679', '1653050342374759', '1653050328350332', '165243982160193', '1652439806654274', '1653050329075731', '1652439821555086', '1652439805392912', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1652439820368623', '1653050341220633', '1652439805408902', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107901418', '1652379107885481', '1652439821744549', '1652379107946298', '1652379107963253', '1652379107916377', '1652379107930338', '1652379107994403', '1652379108009382', '1652379107825632', '1652379107870502', '1652379107859558', '1653050342469634', '1652379107979211', '1652379107807669', '1652379107794704', '1652439821712633', '1653050342531385', '1652439821648805', '1652439821727593', '1653050342453557', '1653050333234937', '1652439819978907'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:22] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:22.930895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:22.935350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:22.939364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:22.947186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:22.950588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:22.956692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:22.962363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:22.965039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:22.972055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:22.979441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:22.984087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:22.987534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:22.993095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:23.004565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:23.006570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:23.011888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:23.017211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:23.024176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:23.030950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:23.032427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:27.935862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:27.937992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:27.940103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:27] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:28] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:28] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.154543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:29.159372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.554226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:29.558331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.562919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:29.565396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.570647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.576215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.582600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.588055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.592878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:29.599317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.603952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.609571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:29.616239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.618260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:29.625002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.633532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.638912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:29.640917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:33:29.647894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:33:29.653369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:33:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:09.495744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:09.502625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:09.509769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:09.511803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:09.524957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:09.535165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:09.540277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:09.554688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:09.562868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:09.573535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:09.577547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:09.584318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:09.593839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:09.599223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:09.611015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:09.621770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:09.629189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:09.641074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:09.645105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:09.653649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:26.046393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:26.048388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:26.050395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:26] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:26] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:26] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:26.939009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:27.938183 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 09:35:27.938183 : ['1653050342486061', '165305034243858', '1653050342500832', '1652439821617886', '1652439821664761', '1653050342421633', '1653050329067754', '1652439821695679', '1653050342374759', '1653050328350332', '1652439806654274', '165243982160193', '1653050329075731', '1652439821555086', '1652439805392912', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1653050341220633', '1652439805408902', '1652439820368623', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107916377', '1652379107870502', '1652379107930338', '1652379107946298', '1652379107859558', '1652379107901418', '1652379107825632', '1652379108009382', '1652439821744549', '1652379107885481', '1652379107994403', '1652379107963253', '1653050342469634', '1652379107807669', '1652379107794704', '1652379107979211', '1652439821712633', '1653050342531385', '1652439821648805', '1652439821727593', '1653050342453557', '1653050333234937', '1653050340910977'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:27] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.126840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:28.131840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.139840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:28.142840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.151840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.159840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:28.164840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.172841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.186840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.189841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:28.195840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.203841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.207840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.217210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:28.218274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.225937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.233535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:28.237270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:35:28.242780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:35:28.250127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:35:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.463215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:36:53.470188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.476857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.484610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.490731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.498647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:36:53.503906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.513912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:36:53.520552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.527092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.533494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.542337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.548882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.557729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:36:53.564728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.574575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.581508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:36:53.583545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:36:53.590792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:36:53.598278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:36:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:37:59.156688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:37:59.158149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:37:59.161692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:37:59] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:37:59] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:37:59] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:00.043345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:00.979165 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 09:38:00.980165 : ['165305034243858', '1653050342486061', '1653050342500832', '1652439821617886', '1652439821664761', '1653050342421633', '1653050329067754', '1652439821695679', '1653050342374759', '1653050328350332', '1652439806654274', '165243982160193', '1653050329075731', '1652439805392912', '1652439821555086', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1653050341220633', '1652439805408902', '1652439820368623', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107825632', '1652439821744549', '1652379108009382', '1652379107885481', '1652379107901418', '1652379107870502', '1652379107963253', '1652379107946298', '1652379107994403', '1652379107916377', '1652379107930338', '1652379107859558', '1653050342469634', '1652439821712633', '1652379107979211', '1652379107807669', '1652379107794704', '1653050342531385', '1652439821727593', '1652439821648805', '1653050333234937', '1653050342453557', '1653050340910977'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.388518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:01.391979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.400420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:01.405129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.413244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:01.417603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.427256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.435767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:01.437235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.444236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:01.449308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.458304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.467746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.476068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.482565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:01.487934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.495261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:01.498690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.505166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:01.510608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.639755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:23.644374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.647618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:23.652440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.661020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:23.665970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.671618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.675654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:23.681428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.685581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:23.690613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.693799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.702767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.710842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:23.716272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.724963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.730838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:23.736840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.744863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:23.749695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:30.435620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:30.436639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:30.439737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:30] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:30] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:30] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:31.252352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:31.924224 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 09:38:31.924224 : ['165305034243858', '1653050342486061', '1653050342500832', '1652439821617886', '1652439821664761', '1653050342421633', '1653050329067754', '1652439821695679', '1653050328350332', '1653050342374759', '1652439806654274', '165243982160193', '1653050329075731', '1652439805392912', '1652439821555086', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1652439805408902', '1653050341220633', '1652439820368623', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107825632', '1652379107901418', '1652379107885481', '1652379107963253', '1652379107916377', '1652379108009382', '1652379107930338', '1652379107994403', '1652379107946298', '1652439821744549', '1652379107859558', '1652379107870502', '1653050342469634', '1652379107794704', '1652379107979211', '1652439821712633', '1652379107807669', '1653050342531385', '1652439821648805', '1652439821727593', '1653050333234937', '1653050342453557', '1653050340926972'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:31] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:32.157248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:32.160244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:32.170254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:32.174858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:32.177839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:32.182909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:32.193379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:32.194847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:32.200871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:32.207387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:32.209393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:32.217784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:32.223602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:32.227080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:32.234825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:32.241848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:32.245628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:32.252700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:38:32.257319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:38:32.270432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:38:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:03.926196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:03.929759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:03.935565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:03.944562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:03.952816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:03.955833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:03.966130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:03.971273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:03.980387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:03.988273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:03.995005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:04.003093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:04.010655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:04.017952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:04.026338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:04.030382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:04.039939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:04.045945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:04.051301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:04.060300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:09.907349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:09.909492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:09.911970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:09] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:10] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:10.668794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:11.400254 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 09:39:11.401266 : ['1653050342486061', '165305034243858', '1653050342500832', '1652439821617886', '1652439821664761', '1653050342421633', '1653050329067754', '1652439821695679', '1653050342374759', '1653050328350332', '1652439806654274', '165243982160193', '1653050329075731', '1652439805392912', '1652439821555086', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1653050341220633', '1652439805408902', '1652439820368623', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107825632', '1652439821744549', '1652379108009382', '1652379107885481', '1652379107901418', '1652379107870502', '1652379107963253', '1652379107946298', '1652379107994403', '1652379107916377', '1652379107930338', '1652379107859558', '1653050342469634', '1652439821712633', '1652379107979211', '1652379107807669', '1652379107794704', '1653050342531385', '1652439821727593', '1652439821648805', '1653050333234937', '1653050342453557', '1653050340910977'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:11.549115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:11.552511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:11.556406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:11.559036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:11.567506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:11.570626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:11.575198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:11.581670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:11.588450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:11.590705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:11.598331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:11.601539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:11.607234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:11.612916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:11.619282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:11.628960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:11.635046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:11.638094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:11.646792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:11.649825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.450941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.460477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.467478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:32.472260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.478642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.487677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.493814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:32.499828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.505222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.511248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.518245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.526249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.536308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:32.540576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.545766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:32.550905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.558472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.563301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:32.569610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:32.575278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:36.614344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:36.616343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:36.618188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:36] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:36] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:37.331136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:38.006188 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 09:39:38.006188 : ['1653050342486061', '165305034243858', '1653050342500832', '1652439821617886', '1652439821664761', '1653050329067754', '1653050342421633', '1652439821695679', '1653050342374759', '1653050328350332', '165243982160193', '1652439806654274', '1653050329075731', '1652439805392912', '1652439821555086', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1652439805408902', '1653050341220633', '1652439820368623', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107825632', '1652379107901418', '1652379108009382', '1652379107885481', '1652379107946298', '1652379107916377', '1652379107963253', '1652379107930338', '1652379107994403', '1652439821744549', '1652379107859558', '1652379107870502', '1653050342469634', '1652379107794704', '1652379107979211', '1652439821712633', '1652379107807669', '1653050342531385', '1652439821727593', '1652439821648805', '1653050333234937', '1653050342453557', '1653050340926972'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:38.238914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:38.241185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:38.244526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:38.256488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:38.257485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:38.263217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:38.268733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:38.275576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:38.281938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:38.285947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:38.296516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:38.299827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:38.305735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:38.316789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:38.319058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:38.325764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:38.329628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:38.335655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:39:38.340311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:39:38.345044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:18.975592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:45:18.982082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:18.990249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:45:18.995612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:19.004124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:19.012603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:19.020986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:19.028516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:19.034587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:19.043359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:19.051850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:19.064887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:45:19.069663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:45:19.075961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:19.084146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:45:19.088759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:45:19.096704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:19.106387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:45:19.111615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:45:19.117019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:45:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:17.698307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:49:17.701839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:49:17.704834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:17] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:17] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:17] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:18.710107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:49:19.478780 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 09:49:19.480011 : ['165305034243858', '1653050342486061', '1653050342500832', '1652439821664761', '1652439821617886', '1653050342421633', '1653050329067754', '1652439821695679', '1653050342374759', '1653050328350332', '1652439806654274', '165243982160193', '1653050329075731', '1652439805392912', '1652439821555086', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1653050341220633', '1652439820368623', '1652439805408902', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107963253', '1652379107870502', '1652379107946298', '1652379107916377', '1652379107930338', '1652379107885481', '1652439821744549', '1652379107859558', '1652379108009382', '1652379107994403', '1652379107825632', '1652379107901418', '1653050342469634', '1652379107807669', '1652379107979211', '1652439821712633', '1652379107794704', '1652439821727593', '1652439821648805', '1653050342531385', '1653050342453557', '1653050333234937', '1652439821637831'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:19] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.036616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:49:20.041621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.044596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.050871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.057287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.064306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:49:20.068307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:49:20.072485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.081243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.086786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.090618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.095916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.101396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.106262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:49:20.108507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.113897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.120480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.127184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:49:20.131628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:49:20.138081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:49:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:51:29.953147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:51:29.958163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:51:29.966138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:51:29.977310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:51:29.983302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:51:29.988493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:51:29.998849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:51:30.009093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:51:30.013073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:51:30.018265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:51:30.027449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:51:30.040071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:51:30.048921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:51:30.057483 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:51:30.064509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:51:30.067952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:51:30.077823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:51:30.085579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:51:30.099017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:51:30.104370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:51:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:25.851356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:25.854373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:25.860365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:25] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:25] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:26] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:27.045089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:27.693013 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 09:56:27.693013 : ['165305034243858', '1653050342486061', '1653050342500832', '1652439821664761', '1652439821617886', '1653050342421633', '1653050329067754', '1652439821695679', '1653050342374759', '1653050328350332', '1652439806654274', '165243982160193', '1653050329075731', '1652439805392912', '1652439821555086', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1653050341220633', '1652439820368623', '1652439805408902', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107994403', '1652379107885481', '1652379107825632', '1652379107963253', '1652379107901418', '1652379107916377', '1652379107930338', '1652379107870502', '1652379108009382', '1652379107946298', '1652379107859558', '1652439821744549', '1653050342469634', '1652439821712633', '1652379107807669', '1652379107794704', '1652379107979211', '1652439821648805', '1652439821727593', '1653050342531385', '1653050333234937', '1653050342453557', '1652439819978907'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:27] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.082761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.087798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:28.092103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:28.095646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:28.099772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.107870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.111886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:28.115385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:28.121256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.126363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.130707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:28.136072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.142734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.146217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.157214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:28.160981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.166022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.172715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.177073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:28.185382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.363193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.368197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:58.371219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.376510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.381732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:58.387426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.394270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.398756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:58.403153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.409105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.414020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.419595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.423509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:58.428598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:58.433613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.439894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.444888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 09:56:58.446887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.452625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 09:56:58.460530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 09:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:34.881926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:34] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:34.887177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:34.889177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:34] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:35.963217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:36.677214 : pour phrase : #test#, voici la liste des formations +INFO:root:2023-07-06 10:01:36.677214 : ['165305034243858', '1653050342486061', '1653050342500832', '1652439821617886', '1652439821664761', '1653050342421633', '1653050329067754', '1652439821695679', '1653050328350332', '1653050342374759', '165243982160193', '1652439806654274', '1653050329075731', '1652439821555086', '1652439805392912', '1652439806668484', '1653050342562538', '1653050328359278', '1652439821760521', '1653050342188241', '1652439820368623', '1653050341220633', '1652439805408902', '1652439821350821', '1652379107838615', '165305034254682', '1653050342516255', '1652379107994403', '1652379107946298', '1652379107916377', '1652379107825632', '1652379107870502', '1652379107901418', '1652379107963253', '1652379107930338', '1652379108009382', '1652379107885481', '1652439821744549', '1652379107859558', '1653050342469634', '1652379107794704', '1652379107979211', '1652439821712633', '1652379107807669', '1652439821727593', '1653050342531385', '1652439821648805', '1653050333234937', '1653050342453557', '1652439811935749'] +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:36] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.029827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:37.032827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:37.036827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.042826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.047827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:37.052827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.057866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.062871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:37.067871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.071466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.079466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.083461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.089458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.095463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:37.099464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.106464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.114481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.120460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:37.123460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:37.128464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:56.681606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:56.684268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:56.686958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:56] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:56] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:56] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:57.545574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:57.547595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:58.563084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:58.569089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:58.573407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:58.578634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:58.582780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:58.587157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:58.594613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:58.605786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:58.607778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:58.613076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:58.620468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:58.623487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:58.632025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:58.636026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:58.641895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:58.647347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:58.653399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:58.658897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:01:58.664507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:01:58.669255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:01:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:05:29.367206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:05:29] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:05:29.713722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:05:29.720723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:05:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:05:29.730764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:05:29.738726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:05:29.745278 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:05:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:05:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:05:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:05:30.196986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:05:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:05:35.277549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:05:35] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:05:37.610317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:05:37.616318 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:05:37.620868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:05:37] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:05:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:05:37] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:06:05.484646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:05] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:06:08.054363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:06:08.060137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:06:08.066595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:08] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:06:28.280043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:06:28.287644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:06:28.294047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:06:28.303648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:06:28.310838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:28] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:28] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:06:30.384909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:06:32.540832 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:32] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:06:37.844985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:37] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:06:40.217436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:06:40.222732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:06:40.226749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:40] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:06:44.793584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:06:44.798755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:06:44.804751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:06:44.813726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:44] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:06:44.820338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:44] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:44] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:06:45.990498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:06:45.997502 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:06:45] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:07:02.617955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:07:02.749391 : AddStagiairetoClass - L'adresse email billardman1@yahoo.fr est deja inscrite à la session du ch_manual +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:07:02] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:08:19.456105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:08:19.687863 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 10:08:22.235018 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 10:08:23.348242 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 10:08:24.670374 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 10:08:25.526586 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 10:08:26.280939 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:08:26] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:08:27.870809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:08:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:08:28.376669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:08:28.387726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:08:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:08:28.396268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:08:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:08:28] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:08:52.512814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:08:52.517815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:08:52.522239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:08:52.527140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:08:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:08:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:08:52.536134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:08:52] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:08:52] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:08:52] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:08:58.799886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:09:09] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:09:09.315707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:09:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:09:09.573749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:09:09.576754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:09:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:09:09.580750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:09:09] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:09:09] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:09:22.497592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:09:22.504016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:09:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:09:22.514149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:09:22] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:09:22.522867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:09:22.528517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:09:22] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:09:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:09:22] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:09:24.474003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:09:24.482503 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:09:24] "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\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-06 10:49:54.426033 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-06 10:49:54.426033 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-06 10:49:54.427080 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-06 10:49:54.427080 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-06 10:49:54.427080 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 790-688-843 +INFO:root:2023-07-06 10:49:54.478868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:49:54.482951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:49:54.485927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:49:54.491268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:49:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:49:54.496622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:49:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:49:54.502344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:49:54.508482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:49:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:49:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:49:54] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:49:54.518845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:49:54] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:49:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:49:54.524218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:49:54.528101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:49:54] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:49:54] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:49:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:49:56.513272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:49:57.448908 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:49:57] "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\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-06 10:50:34.704966 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-06 10:50:34.704966 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-06 10:50:34.704966 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-06 10:50:34.704966 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-06 10:50:34.704966 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 790-688-843 +INFO:root:2023-07-06 10:50:34.748714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:50:34.752108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:50:34.754701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:50:34.760932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:50:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:50:34.773987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:50:34] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:50:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:50:34] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:50:34] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:50:41.640564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:50:41.647139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:50:41.655426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:50:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:50:41.661754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:50:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:50:41.670642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:50:41] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:50:41] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:50:41] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:50:43.209553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:50:44.425388 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:50:44] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:51:15.181694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:15] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:51:19.367954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:19] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:51:20.095476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:20] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:51:31.119189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:51:31.123961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:51:31.130678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:51:31.137414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:31] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:51:31.146451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:31] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:31] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:51:43.062818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:51:43.071662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:51:43.077748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:51:43.084780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:51:43.094998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:43] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:43] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:43] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:51:44.559484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:51:44] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:54:35.500136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:54:35.675658 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 10:54:36.511586 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 10:54:37.347025 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 10:54:38.081046 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 10:54:39.042959 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 10:54:40.208449 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:54:41] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:54:41.770048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:54:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:54:42.339416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:54:42.345338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:54:42.350967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:54:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:54:42] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:54:42] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:55:48.254525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:55:48.260629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:55:48.268071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:55:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:55:48.276967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:55:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:55:48.281424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:55:48] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:55:48] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:55:48] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:56:50.408467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:56:50.412558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 10:56:50.420766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:56:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:56:50.427477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:56:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:56:50.432236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:56:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:56:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:56:50] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-07-06 10:56:51.739442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 10:56:51] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:00:50.851116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:00:50.857418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:00:50.863913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:00:50] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:00:50] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:00:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:00:55.605341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:00:55.611591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:00:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:00:55.616591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:00:55] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:00:55.623589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:00:55.630214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:00:55] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:00:55] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:00:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:00:56.845749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:00:56] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:01:04.612091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:01:04.722693 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 11:01:05.588016 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 11:01:06.351614 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 11:01:06.976987 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 11:01:07.636709 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 11:01:08.412125 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:01:09] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:01:15.111602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:01:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:01:15.391209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:01:15.395670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:01:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:01:15.403113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:01:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:01:15] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:02:32.298530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:02:32.306910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:02:32] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:02:32.331920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:02:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:02:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-06 11:05:02.601179 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-06 11:05:02.601179 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-06 11:05:02.602170 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-06 11:05:02.602170 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-06 11:05:02.602170 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 790-688-843 +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-07-06 11:05:22.067685 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-06 11:05:22.067685 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-06 11:05:22.067685 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-06 11:05:22.067685 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-06 11:05:22.067685 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 790-688-843 +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-07-06 11:05:36.925796 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-06 11:05:36.925796 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-06 11:05:36.925796 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-06 11:05:36.925796 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-06 11:05:36.925796 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 790-688-843 +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-07-06 11:15:52.152003 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-06 11:15:52.152003 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-06 11:15:52.152003 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-06 11:15:52.152003 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-06 11:15:52.152003 : ++ 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-07-06 11:16:02.325009 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-06 11:16:02.325009 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-06 11:16:02.326011 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-06 11:16:02.326011 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-06 11:16:02.326011 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 790-688-843 +INFO:root:2023-07-06 11:16:21.603584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:21] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:16:23.938636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:16:23.941691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:16:23.947680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:23] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:23] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:16:27.850829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:16:27.859243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:16:27.866442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:16:27.875800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:16:27.881038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:27] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:27] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:27] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:16:29.362378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:29] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:16:37.734043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:16:38.521086 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 11:16:39.205214 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 11:16:39.865246 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 11:16:40.583997 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 11:16:41.239110 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:root:2023-07-06 11:16:42.126767 : Pre_incription_training_confirmation_mail -'code_postal' - ERRORRRR AT Line : 471 +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:42] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:16:43.849887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:16:44.382846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:16:44.404405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:16:44.430602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:44] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:16:44] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:18:40.081171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:18:40.090724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:18:40.093722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:18:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:18:40.101977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:18:40.103475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:18:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:18:40] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:18:40] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:18:40] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:18:50.176027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:18:50.183328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:18:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:18:50.187517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-06 11:18:50.192840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:18:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:18:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:18:50.199661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:18:50] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:18:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-07-06 11:18:51.582231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [06/Jul/2023 11:18:51] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-07-06 20:29:15.112043 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-06 20:29:15.113331 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-06 20:29:15.113331 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-06 20:29:15.113331 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-06 20:29:15.113331 : ++ 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-07-06 20:29:27.437266 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-06 20:29:27.437266 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-06 20:29:27.438266 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-06 20:29:27.438266 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-06 20:29:27.438266 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:root:2023-07-07 10:17:57.974920 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 10:17:57.974920 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 10:17:57.974920 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 10:17:57.974920 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 10:17:57.974920 : ++ 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-07-07 10:18:07.424912 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 10:18:07.424912 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 10:18:07.424912 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 10:18:07.424912 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 10:18:07.424912 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:root:2023-07-07 10:19:17.036133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:17.037576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:17.038614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:17] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:17] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:17] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-07 10:19:17.290292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:17.291290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:17] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-07-07 10:19:17.633922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 10:19:17.947865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:17.949876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:17.951042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:17.952064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:17.954051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 10:19:17.964302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 10:19:18.274876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:18.274876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:18.275872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:18.276874 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:18.279871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:18.282875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 10:19:18.601553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:18.602592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:18.603591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:18.604571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 10:19:18.605893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 10:19:18.613264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 10:19:18.926710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 10:19:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 11:36:44.722196 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 11:36:44.722196 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 11:36:44.722196 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 11:36:44.722196 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 11:36:44.722196 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 11:40:36.083673 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 11:40:36.083673 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 11:40:36.084673 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 11:40:36.084673 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 11:40:36.084673 : ++ 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-07-07 11:40:45.067835 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 11:40:45.067835 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 11:40:45.067835 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 11:40:45.067835 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 11:40:45.067835 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:root:2023-07-07 11:46:43.555633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 11:46:44] "POST /myclass/api/InitUserPasswd/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 11:49:19.240925 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 11:49:19.242048 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 11:49:19.242048 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 11:49:19.242048 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 11:49:19.242048 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:root:2023-07-07 11:49:56.270906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 11:49:57.017495 : InitUserPasswd -'NoneType' object is not subscriptable - ERRORRRR AT Line : 1869 +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 11:49:57] "POST /myclass/api/InitUserPasswd/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 11:51:56.447311 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 11:51:56.447311 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 11:51:56.447311 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 11:51:56.447311 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 11:51:56.447311 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:root:2023-07-07 11:52:14.171156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 11:52:14] "POST /myclass/api/InitUserPasswd/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 11:53:14.421935 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 11:53:14.421935 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 11:53:14.421935 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 11:53:14.421935 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 11:53:14.421935 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:root:2023-07-07 11:53:31.716185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 11:53:32] "POST /myclass/api/InitUserPasswd/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 11:55:32.855638 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 11:55:32.856638 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 11:55:32.856638 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 11:55:32.856638 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 11:55:32.856638 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 11:56:55.005497 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 11:56:55.006501 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 11:56:55.006501 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 11:56:55.006501 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 11:56:55.006501 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 11:57:30.610933 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 11:57:30.610933 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 11:57:30.610933 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 11:57:30.610933 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 11:57:30.611723 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 11:59:48.635095 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 11:59:48.635095 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 11:59:48.635095 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 11:59:48.635095 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 11:59:48.635095 : ++ 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-07-07 11:59:57.656402 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 11:59:57.656402 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 11:59:57.656402 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 11:59:57.656402 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 11:59:57.656402 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:root:2023-07-07 12:00:27.104622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:00:27] "POST /myclass/api/InitUserPasswd/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:00:56.312931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:00:56] "POST /myclass/api/InitUserPasswd/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 12:04:56.743272 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 12:04:56.743272 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 12:04:56.743272 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 12:04:56.743272 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 12:04:56.743272 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:root:2023-07-07 12:05:03.512817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:05:04] "POST /myclass/api/InitUserPasswd/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 12:05:50.226537 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 12:05:50.226537 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 12:05:50.226537 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 12:05:50.226537 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 12:05:50.226537 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:root:2023-07-07 12:06:04.055830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:06:04] "POST /myclass/api/InitUserPasswd/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 12:08:17.185312 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 12:08:17.185312 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 12:08:17.186345 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 12:08:17.186345 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 12:08:17.186345 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ela_user_account.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 12:09:58.766672 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 12:09:58.766672 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 12:09:58.766672 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 12:09:58.766672 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 12:09:58.766672 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:root:2023-07-07 12:10:03.715573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:10:04] "POST /myclass/api/InitUserPasswd/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:10:47.624393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:10:48] "POST /myclass/api/InitUserPasswd/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:32.359969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:32.969091 : IsUserTokenValide Aucun resultat trouvé pour la{'tmp_token_pwd': '4PBoQs4StsPB9L9PW_A8DzxUrc3T_gIr3w', 'active': '1'} +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:32] "POST /myclass/api/IsUserTokenValide/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:33.013399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:33] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:33.328057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:33.328057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:33] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:33] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:34.295262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:34.296292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:34] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:34.571782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:34] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:34.876822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:34.878287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:34.879097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:34.881128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:34.882134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:34] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:34.894792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:34] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:34] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:35.203043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:35.204044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:35.205052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:35.207058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:35.218041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:35.222890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:35.529740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:35.530757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:35.532052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:35.536704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:35.543708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 12:11:35.545927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:35.853137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:44.805413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:44] "POST /myclass/api/IsUserTokenValide/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:45.070888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:45] "POST /myclass/api/IsUserTokenValide/ HTTP/1.1" 200 - +INFO:root:2023-07-07 12:11:45.149030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 12:11:45] "POST /myclass/api/IsUserTokenValide/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:55.796405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:17:55.801404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:17:55.818707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:55] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:56] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:56] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:57.252725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:17:57.255749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:58.071643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:17:58.076860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:58.084309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:17:58.086322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:58.091262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:58.098088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:17:58.103113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:58.113958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:58.119698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:17:58.125777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:58.129268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:58.135911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:58.145096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:17:58.147885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:58.161082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:17:58.163445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:17:58.167460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:58.175103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:17:58.179621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:17:58.182635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:17:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:34:34.139790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:34] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:34:34.455430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:34:34.767886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:34:34.776734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:34:34.786477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:34:34.801138 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:34:35.345341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:35] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:34:48.502094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:48] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:34:52.650881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:34:52.652882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:34:52.656957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:52] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:34:53.199897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:53] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:34:55.206936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:34:55.208954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:34:55.209953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:55] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:34:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:06.051215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:06] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:06.357949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:06.360908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:06] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:06] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:08.250217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:08.251728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:08] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:08.545177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:08.860925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:08.862364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:08.864477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:08.880672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:08.886317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:08.906945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:09.202129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:09.205493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:09.211397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:09.222235 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:09.226593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:09.233008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:09.526324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:09.531398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:09.545580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:09.549692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:09.556176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:09.568851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:09.868158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:22.864402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:22.867861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:22.873607 : Le token partner est vide +INFO:root:2023-07-07 15:35:22.873607 : Le token partner est vide +INFO:root:2023-07-07 15:35:22.881311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:22.931222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:22.931222 : Le token partner est vide +INFO:root:2023-07-07 15:35:22.935209 : Le token partner est vide +INFO:root:2023-07-07 15:35:22.986219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-07-07 15:35:22.996237 : Le token partner est vide +INFO:root:2023-07-07 15:35:23.011775 : GetAllClassStagiaire - Impossible de recuperer la liste des stagiaires, +INFO:root:2023-07-07 15:35:23.013776 : GetAllClassStagiaire - Impossible de recuperer la liste des stagiaires, +INFO:root:2023-07-07 15:35:23.015770 : GetTableauEmargement - Impossible de créer la liste d'emargement +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:23] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:23.016769 : GetListEvaluation_Session - Impossible de recuperer la liste des evaluations +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:23] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-07-07 15:35:23.033853 : GetSessionFormation - Impossible de recuperer la liste des stagiaires, +INFO:werkzeug:127.0.0.1 - - [07/Jul/2023 15:35:23] "POST /myclass/api/GetSessionFormation/ 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-07-07 15:38:14.406431 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 15:38:14.406431 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 15:38:14.407426 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 15:38:14.407426 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 15:38:14.407426 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 15:40:08.792324 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 15:40:08.792324 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 15:40:08.792324 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 15:40:08.792324 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 15:40:08.792324 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 15:56:24.380097 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 15:56:24.380097 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 15:56:24.380097 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 15:56:24.381092 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 15:56:24.381092 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 15:57:24.731266 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 15:57:24.732257 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 15:57:24.732257 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 15:57:24.732257 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 15:57:24.732257 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 15:59:40.951484 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 15:59:40.951484 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 15:59:40.951484 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 15:59:40.951484 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 15:59:40.951484 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 16:00:44.424075 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:00:44.425119 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:00:44.425119 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:00:44.425119 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:00:44.425119 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Attestation_Certificat.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 16:01:16.439145 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:01:16.439145 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:01:16.439145 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:01:16.439145 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:01:16.439145 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Attestation_Certificat.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 16:01:45.943193 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:01:45.943193 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:01:45.943193 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:01:45.943193 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:01:45.943193 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 16:02:08.790958 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:02:08.790958 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:02:08.790958 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:02:08.791971 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:02:08.791971 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 16:03:17.417126 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:03:17.417126 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:03:17.417126 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:03:17.417126 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:03:17.417126 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 16:03:34.743719 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:03:34.745070 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:03:34.745070 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:03:34.745070 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:03:34.745070 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\emargement.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 16:05:03.438717 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:05:03.438717 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:05:03.438717 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:05:03.438717 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:05:03.438717 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 16:05:53.196770 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:05:53.196770 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:05:53.196770 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:05:53.196770 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:05:53.196770 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 16:06:56.181640 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:06:56.181640 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:06:56.181640 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:06:56.181640 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:06:56.181640 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 16:07:27.046020 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:07:27.047052 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:07:27.047052 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:07:27.047052 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:07:27.047052 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 16:08:19.034281 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:08:19.034281 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:08:19.034281 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:08:19.034281 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:08:19.034281 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 16:08:47.924367 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:08:47.924367 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:08:47.925372 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:08:47.925372 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:08:47.925372 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\emargement.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 16:09:43.169026 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:09:43.170031 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:09:43.170031 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:09:43.170031 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:09:43.170031 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 16:10:11.673465 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:10:11.673465 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:10:11.673465 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:10:11.673465 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:10:11.673465 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\emargement.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-07-07 16:10:40.530369 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:10:40.530369 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:10:40.530369 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:10:40.530369 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:10:40.530369 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 +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-07-07 16:11:23.263423 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-07-07 16:11:23.263423 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-07-07 16:11:23.263423 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-07-07 16:11:23.263423 : ++ FLASK PORT 5001 ++ +INFO:root:2023-07-07 16:11:23.263423 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 102-623-739 diff --git a/Session_Formation.py b/Session_Formation.py index 837cef3..f80be3a 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -72,6 +72,13 @@ def Add_Update_SessionFormation(diction): if diction['token']: my_token = diction['token'] + # 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" + + + code_session = "" if ("code_session" in diction.keys()): mydata['code_session'] = diction['code_session'] @@ -329,6 +336,11 @@ def GetSessionFormation(diction): if diction['token']: mytoken = diction['token'] + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", mytoken) + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" + partner_recid = mycommon.get_parnter_recid_from_token(mytoken) if (partner_recid is False): mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de recuperer la liste des stagiaires, ") @@ -538,6 +550,12 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None): if diction['token']: my_token = diction['token'] + # 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" + + class_internal_url = "" if ("class_internal_url" in diction.keys()): if diction['class_internal_url']: diff --git a/class_mgt.py b/class_mgt.py index a41617a..d4a93cc 100644 --- a/class_mgt.py +++ b/class_mgt.py @@ -2139,6 +2139,13 @@ def get_partner_class(diction): if diction['token']: my_token = diction['token'] + # 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" + + + ''' Gestion des filters. ''' diff --git a/data_indexees.csv b/data_indexees.csv deleted file mode 100644 index 95cb03d..0000000 --- a/data_indexees.csv +++ /dev/null @@ -1,4 +0,0 @@ -,index,mots,occurence,moyenne,id_formation,source_field -0,0,integrative,1,0.33,MYSY_Test_AR,title -1,1,aromatherapie,1,0.33,MYSY_Test_AR,title -2,2,praticien,1,0.33,MYSY_Test_AR,title diff --git a/ela_output_test_file_pandas_2.txt b/ela_output_test_file_pandas_2.txt deleted file mode 100644 index be1174e..0000000 --- a/ela_output_test_file_pandas_2.txt +++ /dev/null @@ -1,4 +0,0 @@ - mots occurence moyenne id_formation source_field -0 integrative 1 0.33 MYSY_Test_AR title -1 aromatherapie 1 0.33 MYSY_Test_AR title -2 praticien 1 0.33 MYSY_Test_AR title \ No newline at end of file diff --git a/ela_user_account.py b/ela_user_account.py index c233fe5..9c23c24 100644 --- a/ela_user_account.py +++ b/ela_user_account.py @@ -1722,7 +1722,7 @@ def InitUserPasswd(diction): # Ici on doit mettre tous les champs possible (obligatoire ou non) de la BDD dans la liste # field_list. ''' - field_list = ['email', 'secrete'] + field_list = ['email', 'account_type'] incom_keys = diction.keys() for val in incom_keys: if val not in field_list: @@ -1734,7 +1734,7 @@ def InitUserPasswd(diction): 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 = ['email'] + field_list_obligatoire = ['email', 'account_type'] 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 ") @@ -1745,18 +1745,20 @@ def InitUserPasswd(diction): Verification de la valider de l'email ''' myemail = "" - mysecrete = "" + account_type = "" myquery = {} if ("email" in diction.keys()): if diction['email']: myemail = diction['email'] myquery['email'] = diction['email'] - if ("secrete" in diction.keys()): - if diction['secrete']: - mysecrete = diction['secrete'] - myquery['secret_key'] = diction['secrete'] + if ("account_type" in diction.keys()): + if diction['account_type']: + account_type = diction['account_type'] + if( account_type not in ['partner', 'user']): + mycommon.myprint(str(inspect.stack()[0][3]) + "Le type de compte "+str(account_type)+" est inconnu ") + return False, "Impossible de reinitialiser le mot de passe de l'utiilisateur. Le type de compte est inconnu" myquery['active'] = '1' myquery['locked'] = '0' @@ -1764,7 +1766,10 @@ def InitUserPasswd(diction): ''' Si le champs "secrete" est vide, alors il s'agit d'un compte utilisateur classique ''' - if( mysecrete == ""): + if( account_type == "user"): + ''' + Le champs "account_type" est un user + ''' coll_name = MYSY_GV.dbname['user_account'] print(" myquery ="+str(myquery)) @@ -1823,9 +1828,9 @@ def InitUserPasswd(diction): return True, "La demande de reinitiation à été prise en compte" - elif( len(mysecrete) > 0): + elif( account_type == "partner"): ''' - Le champs "secrete" est rempli, alors on reinitialise le pwd d'un partenaire + Le champs "account_type" est un partenaire ''' coll_name = MYSY_GV.dbname['partnair_account'] @@ -1837,7 +1842,9 @@ def InitUserPasswd(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " Aucun resultat trouvé pour le compte pro " + str(myquery)) return True, "La demande de reinitiation à été prise en compte" - retVal = coll_name.find(myquery, {"_id": 0, "valide": 0, "user_recid": 0}) + retVal = coll_name.find(myquery, {"_id": 0, "valide": 0,}) + + print(" ### retVal 001 = ", str(retVal[0])) """ Dans le cas exclusif du compte pro, @@ -1853,6 +1860,8 @@ def InitUserPasswd(diction): new_token['active'] = "1" new_token['email'] = str(myemail) + print(" ### str(retVal[0]['recid']) = ", str(retVal[0]['recid'])) + ret_val = coll_name.find_one_and_update( {'recid': str(retVal[0]['recid']), }, {"$set": new_token}, @@ -1860,16 +1869,25 @@ def InitUserPasswd(diction): return_document=ReturnDocument.AFTER ) - if (ret_val['_id'] is False): + if ("_id" not in ret_val.keys()): mycommon.myprint( str(inspect.stack()[0][ 3]) + " : Impossible de reinitialiser le mot de passe") return False, "Impossible de reinitialiser le mot de passe" + """ + Apres la mise à jour du partner, on insert l'objet qui signifie qu'il y a une + attente de mise à jour de mot de passe + """ + ret_val_tmp = coll_name.find_one_and_update( + {'recid': "tmp_"+str(retVal[0]['recid']), }, + {"$set": new_token}, + upsert=True, + return_document=ReturnDocument.AFTER + ) - ret_val_tmp = coll_name.insert_one(new_token) - if (ret_val_tmp is False): - mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de créer le nouveau toek") + if ("_id" not in ret_val_tmp.keys()): + mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de créer le nouveau token") return True, "La demande de reinitiation à été prise en compte" # Account type 2 is for PRO customers diff --git a/email_mgt.py b/email_mgt.py index 29ccfa5..0fa5e5d 100644 --- a/email_mgt.py +++ b/email_mgt.py @@ -1770,6 +1770,11 @@ def SendEmargementMail( diction): if diction['token']: my_token = diction['token'] + # 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" + my_emarge_ids = "" if ("tab_ids" in diction.keys()): if diction['tab_ids']: diff --git a/emargement.py b/emargement.py index fb611ea..1cf521c 100644 --- a/emargement.py +++ b/emargement.py @@ -68,6 +68,11 @@ def CreateTableauEmargement(diction): if ("token" in diction.keys()): if diction['token']: my_token = diction['token'] + # 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" + class_internal_url = "" if ("class_internal_url" in diction.keys()): @@ -231,6 +236,11 @@ def GetTableauEmargement(diction): if diction['token']: my_token = diction['token'] + # 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" + class_internal_url = "" if ("class_internal_url" in diction.keys()): if diction['class_internal_url']: @@ -300,6 +310,13 @@ def UpdateUserEmargementDate(diction): if diction['token']: my_token = diction['token'] + # 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" + + + my_email = "" if ("email" in diction.keys()): if diction['email']: diff --git a/partners.py b/partners.py index 782d140..e1246a4 100644 --- a/partners.py +++ b/partners.py @@ -171,7 +171,7 @@ def add_partner_account(diction): #tmp = coll_name.find({'email': str(mydata['email']) }).count() tmp = coll_name.count_documents({'email': str(mydata['email']), 'active':'1' }) - logging.info(" TMP = "+str(tmp)) + #logging.info(" TMP = "+str(tmp)) if( tmp > 0 ): mycommon.myprint(str(inspect.stack()[0][3]) + " - l'adresse email '"+str(mydata['email'])+"' existe deja, impossible de créer le compte partenaire ") return False, "l'adresse email '"+str(mydata['email'])+"' est deja utilisée, impossible de créer le compte partenaire " diff --git a/prj_common.py b/prj_common.py index 3798169..1a6e2d6 100644 --- a/prj_common.py +++ b/prj_common.py @@ -2625,6 +2625,12 @@ def GetAttendeeDetail_perSession(diction): if diction['token']: my_token = diction['token'] + # Verifier la validité du token + retval = check_partner_token_validity("", my_token) + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" + + # Recuperation du recid du partenaire partner_recid = get_parnter_recid_from_token(str(my_token)) if partner_recid is False: