From 16f0acb02d26afd58fb36de6fb3a1130753dc4b8 Mon Sep 17 00:00:00 2001 From: cherif Date: Sun, 10 Sep 2023 18:21:03 +0200 Subject: [PATCH] 10/09/2023 - 18h30 --- .idea/workspace.xml | 29 +- Inscription_mgt.py | 32 +- Log/log_file.log | 2444 ++++++++++++++++++++++++++++++++++++++ Session_Formation.py | 22 +- email_inscription_mgt.py | 145 ++- email_mgt.py | 2 +- main.py | 97 ++ partner_document_mgt.py | 73 ++ 8 files changed, 2809 insertions(+), 35 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index a6a5624..64aa36b 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,10 +1,15 @@ - + + - + + + + + @@ -426,7 +431,6 @@ - @@ -451,6 +455,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index cdec982..efa15ff 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -34,8 +34,13 @@ Enregistrement d'un stagiaire Voici les valeurs possibles du statut d'un stagiaire # 0 ==> Preinscription # 1 ==> Inscription validée +# 2 ==> Encours d'inscription. Ce statut est surtout utilisé quand on fait de inscription depuis le backoffice par un gestionnaire de formation. # -1 ==> Inscription annulée +/!\ : Cette foncton est utilisé aussi bien en mode non-connecté qu'en mode connecté +il ne faut donc controler le token que s'il est fourni avec une valeur donnée + +/!\ 2 : le 'partner_owner_recid' doit etre celui de la session de formation, EN AUCUN CAS CELUI DE LA PERSONNE CONNECTEE """ def AddStagiairetoClass(diction): @@ -79,19 +84,24 @@ def AddStagiairetoClass(diction): mydata['session_id'] = str(diction['session_id']).strip() session_id = str(diction['session_id']).strip() + """ + Verififier l'existance et la valididé de la session + """ + my_session_data_qry = {"_id":ObjectId(str(session_id)), 'valide':'1' } + #print(" AddStagiairetoClass my_session_data_qry = ", my_session_data_qry) + + my_session_data = MYSY_GV.dbname['session_formation'].find_one(my_session_data_qry) + if( my_session_data is None ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant de la session est invalide session_id = ", str(session_id)) + return False, " L'identifiant de la session est invalide" mytoken = "" if ("token" in diction.keys()): if diction['token']: mytoken = str(diction['token']).strip() - - partner_recid = mycommon.get_parnter_recid_from_token(mytoken) - if (partner_recid is False): - mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de recuperer les données du partenaire ") - return False, "Impossible de recuperer les données du partenaire " - mydata['partner_owner_recid'] = str(partner_recid) """ Recuperation des info de la session de formation """ @@ -109,6 +119,7 @@ def AddStagiairetoClass(diction): for tmp_val in MYSY_GV.dbname['session_formation'].find({"_id":ObjectId(str(session_id)), 'valide':'1' }): mydata['date_du'] = tmp_val['date_debut'] mydata['date_au'] = tmp_val['date_fin'] + mydata['partner_owner_recid'] = tmp_val['partner_owner_recid'] if ("prix_session" in tmp_val.keys()): if tmp_val['prix_session']: @@ -139,7 +150,7 @@ def AddStagiairetoClass(diction): ## Verifier l'existance du client de rattachement local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents( {'_id': ObjectId(diction['client_rattachement_id']), - 'valide': '1','locked': '0', 'partner_recid': str(partner_recid)}) + 'valide': '1','locked': '0', 'partner_recid': str(my_session_data['partner_owner_recid'])}) if( local_client_retval_count != 1 ): mycommon.myprint( @@ -279,11 +290,13 @@ def AddStagiairetoClass(diction): Donc pas d'email si le statut est (2 => 'encours de creation' On doit donner la possibilité a l'utilisateur de saisir une inscription avec un statut en cours de creation : 'creation' """ + if( inserted_id ): # On verifie que le statut de l'inscription n'est pas (2 : en cours) avant de declencher des envoies d'email + if( new_status != "2"): # Le stagaire a bien ete inseré, on declenche l'envoi des emaisl - print(" ### l'inscription est ok, il faut declenché l'envoi des email") + ## Envoie de l'email de preinscription mail_data = {} mail_data['email'] = diction['email'] @@ -951,7 +964,7 @@ def SendPre_InscriptionEmail(diction): """ Verification de la liste des champs obligatoires """ - print(" ## GRRRR = ", diction) + field_list_obligatoire = [ 'email', 'session_id', 'inscription_id'] for val in field_list_obligatoire: if val not in diction: @@ -977,6 +990,7 @@ def SendPre_InscriptionEmail(diction): data_mail['nom'] = local_session[0]['nom'] data_mail['prenom'] = local_session[0]['prenom'] data_mail['email'] = local_session[0]['email'] + data_mail['partner_owner_recid'] = local_session[0]['partner_owner_recid'] if ("employeur" in local_session[0].keys()): diff --git a/Log/log_file.log b/Log/log_file.log index 996a046..fb02598 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -1794121,3 +1794121,2447 @@ INFO:root:2023-09-08 18:37:54.594124 : Security check : IP adresse '127.0.0.1' INFO:werkzeug:127.0.0.1 - - [08/Sep/2023 18:37:54] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - INFO:root:2023-09-08 18:37:54.620698 : Security check : IP adresse '127.0.0.1' connected INFO:werkzeug:127.0.0.1 - - [08/Sep/2023 18:37:54] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:02.793853 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-09 16:52:02.794863 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-09 16:52:02.794863 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-09 16:52:02.795859 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-09 16:52:02.795859 : ++ 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-09-09 16:52:25.451678 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-09 16:52:25.452672 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-09 16:52:25.452672 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-09 16:52:25.452672 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-09 16:52:25.452672 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 182-037-910 +INFO:root:2023-09-09 16:52:29.917353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:29.918368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:29.920373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:30] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:30] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:30] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:30.562870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:30.565869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:30] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:43.985917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:43.989434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:43.991952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:43] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:44.951895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:44.954899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:45] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.453445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:46.459051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:46.464649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:46.468022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:46.474235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.481021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.491876 : La session de connexion n'est pas valide +INFO:root:2023-09-09 16:52:46.492898 : La session de connexion n'est pas valide +INFO:root:2023-09-09 16:52:46.492898 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.502747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:46.507747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.513785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:46.519059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.521111 : La session de connexion n'est pas valide +INFO:root:2023-09-09 16:52:46.523391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.530676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:46.535037 : La session de connexion n'est pas valide +INFO:root:2023-09-09 16:52:46.536028 : La session de connexion n'est pas valide +INFO:root:2023-09-09 16:52:46.538081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.543439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:46.545861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.559174 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.562827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.570078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:52:46.571071 : La session de connexion n'est pas valide +INFO:root:2023-09-09 16:52:46.574074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.584166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.589172 : La session de connexion n'est pas valide +INFO:root:2023-09-09 16:52:46.591350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:52:46.599212 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:52:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:53:38.115160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:53:38] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:53:38.392300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:53:38.397594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:53:38.403717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:53:38.412101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:53:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:53:38.419800 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:53:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:53:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:53:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:53:38.487774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:53:38] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:56:48.283120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:56:48.286527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 16:56:48.289527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:56:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-09 16:56:48.296526 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:56:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 16:56:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:06:12.187824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:06:12.191877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:06:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:06:12.199322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:06:12.203821 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:06:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:06:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:06:19.772675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:06:19.775078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:06:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:06:19.781048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:06:19.788042 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:06:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:06:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:06:19.939399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:06:19] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:07:44.373961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:07:44.377507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:07:44.380789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:07:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:07:44.390601 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:07:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:07:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:14:47.743347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:14:47.745974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:14:47.751245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:14:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:14:47.759872 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:14:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:14:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:15:12.534534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:15:12.540007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:15:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:15:12.545149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:15:12.555177 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:15:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:15:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:15:12.727775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:15:12] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:15:12.734695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:15:12] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:32:11.900362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:32:11.904867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:32:11] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:32:11] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:32:11.913968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:32:11] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 404 - +INFO:root:2023-09-09 17:32:25.280698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:32:25.287720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:32:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:32:25.296391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:32:25.306399 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:32:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:32:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:32:25.558064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:32:25] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:32:25.565860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:32:25] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:32:25.573062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:32:25] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 404 - +INFO:root:2023-09-09 17:33:13.566876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:33:13] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:33:13.574875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:33:13] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:33:13.582725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:33:13] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 404 - +INFO:root:2023-09-09 17:33:22.611981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:33:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:33:22.631378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:33:22.638661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:33:22.644122 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:33:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:33:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:33:22.926893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:33:22] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:33:22.931603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:33:22] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:33:22.937682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:33:22] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 404 - +INFO:root:2023-09-09 17:34:14.562594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:34:14.570387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:34:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:34:14.577385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:34:14.586011 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:34:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:34:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:34:15.064210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:34:15] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-09 17:34:15.074909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 17:34:15.079973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:34:15] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 17:34:15] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 404 - +INFO:root:2023-09-09 18:36:26.686612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 18:36:26.696612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 18:36:26.700817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 18:36:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-09 18:36:26.711824 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 18:36:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 18:36:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-09 18:36:27.094590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 18:36:27] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-09 18:36:27.101115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 18:36:27.105117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 18:36:27] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 18:36:27] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 404 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-09 18:40:12.672242 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-09 18:40:12.673254 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-09 18:40:12.673254 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-09 18:40:12.673254 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-09 18:40:12.673254 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 182-037-910 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-09 18:40:51.739863 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-09 18:40:51.739863 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-09 18:40:51.739863 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-09 18:40:51.739863 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-09 18:40:51.739863 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 182-037-910 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-09 18:43:36.296025 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-09 18:43:36.296025 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-09 18:43:36.297035 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-09 18:43:36.297035 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-09 18:43:36.297035 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 182-037-910 +INFO:root:2023-09-09 18:43:48.475288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 18:43:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-09 18:43:48.496587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 18:43:48.500137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-09 18:43:48.505454 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 18:43:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 18:43:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-09 18:43:48.848514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 18:43:48] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-09 18:43:48.854554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 18:43:48] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-09 18:43:48.860544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [09/Sep/2023 18:43:48] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:30.402136 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 11:44:30.404131 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 11:44:30.404131 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 11:44:30.404131 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 11:44:30.404131 : ++ 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-09-10 11:44:43.812143 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 11:44:43.812143 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 11:44:43.812143 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 11:44:43.812143 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 11:44:43.812143 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 11:44:43.979981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:43.983095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:43.985093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:43.988094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:43.989607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:44] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:44] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:44.830478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:44.834620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:44.838167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:44.843155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:44.845243 : La session de connexion n'est pas valide +INFO:root:2023-09-10 11:44:44.849266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:44.856519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:44.856519 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:44.871106 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:45.174739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:45.176078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:45.177429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:45.177933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:45.189006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:45.193803 : La session de connexion n'est pas valide +INFO:root:2023-09-10 11:44:45.193803 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:45.195818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:45.201934 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:45.500668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:45.501688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:45.506807 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:45.514421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:45.515435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:45.516432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:45.517450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:45.526695 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:45.529051 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:45.825036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:44:45.828593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:44:45.832593 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:44:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:09.221551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:09.223610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:09.226755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:09] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:09] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:09] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:09.899802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:09.900806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:09] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:10.308618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:10.310123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:10.312201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:10.312201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:10.313219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:10.314218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:10.322546 : La session de connexion n'est pas valide +INFO:root:2023-09-10 11:46:10.326205 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:10.327218 : La session de connexion n'est pas valide +INFO:root:2023-09-10 11:46:10.328340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:10.334302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:10.335749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:10.339137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:10.346371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:10.349738 : La session de connexion n'est pas valide +INFO:root:2023-09-10 11:46:10.350802 : La session de connexion n'est pas valide +INFO:root:2023-09-10 11:46:10.352280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:10.354386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:10.360076 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:10.362077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:10.364080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:10.367218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:10.370465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:10.371476 : La session de connexion n'est pas valide +INFO:root:2023-09-10 11:46:10.376599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:10.380682 : La session de connexion n'est pas valide +INFO:root:2023-09-10 11:46:10.381674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:10.386514 : La session de connexion n'est pas valide +INFO:root:2023-09-10 11:46:10.388835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:10.395668 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:16.350650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:16] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:16.743491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:16.747499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:16.750666 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:16.754988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 11:46:16.758331 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:46:16.815368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:46:16] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:47:30.870866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:47:30] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:47:30.875333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:47:30] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 11:47:30.880226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 11:47:30] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:11:46.811482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:11:46] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:11:46.815481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:11:46.817478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:11:46] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:11:46] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:16:07.177129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:16:07] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:16:07.182173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:16:07] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:16:07.186630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:16:07] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:16:26.900774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:16:26.906600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:16:26.917015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:16:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:16:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:16:26.941865 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:16:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:16:27.041036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:16:27] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:16:27.047661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:16:27] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:16:27.051993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:16:27] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:16:37.999878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:16:38] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 404 - +INFO:root:2023-09-10 12:18:40.631988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:18:40] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:18:40.638543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:18:40] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:18:40.642752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:18:40] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:18:52.622400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:18:52.627098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:18:52.631772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:18:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:18:52.640762 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:18:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:18:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:18:52.794230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:18:52] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:18:52.798226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:18:52] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:18:52.802756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:18:52] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:18:59.181640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:18:59] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 404 - +INFO:root:2023-09-10 12:20:34.786024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:20:34.788332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:20:34] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:20:34] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:20:34.793466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:20:34] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:21:21.816029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:21:21] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 404 - +INFO:root:2023-09-10 12:21:53.172496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:21:53] "POST /myclass/api/Add_Partner_Order HTTP/1.1" 308 - +INFO:root:2023-09-10 12:21:53.183496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:21:54.641359 : Add_Partner_Order Le champ '_id' n'est pas autorisé +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:21:54] "POST /myclass/api/Add_Partner_Order/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:22:19.920323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:22:19] "POST /myclass/api/Get_Given_Partner_Document HTTP/1.1" 404 - +INFO:root:2023-09-10 12:22:26.487068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:22:26] "POST /myclass/api/Get_Given_Partner_Document HTTP/1.1" 404 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 12:23:11.854362 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 12:23:11.855369 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 12:23:11.855369 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 12:23:11.855369 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 12:23:11.855369 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 12:23:55.972440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:23:55] "POST /myclass/api/Get_Given_Partner_Document HTTP/1.1" 308 - +INFO:root:2023-09-10 12:23:55.978546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:23:56] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:24:03.650876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:24:03.656608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:24:03.661246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:24:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:24:03.669549 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:24:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:24:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:24:03.887795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:24:03] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:24:03.892893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:24:03] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:24:03.896678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:24:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:24:51.839341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:24:51] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:25:46.837615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:25:46] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:25:46.841618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:25:46] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:25:46.845613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:25:46] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:28:13.047691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:28:13] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:33:05.165846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:33:05] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:33:05.169840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:33:05] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:33:05.174342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:33:05] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:34:40.429563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:34:40] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:34:40.433585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:34:40] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:34:40.438286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:34:40] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:34:48.471994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:34:48.475989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:34:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:34:48.482812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:34:48.488806 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:34:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:34:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:34:48.644070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:34:48] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:34:48.648067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:34:48] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:34:48.652156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:34:48] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:34:53.260347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:34:53] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:36:19.641235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:36:19] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:36:19.644650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:36:19] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:36:19.648080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:36:19] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:36:52.472575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:36:52] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:36:52.475589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:36:52] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:36:52.478806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:36:52] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:39:19.345087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:39:19] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:39:19.349462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:39:19.350489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:39:19] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:39:19] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:39:38.153281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:39:38.156865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:39:38.163351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:39:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:39:38.170641 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:39:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:39:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:39:38.303780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:39:38] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:39:38.307489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:39:38] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:39:38.310492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:39:38] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:39:42.978797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:39:42] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:43:55.594307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:43:55.598314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:43:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:43:55.602310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:43:55.614322 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:43:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:43:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:43:55.749451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:43:55] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:43:55.753454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:43:55] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:43:55.757455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:43:55] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:44:01.067038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:44:01] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:48:33.558701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:48:33] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:48:33.562763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:48:33] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:48:33.565753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:48:33] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:48:59.983725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:48:59.987110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:48:59.990295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:48:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:48:59.998093 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:48:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:49:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:49:00.105769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:49:00] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:49:00.108962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:49:00.110994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:49:00] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:49:00] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:49:03.365826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:49:03] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:52:18.366574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:52:18] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:52:18.369529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:52:18.373733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:52:18] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:52:18] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:52:24.324035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:52:24.329314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:52:24.333561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:52:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:52:24.340873 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:52:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:52:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:52:24.450487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:52:24] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:52:24.453911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:52:24] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:52:24.456918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:52:24] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:52:29.648454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:52:29] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:54:21.758030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:21] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:54:21.761218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:54:21.772785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:21] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:21] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:54:29.858665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:54:29.861724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:54:29.864838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:54:29.880226 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:54:29.999601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:30] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:54:30.002600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:54:30.006529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:30] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:30] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:54:34.888588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:34] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:54:56.967536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:56] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:54:56.972038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:54:56.975183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:56] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:54:56] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:55:02.840470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:55:02.843197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:55:02.845162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:55:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:55:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:55:02.871042 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:55:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:55:02.974449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:55:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:55:02.978661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:55:02.980863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:55:02] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:55:02] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:55:06.216571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:55:06] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:55:55.290221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:55:55] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:55:55.294675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:55:55] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:55:55.298672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:55:55] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:56:02.730846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:56:02.734647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:56:02.737089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:56:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:56:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:56:02.748220 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:56:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:56:02.859046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:56:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:56:02.862541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:56:02.863533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:56:02] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:56:02] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:56:05.850395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:56:05] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:57:21.032301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:57:21] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:59:26.112406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:59:26] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 12:59:26.119561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 12:59:26.125972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:59:26] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 12:59:26] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:10:42.855147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:10:42] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:10:42.860601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:10:42.863603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:10:42] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:10:42] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:11:52.812368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:11:52] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:11:52.820522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:11:52] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:11:52.826518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:11:52] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:11:58.159240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:11:58.171028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:11:58.172124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:11:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:11:58.182167 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:11:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:11:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:11:58.290275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:11:58] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:11:58.303338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:11:58] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:11:58.308996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:11:58] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:12:02.281500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:12:02] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:12:29.620934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:12:29] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:13:40.084406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:13:40] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:13:40.090405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:13:40.095459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:13:40] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:13:40] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:13:44.761438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:13:44] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:14:45.290453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:14:45] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:14:45.295209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:14:45] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:14:45.299957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:14:45] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:15:33.485076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:15:33] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:15:33.492231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:15:33.497220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:15:33] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:15:33] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:15:52.928657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:15:52] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:15:52.932008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:15:52] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:15:52.938207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:15:52] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:16:44.088823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:16:44] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:16:44.101065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:16:44] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:16:44.104331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:16:44] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:16:53.892339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:16:53] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:16:53.896871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:16:53] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:16:53.903019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:16:53] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:17:55.466941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:17:55] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:17:55.470445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:17:55.475455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:17:55] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:17:55] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:24:13.245332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:24:13] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:24:13.251487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:24:13] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:24:13.255891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:24:13] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:24:25.810982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:24:25] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:25:27.736568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:25:27] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:25:27.745098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:25:27.751096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:25:27] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:25:27] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:27:33.650510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:27:33] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:27:33.658535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:27:33.662531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:27:33] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:27:33] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:27:41.804353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:27:41.810793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:27:41.815793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:27:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:27:41.829795 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:27:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:27:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:27:41.928790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:27:41] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:27:41.934127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:27:41.937430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:27:41] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:27:41] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:27:45.486315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:27:45] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:28:08.129699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:28:08] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:28:27.781019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:28:27] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:28:27.785446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:28:27.794541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:28:27] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:28:27] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:28:34.483095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:28:34.492889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:28:34.499868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:28:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:28:34.514162 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:28:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:28:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:28:34.609003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:28:34.613966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:28:34] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:28:34.618614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:28:34] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:28:34] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:28:38.882658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:28:38] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:29:57.709747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:29:57] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:30:07.092316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:30:07.096325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:30:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:30:07.103330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:30:07.109359 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:30:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:30:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:30:07.212363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:30:07] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:30:07.216380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:30:07.218377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:30:07] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:30:07] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:30:10.365199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:30:10] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:30:18.488537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:30:18] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:32:39.254361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:32:39] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:32:39.258378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:32:39] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:32:39.260994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:32:39] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:35:07.610124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:35:07] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:35:07.614692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:35:07] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:35:07.618816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:35:07] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:35:28.018059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:35:28.022078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:35:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:35:28.027084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:35:28.034072 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:35:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:35:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:35:28.160796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:35:28] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:35:28.165662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:35:28] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:35:28.171143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:35:28] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:35:33.184776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:35:33] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:36:19.567645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:36:19] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:36:19.570168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:36:19.572426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:36:19] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:36:19] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:36:23.618479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:36:23.622760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:36:23.625287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:36:23] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:36:23.633985 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:36:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:36:23] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:36:23.734833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:36:23] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:36:23.738850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:36:23] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:36:23.743338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:36:23] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:36:27.321800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:36:27] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:38:07.409397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:38:07] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:38:07.413672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:38:07] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:38:07.418181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:38:07] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:38:22.841134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:38:22.845291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:38:22.848800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:38:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:38:22.855546 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:38:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:38:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:38:23.008173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:38:23] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:38:23.014241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:38:23] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:38:23.019176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:38:23] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:38:27.464941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:38:27] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:39:28.844240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:39:28] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:39:28.847924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:39:28] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:39:28.854940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:39:28] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:39:52.549281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:39:52] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:39:52.555016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:39:52] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:39:52.560117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:39:52] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:39:58.416955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:39:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:39:58.422434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:39:58.424921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:39:58.430475 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:39:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:39:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:39:58.564939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:39:58] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:39:58.571763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:39:58] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:39:58.575887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:39:58] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:05.390754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:05] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:18.801819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:40:18.805252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:18.810853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:18.821324 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:19.022782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:19] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:19.025782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:19] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:19.029805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:19] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:52.795066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:52] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:52.798081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:52] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:52.801078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:52] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:58.492047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:40:58.496069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:40:58.498085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:58.507817 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:58.618208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:58] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:40:58.622511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:40:58.625512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:58] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:40:58] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:41:02.648406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:41:02] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:42:08.108596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:42:08] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:42:08.114276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:42:08] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:42:08.117740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:42:08] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:42:13.269901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:42:13.273429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:42:13.276820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:42:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:42:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:42:13.283988 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:42:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:42:13.399986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:42:13] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:42:13.403011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:42:13.406121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:42:13] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:42:13] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:42:21.468139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:42:21] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:43:44.389093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:43:44] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:43:44.393246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:43:44] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:43:44.397801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:43:44] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:43:50.509793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:43:50.514916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:43:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:43:50.520005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:43:50.528182 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:43:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:43:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:43:50.679616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:43:50] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:43:50.685168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:43:50] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:43:50.690269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:43:50] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:43:56.526389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:43:56] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:44:57.341037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:44:57] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:44:57.348593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:44:57] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:44:57.351126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:44:57] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:45:01.962434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:45:01.968747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:45:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:45:01.975023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:45:01.980898 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:45:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:45:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:45:02.145928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:45:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:45:02.154925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:45:02] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:45:02.159924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:45:02] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:45:08.421429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:45:08] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:46:15.952749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:46:15] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:46:15.955857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:46:15.958191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:46:15] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:46:15] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:46:21.275812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:46:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:46:21.283999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 13:46:21.291955 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2023-09-10 13:46:21.292966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:46:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:46:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:46:21.465253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:46:21] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:46:21.469256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:46:21] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:46:21.473258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:46:21] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:46:26.763322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:46:26] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 13:46:49.664680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 13:46:49] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 14:00:44.574253 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:00:44.575432 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:00:44.575432 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:00:44.575432 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:00:44.575432 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 14:02:14.795475 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:02:14.796483 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:02:14.796483 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:02:14.796483 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:02:14.796483 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 14:03:23.576890 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:03:23.576890 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:03:23.576890 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:03:23.576890 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:03:23.576890 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 14:05:09.743502 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:05:09.743502 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:05:09.743502 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:05:09.743502 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:05:09.743502 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 14:08:07.202409 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:08:07.202409 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:08:07.202409 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:08:07.202409 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:08:07.202409 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 14:08:22.606220 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:08:22.607221 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:08:22.607221 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:08:22.607221 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:08:22.607221 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 14:18:48.816419 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:18:48.816419 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:18:48.817414 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:18:48.817414 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:18:48.817414 : ++ 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-09-10 14:18:57.264747 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:18:57.264747 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:18:57.264747 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:18:57.264747 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:18:57.264747 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 14:20:58.275684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:20:58.280997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:20:58.285714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:20:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:20:58.293826 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:20:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:20:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:20:58.465343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:20:58] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:20:58.478343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:20:58] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:20:58.487381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:20:58] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:21:01.816608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:21:01.862405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:01] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:21:07.520113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:07] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:21:09.639394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:21:09.648694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:21:09.653312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:09] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:09] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:21:15.188536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:21:15.191995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:21:15.193184 : La session de connexion n'est pas valide +INFO:root:2023-09-10 14:21:15.194200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:21:15.200108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:21:15.201126 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:15] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:15] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:21:50.828278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:21:50.840331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:21:50.844512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:21:50.851547 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:21:51.030957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:51] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:21:55.266025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:55] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:21:59.591532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:21:59.595334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:21:59.600668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:59] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:21:59] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:22:07.617776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:22:07.619234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:22:07.622262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:22:07.627543 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:22:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:22:07] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:22:07] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:22:10.537134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:22:10.540149 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:22:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:22:10.851405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:22:10.854399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:22:10.855403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:22:10.859405 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:22:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:22:10] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:22:10] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:26:30.638928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:26:30.638928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:26:30.642310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:26:30.647325 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:26:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:26:30] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:26:30] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:26:33.514008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:26:33.516708 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:26:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:26:33.819755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:26:33.822768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:26:33] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:26:33.831288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:26:33.831288 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:26:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:26:33] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:26:52.855447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:26:52.857446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:26:52.859445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:26:52.865768 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:26:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:26:52] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:26:52] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:27:07.166488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:27:07.168989 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:27:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:27:07.479089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:27:07.480089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:27:07.481099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:27:07] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:27:07.492099 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:27:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:27:07] "POST /myclass/api/GetListOpco/ 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-09-10 14:31:40.591588 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:31:40.591588 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:31:40.591588 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:31:40.591588 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:31:40.591588 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +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-09-10 14:32:30.814994 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:32:30.814994 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:32:30.814994 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:32:30.814994 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:32:30.814994 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 14:32:40.501131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:32:40.502238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:32:40.503254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:32:40] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:32:40] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:32:41.272259 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:32:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:32:47.380222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:32:47.383226 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:32:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:32:47.685977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:32:47.686973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:32:47.688238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:32:47] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:32:47] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:32:47.705570 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:32:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:32:59.059941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:32:59.063436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:32:59.065907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:32:59.070484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:32:59] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:32:59] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:32:59.085116 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:32:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:32:59.087617 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:32:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:33:11.641514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:33:11.643519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:33:11.646516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:33:11.650513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:11] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:11] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:33:18.903668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:18] "POST /myclass/api/GetAllValideSessionPartner_List_filter_like/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:33:22.490459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:22] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:33:26.746083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:33:26.749698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:33:26.753573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:26] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:33:28.909786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:28] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:33:44.299434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:33:44.303433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:33:44.308228 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:44] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:33:45.499633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:33:45.499633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:33:45.509684 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_OL95ZkVJlbwWyw/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_OL95ZkVJlbwWyw/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1NYSorAbmaEugrFTuc8nPCVA",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "cherif DEV",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "exp_month": 12,\n "exp_year": 2023,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1690459045,\n "customer": "cus_OL95ZkVJlbwWyw",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_OL95ZkVJlbwWyw/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_zTMr3kse33ot1B message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:46] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:33:48.900960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:33:48.958213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:48] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:33:53.345728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:53] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:33:55.415852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:33:55.418371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:33:55.423144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:33:55.426546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:55] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:33:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:03.707540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:03] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:05.702030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:05.704349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:05.707888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:05.712020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:05] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:05] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:12.430831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:12] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:14.398978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:14.402004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:14.405613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:14] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:14] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:24.421697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:24.423891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:24.428365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:24.436397 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:24] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:24] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:26.944590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:26.948798 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:27.258861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:27.259880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:27.260880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:27] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:27] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:27.276590 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:34.934162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:34.937137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:34.940666 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:34.944042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:34] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:34] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:34.959806 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:34.960807 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:49.208396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:49.211619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:49.214345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:34:49.218334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:34:49.224518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:49] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:34:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:36:21.335355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:36:21.336373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:36:21.338376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:36:21.346378 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:36:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:36:21] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:36:21] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:36:36.481338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:36:36.484486 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:36:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:36:36.795684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:36:36.797092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:36:36.797092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:36:36] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:36:36] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:36:36.814912 : GetActiveSessionFormation_List -local variable 'my_partner' referenced before assignment - ERRORRRR AT Line : 523 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:36:36] "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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 14:38:29.590174 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:38:29.591176 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:38:29.591176 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:38:29.591176 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:38:29.591176 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 14:38:36.954192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:38:36.958229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:38:36.962535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:38:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:38:36] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:38:36] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:38:46.799178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:38:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:38:47.112980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:38:47.114493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:38:47.115503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:38:47] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:38:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:38:47] "POST /myclass/api/GetListOpco/ 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-09-10 14:40:33.096822 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:40:33.096822 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:40:33.096822 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:40:33.096822 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:40:33.096822 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 14:40:35.039123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:40:35.040126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:40:35.042241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:40:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:40:35] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:40:35] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:40:46.217171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:40:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:40:46.532133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:40:46.533127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:40:46.536145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:40:46] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:40:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:40:46] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:41:21.831387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:41:21.832434 : Le token partner est vide +INFO:root:2023-09-10 14:41:22.387077 : AddStagiairetoClass - Impossible de recuperer les données du partenaire +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:41:22] "POST /myclass/api/AddStagiairetoClass/ 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-09-10 14:45:12.518672 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:45:12.518672 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:45:12.519668 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:45:12.519668 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:45:12.519668 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +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-09-10 14:46:53.706708 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:46:53.707710 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:46:53.707710 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:46:53.707710 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:46:53.707710 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +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-09-10 14:55:03.703641 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:55:03.703641 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:55:03.703641 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:55:03.703641 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:55:03.703641 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +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-09-10 14:55:17.777543 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 14:55:17.777543 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 14:55:17.778543 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 14:55:17.778543 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 14:55:17.778543 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 14:56:21.365161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:56:21.872263 : AddStagiairetoClass -'03/10/2023 au 10/10/2023 - En Présentiel - A confirmer 6000' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 89 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:56:21] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:59:14.162817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:59:14.164322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:59:14.165875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:59:14.172269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:14] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:14] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:59:14.823163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:59:14.826190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:59:14.831505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:59:14.834527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:14] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:14] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:59:21.524088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:59:21.829914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:59:21.832382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:21] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:21] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:59:32.362701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:59:32.363711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 14:59:32.364715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 14:59:32.371048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:32] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 14:59:32] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:00:14.166711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:00:14.482234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:00:14.482752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:00:14.489483 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:14] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:14] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:00:14.551634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:00:14.555221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:00:14.559436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:00:14.563808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:14] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:14] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:00:25.297213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:00:25.298232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:00:25.300926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:25] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:25] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:00:32.346678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:00:32.659206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:32] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:00:32.731940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:00:32.733946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:00:32] "POST /myclass/api/GetListOpco/ 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-09-10 15:01:55.663790 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:01:55.663790 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:01:55.663790 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:01:55.664791 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:01:55.664791 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 15:02:43.490842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:02:43.491648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:02:43.492649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:02:43.493649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:43] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:43] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:02:43.573831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:02:43.577349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:02:43.579665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:02:43.581862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:43] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:43] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:02:50.540427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:02:50.857897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:02:50.872907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:50] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:50] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:02:52.728496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:02:52.729502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:02:52.731514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:02:52.738056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:52] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:02:52] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:03:29.198875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:03:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:03:29.508136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:03:29.509137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:03:29.510137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:03:29] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:03:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:03:29] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:03:29.546575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:03:29.550593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:03:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:03:29.554598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:03:29] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:03:29.562598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:03:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:03:29] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:03:56.498602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:03:56.502849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:03:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:03:56.509848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:03:56] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:03:56] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:03:59.987158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:03:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:04:00.292776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:04:00.296770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:04:00.297880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:04:00] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:04:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:04:00] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:04:23.137205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:04:23] "POST /myclass/api/AddStagiairetoClass/ 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-09-10 15:06:05.193442 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:06:05.193442 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:06:05.193442 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:06:05.193442 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:06:05.193442 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 15:10:29.977444 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:10:29.977444 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:10:29.977444 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:10:29.977444 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:10:29.977444 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 15:10:38.504057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:10:38.505056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:10:38.508058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:10:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:10:38] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:10:38] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:10:39.759623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:10:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:10:40.061509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:10:40.065992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:10:40] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:10:40.073195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:10:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:10:40] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:11:26.256076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:11:26] "POST /myclass/api/AddStagiairetoClass/ 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-09-10 15:17:03.873682 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:17:03.873682 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:17:03.873682 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:17:03.873682 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:17:03.873682 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +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-09-10 15:24:45.308849 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:24:45.308849 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:24:45.308849 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:24:45.308849 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:24:45.308849 : ++ 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-09-10 15:24:54.602273 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:24:54.603387 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:24:54.603387 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:24:54.603387 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:24:54.603387 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 15:24:57.916561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:24:57.916561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:24:57.923804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:24:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:24:57] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:24:57] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:25:00.395570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:25:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:25:00.704970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:25:00.707439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:25:00.709788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:25:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:25:00] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:25:00] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:25:18.110841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 15:25:56.474541 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:25:56.474541 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:25:56.474541 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:25:56.474541 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:25:56.474541 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 15:26:16.350486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:26:16.938624 : AddStagiairetoClass - L'adresse email billardman01@hotmail.com est deja inscrite à la session du 64e7ab5827424d50945125b2 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:26:16] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:27:12.270402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:27:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:27:12.576755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:27:12.579757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:27:12] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:27:12] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:27:14.820676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:27:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:27:14.828404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:27:14.830918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:27:14.830918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:27:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:27:14] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:27:14] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:27:33.777787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:27:33.972204 : Pre_incription_training_confirmation_mail -'str' object has no attribute 'render' - ERRORRRR AT Line : 520 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 15:28:54.977417 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:28:54.978423 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:28:54.978423 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:28:54.978423 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:28:54.978423 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 15:28:55.017264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:28:55.679752 : AddStagiairetoClass - L'adresse email cherif.balde@yahoo.fr est deja inscrite à la session du 64e7ab5827424d50945125b3 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:28:55] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:29:56.022079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:29:56.195393 : Pre_incription_training_confirmation_mail -'str' object has no attribute 'render' - ERRORRRR AT Line : 520 +INFO:root:2023-09-10 15:31:20.404758 : Notification_partner_Pre_incription_mail -[WinError 10060] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu - ERRORRRR AT Line : 610 +INFO:root:2023-09-10 15:31:20.407750 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email cherif.balde@yahoo.fr pour la session 64e7ab5827424d50945125b3 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:31:20] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 15:31:49.960231 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:31:49.961222 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:31:49.961222 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:31:49.961222 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:31:49.961222 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 15:32:12.167351 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:32:12.167351 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:32:12.167351 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:32:12.167351 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:32:12.167351 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 15:32:18.292682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:32:18.296372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:32:18.300521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:32:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:32:18] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:32:18] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:32:19.639896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:32:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:32:19.945428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:32:19.946437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:32:19.947446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:32:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:32:19] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:32:19] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:32:42.761689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:33:04.764985 : Pre_incription_training_confirmation_mail -unexpected char '&' at 3163 - ERRORRRR AT Line : 519 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:34:09] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:35:26.000724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:35:26.002221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:35:26.003562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:35:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:35:26] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:35:26] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:35:27.592126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:35:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:35:27.905836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:35:27.906839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:35:27.907837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:35:27] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:35:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:35:27] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:36:13.912946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:38:00.202704 : Notification_partner_Pre_incription_mail -[WinError 10060] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu - ERRORRRR AT Line : 610 +INFO:root:2023-09-10 15:38:00.205684 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email cherif.balde@yahoo.fr pour la session 64e7ab5827424d50945125b2 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:38:00] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:38:32.760060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:38:32] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:38:32.764061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:38:32] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:38:32.767072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:38:32] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:38:35.474264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:38:35] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:39:08.944372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:39:08] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:39:35.664088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:39:35] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:39:35.668784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:39:35] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:39:35.673794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:39:35] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:39:41.182930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:39:41.188181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:39:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:39:41.196218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:39:41] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:39:41] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:39:43.088324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:39:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:39:43.401515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:39:43.402524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:39:43.403514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:39:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:39:43] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:39:43] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:40:49.079461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:42:13.344064 : Pre_incription_training_confirmation_mail -[WinError 10060] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu - ERRORRRR AT Line : 445 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:42:14] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:43:06.495647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:43:06.496182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:43:06.499195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:43:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:43:06] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:43:06] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:43:08.042477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:43:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:43:08.353176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:43:08.355264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:43:08.356276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:43:08] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:43:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:43:08] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:43:23.435778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:43:44.635066 : Pre_incription_training_confirmation_mail -unexpected char '&' at 3169 - ERRORRRR AT Line : 519 +INFO:root:2023-09-10 15:45:08.860944 : Notification_partner_Pre_incription_mail -[WinError 10060] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu - ERRORRRR AT Line : 610 +INFO:root:2023-09-10 15:45:08.862944 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email cherif.balde@yahoo.fr pour la session 64e7ab5827424d50945125b2 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:45:08] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:47:17.285635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:47:17.290008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:47:17] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:47:17.297840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:47:17.303150 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:47:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:47:17] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:47:17.456206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:47:17] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:47:17.459870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:47:17.462983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:47:17] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:47:17] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:47:21.794411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:47:21] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:47:55.339304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:47:55] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:48:56.688036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:48:56.691501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:48:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:48:56.696943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:48:56.703943 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:48:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:48:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:48:56.846623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:48:56] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:48:56.851623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:48:56.853623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:48:56] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:48:56] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:49:01.201028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:49:01] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:49:32.295056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:49:32] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:49:53.429846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:49:53.431981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:49:53.432917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:49:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:49:53] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:49:53] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:49:56.130660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:49:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:49:56.435208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:49:56] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:49:56.446803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:49:56.447802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:49:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:49:56] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:50:14.750242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:51:19.127242 : Pre_incription_training_confirmation_mail -unexpected char '&' at 2999 - ERRORRRR AT Line : 519 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 15:52:02.812282 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:52:02.812282 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:52:02.812282 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:52:02.812282 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:52:02.812282 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 15:52:15.207645 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:52:15.208651 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:52:15.208651 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:52:15.208651 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:52:15.208651 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 15:52:30.339407 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 15:52:30.339407 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 15:52:30.339407 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 15:52:30.339407 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 15:52:30.339407 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 15:54:50.905067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:54:50] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:55:30.266364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:55:30] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:55:43.623450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:55:43.626920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:55:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:55:43.634045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:55:43] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:55:43.644094 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:55:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:55:43.769971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:55:43] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:55:43.773828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:55:43] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:55:43.778724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:55:43] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:55:47.002876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:55:47] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:56:09.861907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:56:10.370661 : Pre_incription_training_confirmation_mail -Unexpected end of template. Jinja was looking for the following tags: 'elif' or 'else' or 'endif'. The innermost block that needs to be closed is 'if'. - ERRORRRR AT Line : 519 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:56:16] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:57:32.426232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:57:32] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:58:04.992118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:58:05] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:59:30.784197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:59:30.785174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:59:30.790727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:59:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:59:30] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:59:30] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:59:33.018606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:59:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:59:33.320910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:59:33] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:59:33.332513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:59:33.335916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:59:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 15:59:33] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 15:59:50.416395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 15:59:50.459104 : Pre_incription_training_confirmation_mail -Unexpected end of template. Jinja was looking for the following tags: 'elif' or 'else' or 'endif'. The innermost block that needs to be closed is 'if'. - ERRORRRR AT Line : 519 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:00:41] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:02:47.455566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:02:47.459566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:02:47.462566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:02:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:02:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:02:47.474197 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:02:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:02:47.619011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:02:47] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:02:47.623599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:02:47] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:02:47.628788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:02:47] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:02:51.523177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:02:51] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:03:21.478131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:03:21.478131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:03:21.479145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:03:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:03:21] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:03:21] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:03:23.349013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:03:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:03:23.657515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:03:23.662161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:03:23.663218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:03:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:03:23] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:03:23] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:03:39.754787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:05:06] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:06:21.180915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:06:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:06:21.187849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:06:21.190863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:06:21.195866 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:06:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:06:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:06:21.362641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:06:21] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:06:21.365641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:06:21] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:06:21.370651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:06:21] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:06:55.019230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:06:55] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:07:17.014871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:07:17] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:07:36.330088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:07:36.335018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:07:36.341547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:07:36] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:07:36] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:07:43.565686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:07:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:07:43.887673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:07:43.889659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:07:43.893078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:07:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:07:43] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:07:43] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:08:00.683499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:09:25.909851 : Notification_partner_Pre_incription_mail -[WinError 10060] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu - ERRORRRR AT Line : 611 +INFO:root:2023-09-10 16:09:25.912858 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email cherif.balde@yahoo.fr pour la session 64e7ab5827424d50945125b2 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:09:25] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:13:59.880769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:13:59] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:13:59.886771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:13:59] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:13:59.891763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:13:59] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:14:09.950442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:14:09.955458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:14:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:14:09.960534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:14:09.968407 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:14:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:14:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:14:10.132225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:14:10] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:14:10.135237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:14:10] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:14:10.140251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:14:10] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:14:14.815040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:14:14] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:14:36.876173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:14:36] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:15:42.098317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:15:42] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:15:42.103336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:15:42.105390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:15:42] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:15:42] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:16:35.339381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:16:35.343378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:16:35.348917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:16:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:16:35] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:16:35] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:16:36.693804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:16:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:16:36.997684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:16:37.007359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:16:37] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:16:37.015156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:16:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:16:37] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:16:57.834931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:16:57.982689 : Pre_incription_training_confirmation_mail -unexpected char '&' at 2855 - ERRORRRR AT Line : 519 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:17:43] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:29:28.195712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:29:28.200713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:29:28.210716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:29:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:29:28.227769 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:29:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:29:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:29:28.379668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:29:28] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:29:28.387088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:29:28] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:29:28.392083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:29:28] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:29:32.321765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:29:32] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:30:02.356714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:30:02] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:30:03.036330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:30:03] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:44:49.223147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:44:49] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:44:49.231887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:44:49] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:44:49.238904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:44:49] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:45:11.985716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:45:11.992249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:45:11.997735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:45:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:45:12.008256 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:45:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:45:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:45:12.143397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:45:12] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:45:12.147691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:45:12.152683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:45:12] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:45:12] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:45:16.166355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:45:16] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:45:36.631643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:45:36] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:45:37.307169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:45:37] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:47:52.154607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:47:52.157674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:47:52.160026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:47:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:47:52] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:47:52] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:47:53.505694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:47:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:47:53.813823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:47:53.814821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:47:53.816819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:47:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:47:53] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:47:53] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:48:11.306498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 16:48:37.689074 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 16:48:37.689074 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 16:48:37.689074 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 16:48:37.689074 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 16:48:37.689074 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 16:49:27.060218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:49:27.679915 : Pre_incription_training_confirmation_mail -local variable 'PRE_INSCRIPTION_contenu_doc_Template' referenced before assignment - ERRORRRR AT Line : 520 +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:49:28] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 16:49:57.784568 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 16:49:57.784568 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 16:49:57.784568 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 16:49:57.784568 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 16:49:57.784568 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 16:51:03.502563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:51:03.503595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:51:03.506330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:51:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:51:03] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:51:03] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:51:06.398530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:51:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:51:06.702190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 16:51:06.707194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:51:06] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:51:06.712187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:51:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:51:06] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 16:51:20.107358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 16:51:22] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 16:52:51.914586 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 16:52:51.914586 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 16:52:51.915602 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 16:52:51.915602 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 16:52:51.915602 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:10:53.815292 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:10:53.815292 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:10:53.815292 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:10:53.815292 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:10:53.815292 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:18:01.442338 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:18:01.442338 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:18:01.442338 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:18:01.442338 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:18:01.442338 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:19:56.644977 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:19:56.644977 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:19:56.645511 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:19:56.645511 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:19:56.645511 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:21:00.715305 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:21:00.716308 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:21:00.716308 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:21:00.716308 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:21:00.716308 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:21:20.845087 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:21:20.845087 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:21:20.845087 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:21:20.845087 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:21:20.845087 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:21:48.832589 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:21:48.832589 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:21:48.832589 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:21:48.832589 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:21:48.832589 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:22:01.084421 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:22:01.084421 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:22:01.084421 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:22:01.084421 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:22:01.084421 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:22:29.464735 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:22:29.464735 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:22:29.464735 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:22:29.471707 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:22:29.471707 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:22:48.082351 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:22:48.083500 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:22:48.083500 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:22:48.083500 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:22:48.083500 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\email_inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:27:10.929745 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:27:10.929745 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:27:10.929745 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:27:10.929745 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:27:10.929745 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 17:30:47.021256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:30:47.023809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:30:47] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:30:47] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:30:47.030437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:30:47] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:33:29.261747 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:33:29.261747 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:33:29.261747 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:33:29.261747 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:33:29.262748 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:33:49.012923 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:33:49.013926 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:33:49.013926 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:33:49.013926 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:33:49.013926 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-10 17:35:38.135032 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-10 17:35:38.135032 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-10 17:35:38.135032 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-10 17:35:38.135032 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-10 17:35:38.135032 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 918-682-955 +INFO:root:2023-09-10 17:38:02.909955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:38:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:38:02.914259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:38:02] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:38:02.918692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:38:02] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:38:24.670833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:38:24] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:38:24.674854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:38:24.676823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:38:24] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:38:24] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:38:36.634185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:38:36.637779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:38:36.640257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:38:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:38:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:38:36.654267 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:38:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:38:36.760194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:38:36] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:38:36.764329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:38:36.767671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:38:36] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:38:36] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:40:39.771590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:40:39.774581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:40:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:40:39.779606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:40:39.785585 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:40:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:40:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:40:39.887317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:40:39] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:40:39.891391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:40:39.894482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:40:39] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:40:39] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:40:48.965218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:40:48] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:40:57.768722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:40:57] "POST /myclass/api/Get_Default_Partner_Document_By_Internal_Ref/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:41:44.861999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:41:44.864826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:41:44.869071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:41:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:41:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:41:44.878068 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:41:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:41:45.040552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:41:45] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:41:45.044445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:41:45] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:41:45.047686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:41:45] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:41:52.697177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:41:52] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:42:09.211945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:42:09] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:42:09.214697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:42:09.218189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:42:09] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:42:09] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:46:08.376418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:46:08.378693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:46:08.382539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:46:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:46:08.387096 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:46:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:46:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:46:08.500309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:46:08.501593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:46:08.502616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:46:08] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:46:08] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:46:08] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:46:13.966795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:46:13] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:46:23.043726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:46:23] "POST /myclass/api/Get_Default_Partner_Document_By_Internal_Ref/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:48:09.335673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:09] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:48:09.338955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:09] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:48:09.342264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:09] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:48:13.881163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:48:13.884985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:48:13.891975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:48:13.897015 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:48:13.998822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:14] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:48:14.001844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:48:14.005539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:14] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:14] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:48:29.688075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:29] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:48:33.196363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:33] "POST /myclass/api/Get_Default_Partner_Document_By_Internal_Ref/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:48:53.975918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:53] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:48:54.793875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:48:54] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:49:00.179029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:49:00.182498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:49:00.187954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:49:00.196644 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:49:00.304004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:49:00.305492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:00] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:00] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:49:00.309948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:00] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:49:02.755690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:02] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:49:07.147909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:07] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:49:38.521499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:49:38.524516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:49:38.526516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:38] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:38] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:49:42.311761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:49:42.624278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:49:42.629621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-10 17:49:42.634702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:42] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:49:42] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-09-10 17:50:03.908685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [10/Sep/2023 17:50:50] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - diff --git a/Session_Formation.py b/Session_Formation.py index a891eb9..ce3a486 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -477,6 +477,9 @@ def GetSessionFormation(diction): """ Cette fonction recupere la liste de toutes les sessions de formation actives et valides d'une formation données ET les sessions "on demande" + +/!\ : Cette fonction est utilisée en mode non connecté et en mode non connecté. +Donc faire attention au controle de la connexion """ def GetActiveSessionFormation_List(diction): try: @@ -492,16 +495,18 @@ def GetActiveSessionFormation_List(diction): """ Verification de la liste des champs obligatoires """ - field_list_obligatoire = [ 'token', 'class_internal_url', ] + field_list_obligatoire = [ 'class_internal_url', ] for val in field_list_obligatoire: if val not in diction: mycommon.myprint( str(inspect.stack()[0][3]) + " - : La valeur '" + val + "' n'est pas presente dans liste ") return False, "Impossible de recuperer la liste des session de formation" - local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) - if (local_status is not True): - return local_status, my_partner + # Le controle de token n'est effectué que une valeur est fournie dans le token + if( 'token' in diction.keys() and len(str(diction['token'])) > 0) : + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner # Recuperation du recid du partner @@ -515,14 +520,15 @@ def GetActiveSessionFormation_List(diction): coll_session = MYSY_GV.dbname['session_formation'] myquery = {} myquery['class_internal_url'] = class_internal_url - myquery['partner_owner_recid'] = str(my_partner['recid']) + + myquery['valide'] = "1" - myquery['session_status'] = "true" + myquery['session_status'] = "1" RetObject = [] - print(" ### myquery = ", myquery) + #print(" ### GetActiveSessionFormation_List myquery = ", myquery) for retval in coll_session.find(myquery): local_tmp = retval @@ -544,7 +550,7 @@ def GetActiveSessionFormation_List(diction): - #print("####RetObject = "+str(RetObject)) + print("#### GetActiveSessionFormation_List RetObject = "+str(RetObject)) return True, RetObject diff --git a/email_inscription_mgt.py b/email_inscription_mgt.py index a75119f..49e5b9d 100644 --- a/email_inscription_mgt.py +++ b/email_inscription_mgt.py @@ -98,7 +98,7 @@ def incription_training_confirmation_mail(diction): # on rentre les renseignements pris sur le site du fournisseur # msg = MIMEMultipart("alternative") - smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) + msg = EmailMessage() local_code_postal = "" @@ -154,6 +154,52 @@ def incription_training_confirmation_mail(diction): msg.set_content(sourceHtml, subtype='html') + """ + Update du 10/09/2023 : + Utiliser les documents personnalisés qui sont stockés en base de données plutot que des format de fichiers plats. + + Regles d'utilisation : + 1 - Recuperer les fichier personnalisé pour le partenaire (partner_owner_recid et ref_interne). + 2 - Si aucun fichier de personnalisation pour le partenaire, alors utiliser le fichier par defaut (partner_owner_recid = "default" et ref_interne). + 3 - Pour le cas de pre-inscription, la ref_interne du fichier est 'PRE_INSCRIPTION' + + """ + + partner_document_CONF_INSCRIPTION_data_qry = {'partner_owner_recid': str(diction['partner_owner_recid']), + 'valide': '1', 'locked': '0', 'ref_interne': 'CONF_INSCRIPTION'} + + print(" ### partner_document_CONF_INSCRIPTION_data_qry = ", partner_document_CONF_INSCRIPTION_data_qry) + partner_document_CONF_INSCRIPTION_data = MYSY_GV.dbname['courrier_template'].find_one( + {'partner_owner_recid': str(diction['partner_owner_recid']), + 'valide': '1', 'locked': '0', 'ref_interne': 'PRE_INSCRIPTION'}) + + if (partner_document_CONF_INSCRIPTION_data is None): + # Il n'existe pas de personnalisation de la preinscription pour ce partenaire, on va aller recuperer la presinscription pa defaut + partner_document_CONF_INSCRIPTION_data = MYSY_GV.dbname['courrier_template'].find_one( + {'partner_owner_recid': 'default', + 'valide': '1', 'locked': '0', 'ref_interne': 'CONF_INSCRIPTION'}) + + if (partner_document_CONF_INSCRIPTION_data is None): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + "-Impossible d'envoyer l'email de la preinscription. Aucun document parametré ") + return False, " Impossible d'envoyer l'email de la preinscription. Aucun document parametré " + + if ("contenu_doc" not in partner_document_CONF_INSCRIPTION_data or len( + str(partner_document_CONF_INSCRIPTION_data['contenu_doc'])) <= 0): + mycommon.myprint(str(inspect.stack()[0][ + 3]) + " -Impossible d'envoyer l'email de la preinscription. Le parametrage du document est invalide") + return False, " Impossible d'envoyer l'email de la preinscription. Le parametrage du document est invalide " + + CONF_INSCRIPTION_contenu_doc_Template = jinja2.Template( + str(partner_document_CONF_INSCRIPTION_data['contenu_doc'])) + sourceHtml = CONF_INSCRIPTION_contenu_doc_Template.render(params=body["params"]) + + # print(" ### PRE_INSCRIPTION_contenu_doc = ",str(sourceHtml)) + msg.set_content(sourceHtml, subtype='html') + + smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) + msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User msg['Bcc'] = 'contact@mysy-training.com' @@ -228,7 +274,7 @@ def incription_training_refused_mail(diction): # on rentre les renseignements pris sur le site du fournisseur # msg = MIMEMultipart("alternative") - smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) + msg = EmailMessage() # JINJA2 @@ -269,8 +315,53 @@ def incription_training_refused_mail(diction): sourceHtml = template.render(params=body["params"]) msg.set_content(sourceHtml, subtype='html') + """ + Update du 10/09/2023 : + Utiliser les documents personnalisés qui sont stockés en base de données plutot que des format de fichiers plats. + + Regles d'utilisation : + 1 - Recuperer les fichier personnalisé pour le partenaire (partner_owner_recid et ref_interne). + 2 - Si aucun fichier de personnalisation pour le partenaire, alors utiliser le fichier par defaut (partner_owner_recid = "default" et ref_interne). + 3 - Pour le cas de pre-inscription, la ref_interne du fichier est 'PRE_INSCRIPTION' + + """ + + partner_document_REFUS_INSCRIPTION_data_qry = {'partner_owner_recid': str(diction['partner_owner_recid']), + 'valide': '1', 'locked': '0', 'ref_interne': 'REFUS_INSCRIPTION'} + + print(" ### partner_document_REFUS_INSCRIPTION_data_qry = ", partner_document_REFUS_INSCRIPTION_data_qry) + partner_document_REFUS_INSCRIPTION_data = MYSY_GV.dbname['courrier_template'].find_one( + {'partner_owner_recid': str(diction['partner_owner_recid']), + 'valide': '1', 'locked': '0', 'ref_interne': 'REFUS_INSCRIPTION'}) + + if (partner_document_REFUS_INSCRIPTION_data is None): + # Il n'existe pas de personnalisation de la preinscription pour ce partenaire, on va aller recuperer la presinscription pa defaut + partner_document_PRE_INSCRIPTION_data = MYSY_GV.dbname['courrier_template'].find_one( + {'partner_owner_recid': 'default', + 'valide': '1', 'locked': '0', 'ref_interne': 'REFUS_INSCRIPTION'}) + + if (partner_document_REFUS_INSCRIPTION_data is None): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + "-Impossible d'envoyer l'email de la preinscription. Aucun document parametré ") + return False, " Impossible d'envoyer l'email de la preinscription. Aucun document parametré " + + if ("contenu_doc" not in partner_document_REFUS_INSCRIPTION_data or len( + str(partner_document_REFUS_INSCRIPTION_data['contenu_doc'])) <= 0): + mycommon.myprint(str(inspect.stack()[0][ + 3]) + " -Impossible d'envoyer l'email de la preinscription. Le parametrage du document est invalide") + return False, " Impossible d'envoyer l'email de la preinscription. Le parametrage du document est invalide " + + REFUS_INSCRIPTION_contenu_doc_Template = jinja2.Template( + str(partner_document_REFUS_INSCRIPTION_data['contenu_doc'])) + sourceHtml = REFUS_INSCRIPTION_contenu_doc_Template.render(params=body["params"]) + + # print(" ### PRE_INSCRIPTION_contenu_doc = ",str(sourceHtml)) + msg.set_content(sourceHtml, subtype='html') + + smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = '[MySy Training]: Inscription formation refusée' @@ -418,7 +509,7 @@ def Pre_incription_training_confirmation_mail(diction): """ Verification de la liste des champs obligatoires """ - field_list_obligatoire = ['nom', 'prenom', 'email', 'date_du', 'date_au', 'title', 'distantiel', 'presentiel'] + field_list_obligatoire = ['nom', 'prenom', 'email', 'date_du', 'date_au', 'title', 'distantiel', 'presentiel', 'partner_owner_recid'] for val in field_list_obligatoire: if val not in diction: mycommon.myprint( @@ -430,7 +521,7 @@ def Pre_incription_training_confirmation_mail(diction): tomorrow = datetime.date.today() + datetime.timedelta(days=1) tomorrow_day = tomorrow.strftime("%A") - print("debut envoi mail de test ") + print(" Pre_incription_training_confirmation_mail : debut envoi mail de test ") # on rentre les renseignements pris sur le site du fournisseur msg = MIMEMultipart("alternative") @@ -442,7 +533,7 @@ def Pre_incription_training_confirmation_mail(diction): # msg = MIMEMultipart("alternative") msg = EmailMessage() - smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) + local_adress = "" if ("adresse" in diction.keys()): @@ -481,6 +572,50 @@ def Pre_incription_training_confirmation_mail(diction): msg.set_content(sourceHtml, subtype='html') + """ + Update du 10/09/2023 : + Utiliser les documents personnalisés qui sont stockés en base de données plutot que des format de fichiers plats. + + Regles d'utilisation : + 1 - Recuperer les fichier personnalisé pour le partenaire (partner_owner_recid et ref_interne). + 2 - Si aucun fichier de personnalisation pour le partenaire, alors utiliser le fichier par defaut (partner_owner_recid = "default" et ref_interne). + 3 - Pour le cas de pre-inscription, la ref_interne du fichier est 'PRE_INSCRIPTION' + + """ + + partner_document_PRE_INSCRIPTION_data_qry = {'partner_owner_recid':str(diction['partner_owner_recid']), + 'valide':'1', 'locked':'0', 'ref_interne': 'CONF_PRE_INSCRIPTION'} + + print(" ### partner_document_PRE_INSCRIPTION_data_qry = ",partner_document_PRE_INSCRIPTION_data_qry) + partner_document_PRE_INSCRIPTION_data = MYSY_GV.dbname['courrier_template'].find_one({'partner_owner_recid':str(diction['partner_owner_recid']), + 'valide':'1', 'locked':'0', 'ref_interne': 'CONF_PRE_INSCRIPTION'}) + + if( partner_document_PRE_INSCRIPTION_data is None ): + # Il n'existe pas de personnalisation de la preinscription pour ce partenaire, on va aller recuperer la presinscription pa defaut + partner_document_PRE_INSCRIPTION_data = MYSY_GV.dbname['courrier_template'].find_one( + {'partner_owner_recid': 'default', + 'valide': '1', 'locked': '0', 'ref_interne': 'CONF_PRE_INSCRIPTION'}) + + + + if( partner_document_PRE_INSCRIPTION_data is None): + mycommon.myprint( + str(inspect.stack()[0][3]) + "-Impossible d'envoyer l'email de la preinscription. Aucun document parametré ") + return False, " Impossible d'envoyer l'email de la preinscription. Aucun document parametré " + + if( "contenu_doc" not in partner_document_PRE_INSCRIPTION_data or len(str(partner_document_PRE_INSCRIPTION_data['contenu_doc'])) <= 0 ): + mycommon.myprint( str(inspect.stack()[0][3]) + " -Impossible d'envoyer l'email de la preinscription. Le parametrage du document est invalide") + return False, " Impossible d'envoyer l'email de la preinscription. Le parametrage du document est invalide " + + PRE_INSCRIPTION_contenu_doc_Template = jinja2.Template(str(partner_document_PRE_INSCRIPTION_data['contenu_doc'])) + sourceHtml = PRE_INSCRIPTION_contenu_doc_Template.render(params=body["params"]) + + #print(" ### PRE_INSCRIPTION_contenu_doc = ",str(sourceHtml)) + msg.set_content(sourceHtml, subtype='html') + + smtpserver = smtplib.SMTP(MYSY_GV.O365_SMTP_COUNT_smtpsrv, MYSY_GV.O365_SMTP_COUNT_port) + + msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User msg['Bcc'] = 'contact@mysy-training.com' msg['Subject'] = '[MySy Training] : pre-inscription formation' diff --git a/email_mgt.py b/email_mgt.py index 03be54e..e813a13 100644 --- a/email_mgt.py +++ b/email_mgt.py @@ -1826,7 +1826,7 @@ def SendEmargementMail( diction): # JINJA2 templateLoader = jinja2.FileSystemLoader(searchpath="./") templateEnv = jinja2.Environment(loader=templateLoader) - TEMPLATE_FILE = "Template/MySy_Emargement.html" + TEMPLATE_FILE = "Template/ MySy_Emargement.html" template = templateEnv.get_template(TEMPLATE_FILE) # This data can come from database query # envoie de l'emargement du matin diff --git a/main.py b/main.py index a7409c6..8bf2713 100644 --- a/main.py +++ b/main.py @@ -51,6 +51,7 @@ import Activite as Activite import ressources_humaines as ressources_humaines import ressources_materiels as ressources_materiels import partner_order as partner_order +import partner_document_mgt as partner_document_mgt app = Flask(__name__) cors = CORS(app, resources={r"/foo": {"origins": "*"}}) @@ -4377,6 +4378,102 @@ def Get_Given_Partner_Order_Lines_From_order_ref_interne(): return jsonify(status=status, message=retval) + +""" +API qui permet d'ajouter un document personnalisable +""" +@app.route('/myclass/api/Add_Partner_Document/', methods=['POST','GET']) +@crossdomain(origin='*') +def Add_Partner_Document(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Add_Partner_Document payload = ",payload) + status, retval = partner_document_mgt.Add_Partner_Document(payload) + return jsonify(status=status, message=retval) + + +""" +API qui permet de modifier un document personnalisable +""" +@app.route('/myclass/api/Update_Partner_Document/', methods=['POST','GET']) +@crossdomain(origin='*') +def Update_Partner_Document(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Update_Partner_Document payload = ",payload) + status, retval = partner_document_mgt.Update_Partner_Document(payload) + return jsonify(status=status, message=retval) + +""" +API qui permet de recuperer un document personnalisable donné +""" +@app.route('/myclass/api/Get_Given_Partner_Document/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Given_Partner_Document(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Given_Partner_Document payload = ",payload) + status, retval = partner_document_mgt.Get_Given_Partner_Document(payload) + return jsonify(status=status, message=retval) + + +""" +API de recuperation d'un document d'orignine (template) +""" +@app.route('/myclass/api/Get_Default_Partner_Document_By_Internal_Ref/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Default_Partner_Document_By_Internal_Ref(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Default_Partner_Document_By_Internal_Ref payload = ",payload) + status, retval = partner_document_mgt.Get_Default_Partner_Document_By_Internal_Ref(payload) + return jsonify(status=status, message=retval) + + + + +""" +API qui permet de supprimer un document personnalisable +""" +@app.route('/myclass/api/Delete_Partner_Document/', methods=['POST','GET']) +@crossdomain(origin='*') +def Delete_Partner_Document(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Delete_Partner_Document payload = ",payload) + status, retval = partner_document_mgt.Delete_Partner_Document(payload) + return jsonify(status=status, message=retval) + + + + +""" +API qui permet de recuperer la liste des documents personnalisables d'un partenaire +""" +@app.route('/myclass/api/Get_List_Partner_Document/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_List_Partner_Document(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_List_Partner_Document payload = ",payload) + status, retval = partner_document_mgt.Get_List_Partner_Document(payload) + return jsonify(status=status, message=retval) + +""" +API qui permet de recuperer la liste des documents personnalisables d'un partenaire sans filtre +""" +@app.route('/myclass/api/Get_List_Partner_Document_no_filter/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_List_Partner_Document_no_filter(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_List_Partner_Document_no_filter payload = ",payload) + status, retval = partner_document_mgt.Get_List_Partner_Document_no_filter(payload) + return jsonify(status=status, message=retval) + + + + if __name__ == '__main__': print(" debut api") context = SSL.Context(SSL.SSLv23_METHOD) diff --git a/partner_document_mgt.py b/partner_document_mgt.py index cafd66d..06221df 100644 --- a/partner_document_mgt.py +++ b/partner_document_mgt.py @@ -619,4 +619,77 @@ def Get_List_Partner_Document_no_filter(diction): +""" +Pour permettre de rénitialiser un template 'detruit' par un user, +Cette fonction permet de recuperer les données d'origine du template +""" +def Get_Default_Partner_Document_By_Internal_Ref(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'ref_interne'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'ref_interne'] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['partner_owner_recid'] = 'default' + data_cle['ref_interne'] = str(diction['ref_interne']) + + data_cle['valide'] = "1" + data_cle['locked'] = "0" + + RetObject = [] + val_tmp = 1 + + #print(" ### data_cle = ", data_cle) + for retval in MYSY_GV.dbname['courrier_template'].find(data_cle): + user = retval + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + + RetObject.append(mycommon.JSONEncoder().encode(user)) + + #print(" ### RetObject = ", RetObject) + return True, RetObject + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de recuperer le modèle de document d'origine "