diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 14af04f..4c4d0d0 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,15 +1,13 @@ - + - + - - @@ -464,7 +462,6 @@ - @@ -489,6 +486,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index c96d850..1244323 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -6480,7 +6480,9 @@ On y ajoute la formation concernée """ def Get_Statgaire_List_Partner_with_filter(diction): try: - field_list = ['token', 'class_internal_url', 'code_session', 'status', 'email', 'nom', 'class_title', 'code_session','client_nom'] + field_list = ['token', 'class_internal_url', 'code_session', 'status', 'email', 'nom', + 'class_title', 'code_session','client_nom', 'client_rattachement_id', + 'session_id'] incom_keys = diction.keys() for val in incom_keys: if val not in field_list and val.startswith('my_') is False: @@ -6529,7 +6531,7 @@ def Get_Statgaire_List_Partner_with_filter(diction): qry_list_session_id = {"$and": [{'code_session': {'$regex': str(diction['code_session']), "$options": "i"}}, {'partner_owner_recid': str(partner_recid)}]} - print(" ### qry_list_session_id aa = ", qry_list_session_id) + #print(" ### qry_list_session_id aa = ", qry_list_session_id) list_session_id_count = MYSY_GV.dbname['session_formation'].count_documents(qry_list_session_id) if( list_session_id_count <= 0 ): @@ -6561,6 +6563,13 @@ def Get_Statgaire_List_Partner_with_filter(diction): filt_class_partner_recid = {'partner_owner_recid': str(partner_recid)} + filt_client_rattachement_id = {} + if ("client_rattachement_id" in diction.keys()): + filt_client_rattachement_id = {'client_rattachement_id': str(diction['client_rattachement_id'])} + + filt_session_id = {} + if ("session_id" in diction.keys()): + filt_session_id = {'session_id': str(diction['session_id'])} # ----- @@ -6582,7 +6591,8 @@ def Get_Statgaire_List_Partner_with_filter(diction): #---- - query = [{'$match':{ '$and' : [ filt_class_internal_url, filt_session_id, filt_email, filt_nom, filt_client_nom, {'partner_owner_recid':str(partner_recid)}] } }, + query = [{'$match':{ '$and' : [ filt_class_internal_url, filt_session_id, filt_email, filt_nom, filt_client_nom, filt_client_rattachement_id, + filt_session_id, {'partner_owner_recid':str(partner_recid)}] } }, {'$sort': {'_id': -1}}, {'$lookup': { @@ -6616,7 +6626,7 @@ def Get_Statgaire_List_Partner_with_filter(diction): ] print("#### Get_Statgaire_List_Partner_with_filter laa 01 : query = ", query) RetObject = [] - cpt = 1 + cpt = 0 for retVal in MYSY_GV.dbname['inscription'].aggregate(query): val = {} if ('myclass_collection' in retVal.keys() and len(retVal['myclass_collection']) > 0): @@ -6626,8 +6636,8 @@ def Get_Statgaire_List_Partner_with_filter(diction): val['_id'] = retVal['_id'] val['session_id'] = retVal['session_id'] val['class_internal_url'] = retVal['class_internal_url'] - val['nom'] = retVal['nom'] + val['partner_owner_recid'] = retVal['partner_owner_recid'] val['prenom'] = retVal['prenom'] val['email'] = retVal['email'] @@ -6638,7 +6648,6 @@ def Get_Statgaire_List_Partner_with_filter(diction): val['civilite'] = "" - if( "modefinancement" in retVal.keys()): val['modefinancement'] = retVal['modefinancement'] else: @@ -6907,6 +6916,10 @@ def Get_Statgaire_List_Partner_with_filter(diction): return False, "Impossible de récupérer la liste des stagiaires" + + + + """ Cette fonction prend '_id' d'une ligne et retour les information de l'inscription associé. @@ -10702,3 +10715,325 @@ def Export_Inscription_To_Excel_From_from_List_Id(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) return False, " Impossible d'exporter les inscrits " + + +""" +Dans le cadre de la modification des inscription +cette fonction permet de recuperer les données des inscrit (on ne va pas chercher les données de l'apprenant). + +Ici l'inscription n'est pas validée encore +""" + + +def Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN(diction): + try: + field_list = ['partner_owner_recid', 'class_internal_url', 'code_session', 'status', 'email', 'nom', + 'class_title', 'code_session', 'client_nom', 'client_rattachement_id', + 'session_id'] + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str(inspect.stack()[0][ + 3]) + " - Le champ '" + val + "' n'est pas autorisé, Creation partenaire annulée") + return False, "Toutes les informations fournies ne sont pas valables" + + + # Recuperation du recid du partner + mydata = {} + mytoken = "" + if ("token" in diction.keys()): + if diction['token']: + mytoken = diction['token'] + + + partner_recid = diction['partner_owner_recid'] + + """ + Etape 1 : si on a le champ 'code session' saisie par l'utilisateur, + alors on va commencer par aller cherche toutes les session avec un regex de la valeur saisie filter sur le partner_recid + + """ + filt_session_id = {} + list_session_id = [] + if ("code_session" in diction.keys()): + filt_code_session = {'code_session': {'$regex': str(diction['code_session']), "$options": "i"}} + + + qry_list_session_id = {"$and": [{'code_session': {'$regex': str(diction['code_session']), "$options": "i"}}, + {'partner_owner_recid': str(partner_recid)}]} + + # print(" ### qry_list_session_id aa = ", qry_list_session_id) + list_session_id_count = MYSY_GV.dbname['session_formation'].count_documents(qry_list_session_id) + + if (list_session_id_count <= 0): + # Aucune session + return True, [] + + for val in MYSY_GV.dbname['session_formation'].find(qry_list_session_id): + list_session_id.append(str(val['_id'])) + + print(" ### liste des Id des sessions eligible list_session_id = ", list_session_id) + filt_session_id = {'session_id': {'$in': list_session_id, }} + + filt_class_title = {} + if ("class_title" in diction.keys()): + filt_class_title = {'title': {'$regex': str(diction['class_title']), "$options": "i"}} + + filt_class_internal_url = {} + if ("class_internal_url" in diction.keys()): + filt_class_internal_url = { + 'class_internal_url': {'$regex': str(diction['class_internal_url']), "$options": "i"}} + + filt_email = {} + if ("email" in diction.keys()): + filt_email = {'email': {'$regex': str(diction['email']), "$options": "i"}} + + filt_nom = {} + if ("nom" in diction.keys()): + filt_nom = {'nom': {'$regex': str(diction['nom']), "$options": "i"}} + + filt_class_partner_recid = {'partner_owner_recid': str(partner_recid)} + + filt_client_rattachement_id = {} + if ("client_rattachement_id" in diction.keys()): + filt_client_rattachement_id = {'client_rattachement_id': str(diction['client_rattachement_id'])} + + filt_session_id = {} + if ("session_id" in diction.keys()): + filt_session_id = {'session_id': str(diction['session_id'])} + + # ----- + + filt_client_nom = {} + sub_filt_client_nom = {} + Lists_partner_client_id = [] + if ("client_nom" in diction.keys()): + sub_filt_client_nom = {'nom': {'$regex': str(diction['client_nom']), "$options": "i"}, + 'partner_recid': str(partner_recid), 'valide': '1', 'locked': '0'} + # Recuperation des '_id' des clients dont le nom match en regexp + # print(" ### sub_filt_client_nom = ", sub_filt_client_nom) + for List_Client_Data in MYSY_GV.dbname['partner_client'].find(sub_filt_client_nom, {'_id': 1}): + Lists_partner_client_id.append(str(List_Client_Data['_id'])) + + filt_client_nom = {'client_rattachement_id': {'$in': Lists_partner_client_id, }} + # print(' ### filt_client_nom = ', filt_client_nom) + + # ---- + + query = [{'$match': {'$and': [filt_class_internal_url, filt_session_id, filt_email, filt_nom, filt_client_nom, + filt_client_rattachement_id, + filt_session_id, {'partner_owner_recid': str(partner_recid)}]}}, + {'$sort': {'_id': -1}}, + {'$lookup': + { + 'from': 'myclass', + 'localField': 'class_internal_url', + 'foreignField': 'internal_url', + 'pipeline': [{'$match': {'$and': [filt_class_title, filt_class_partner_recid]}}, + {'$project': {'title': 1, 'domaine': 1, + 'duration': 1, + 'duration_unit': 1}}], + 'as': 'myclass_collection' + } + }, + + ] + print("#### Get_Statgaire_List_Partner_with_filter_ONLY_INSCRIPTION laa 01 : query = ", query) + RetObject = [] + cpt = 0 + for retVal in MYSY_GV.dbname['inscription'].aggregate(query): + val = {} + if ('myclass_collection' in retVal.keys() and len(retVal['myclass_collection']) > 0): + + val['id'] = str(cpt) + cpt = cpt + 1 + val['_id'] = retVal['_id'] + val['session_id'] = retVal['session_id'] + val['class_internal_url'] = retVal['class_internal_url'] + val['nom'] = retVal['nom'] + val['partner_owner_recid'] = retVal['partner_owner_recid'] + val['prenom'] = retVal['prenom'] + + val['email'] = retVal['email'] + + if ("civilite" in retVal.keys()): + val['civilite'] = retVal['civilite'] + else: + val['civilite'] = "" + + if ("modefinancement" in retVal.keys()): + val['modefinancement'] = retVal['modefinancement'] + else: + val['modefinancement'] = "" + + if ("opco" in retVal.keys()): + val['opco'] = retVal['opco'] + else: + val['opco'] = "" + + if ("employeur" in retVal.keys()): + val['employeur'] = retVal['employeur'] + else: + val['employeur'] = "" + + if ("telephone" in retVal.keys()): + val['telephone'] = retVal['telephone'] + else: + val['telephone'] = "" + + if ("date_naissance" in retVal.keys()): + val['date_naissance'] = retVal['date_naissance'] + else: + val['date_naissance'] = "" + + if ("adresse" in retVal.keys()): + val['adresse'] = retVal['adresse'] + else: + val['adresse'] = "" + + if ("code_postal" in retVal.keys()): + val['code_postal'] = retVal['code_postal'] + else: + val['code_postal'] = "" + + if ("ville" in retVal.keys()): + val['ville'] = retVal['ville'] + else: + val['ville'] = "" + + if ("pays" in retVal.keys()): + val['pays'] = retVal['pays'] + else: + val['pays'] = "" + + val['status'] = retVal['status'] + + val['title'] = retVal['myclass_collection'][0]['title'] + if ("domaine" in retVal['myclass_collection'][0].keys()): + val['domaine'] = retVal['myclass_collection'][0]['domaine'] + else: + val['domaine'] = "" + + # Recuperation des informations de la session + local_qry = {'_id': ObjectId(retVal['session_id']), 'valide': '1'} + + # print(" #### local_qry zzz = ", local_qry) + + count_session = MYSY_GV.dbname['session_formation'].count_documents(local_qry) + + client_rattachement_id = "" + client_rattachement_nom = "" + + # Si il a un client rattacher, recuperation des information du client + # print(" ### retVal = ", retVal ) + if ("client_rattachement_id" in retVal.keys()): + if (retVal['client_rattachement_id'] and str(retVal['client_rattachement_id']) != 'undefined'): + client_retval = MYSY_GV.dbname['partner_client'].find_one( + {'_id': ObjectId(retVal['client_rattachement_id']), + 'valide': '1', 'locked': '0'}) + + if (client_retval is not None): + client_rattachement_id = client_retval['_id'] + client_rattachement_nom = client_retval['nom'] + + val['client_rattachement_id'] = client_rattachement_id + val['client_rattachement_nom'] = client_rattachement_nom + + # ---- + + invoiced = "" + if ("invoiced" in retVal.keys()): + invoiced = retVal['invoiced'] + val['invoiced'] = invoiced + + invoiced_ref = "" + if ("invoiced_ref" in retVal.keys()): + invoiced_ref = retVal['invoiced_ref'] + val['invoiced_ref'] = invoiced_ref + + invoiced_date = "" + if ("invoiced_date" in retVal.keys()): + invoiced_date = str(retVal['invoiced_date'])[0:10] + val['invoiced_date'] = invoiced_date + + financeur_rattachement_id = "" + financeur_rattachement_nom = "" + + # Si il a un client rattacher, recuperation des information du client + # print(" ### retVal = ", retVal ) + if ("financeur_rattachement_id" in retVal.keys()): + if (retVal['financeur_rattachement_id'] and str( + retVal['financeur_rattachement_id']) != 'undefined'): + client_retval = MYSY_GV.dbname['partner_client'].find_one( + {'_id': ObjectId(retVal['financeur_rattachement_id']), + 'valide': '1', 'locked': '0'}) + + if (client_retval is not None): + financeur_rattachement_id = client_retval['_id'] + financeur_rattachement_nom = client_retval['nom'] + + val['financeur_rattachement_id'] = financeur_rattachement_id + val['financeur_rattachement_nom'] = financeur_rattachement_nom + + if (count_session != 1): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Impossible de récupérer la liste des stagiaires, Il y a une incohérence sur la session : " + str( + retVal['session_id'])) + return False, "Impossible de récupérer la liste des stagiaires, Les informations d'identification sont incorrectes. Il y a une incohérence sur la session : " + str( + retVal['session_id']) + + # qry2 = {'class_internal_url':str(retVal['class_internal_url']), 'code_session':str(retVal['session_id']), 'valide':'1'} + # print(" ### qry 2 =", qry2) + session_retval = MYSY_GV.dbname['session_formation'].find_one( + {'_id': ObjectId(str(retVal['session_id'])), 'valide': '1'}) + + if ("code_session" in session_retval.keys()): + val['code_session'] = str(session_retval['code_session']) + else: + val['code_session'] = "" + + if ("date_debut" in session_retval.keys()): + val['date_du'] = str(session_retval['date_debut'])[0:10] + else: + val['date_du'] = "" + + if ("date_fin" in session_retval.keys()): + val['date_au'] = str(session_retval['date_fin'])[0:10] + else: + val['date_au'] = "" + + if ("code_postal" in session_retval.keys()): + val['code_postal'] = session_retval['code_postal'] + else: + val['code_postal'] = "" + + if ("prix_session" in session_retval.keys()): + val['price'] = session_retval['prix_session'] + else: + val['price'] = "" + + if ("presentiel" in session_retval.keys()): + val['presentiel'] = session_retval['presentiel'] + else: + val['presentiel'] = "0" + + if ("distantiel" in session_retval.keys()): + val['distantiel'] = session_retval['distantiel'] + else: + val['distantiel'] = "0" + + if ("session_ondemande" in session_retval.keys()): + val['session_ondemande'] = session_retval['session_ondemande'] + else: + val['session_ondemande'] = "0" + + + RetObject.append(mycommon.JSONEncoder().encode(val)) + + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) + return False, "Impossible de récupérer la liste des stagiaires" diff --git a/Log/log_file.log b/Log/log_file.log index 3718970..d287f6b 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2251743,3 +2251743,1522 @@ INFO:root:2024-04-20 12:57:20.024935 : ++ FLASK PORT 5001 ++ INFO:root:2024-04-20 12:57:20.024935 : ++ LMS_BAS_URL mysy-training.com/ ++ WARNING:werkzeug: * Debugger is active! INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-04-20 14:21:31.183578 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 14:21:31.184586 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 14:21:31.184586 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 14:21:31.184586 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 14:21:31.184586 : ++ 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:2024-04-20 14:21:47.433193 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 14:21:47.434204 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 14:21:47.434204 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 14:21:47.434204 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 14:21:47.435220 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 16:43:50.423567 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 16:43:50.423567 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 16:43:50.423567 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 16:43:50.423567 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 16:43:50.423567 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-04-20 16:43:50.496036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:50.499480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:50.501475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:50.504003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:50.506484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:50.511132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:50] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:50] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:50.534846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:50.537842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:50.540418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:50.543932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:50] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:50] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:50] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:50] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:50] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:50] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.087530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.091730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.096834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.101043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.104418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.114524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.120713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.126771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.132279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.134737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.138313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.146807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.153535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.158969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.165173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.169856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.174402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.181413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.186346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.191594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.197148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.204265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.209157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.215671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.219838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.224724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.229787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.235705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.240763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.245127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.251030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.265846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.271367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.274710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.283306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.287301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.288301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.294316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.300778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.306318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.312319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.316322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.320817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.327342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.334348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.337838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.343651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.351754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.359018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.366422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.369687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.377290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.382655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.387579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.393315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.399567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.402580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.406353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:43:51.412023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:43:51.424258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:43:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 16:45:38.894772 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 16:45:38.894772 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 16:45:38.894772 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 16:45:38.894772 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 16:45:38.894772 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 16:47:02.956075 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 16:47:02.956978 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 16:47:02.956978 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 16:47:02.956978 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 16:47:02.956978 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-04-20 16:47:02.991610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:47:03.110436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:47:03.114442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:47:03.116800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:47:03.119813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:47:03.123684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:47:03.130709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:47:03.144162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:47:03.149158 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:47:03.154369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:47:03.166083 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-04-20 16:47:03.264279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:47:03.267799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:47:03.271672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 16:47:03.277857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 16:47:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 16:47:44.532285 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 16:47:44.532285 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 16:47:44.533653 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 16:47:44.533653 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 16:47:44.533653 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 16:50:39.247638 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 16:50:39.248635 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 16:50:39.248635 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 16:50:39.248635 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 16:50:39.248635 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-04-20 17:11:40.256607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 17:11:40.268105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:11:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:11:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:13:01.854845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:13:01] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:13:34.084749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:13:34] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:14:17.473647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:14:17] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:15:56.283367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:15:56] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:16:17.824522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:16:17] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:16:31.148965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:16:31] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:19:38.303628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 17:19:38.308627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:19:38] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:19:38] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:32:00.086819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:32:00] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:32:37.653148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:32:37] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:38:11.419448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:38:11] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:38:17.513896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:38:17] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:42:34.073675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 17:42:34.082707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:42:34] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:42:34] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:48:19.209062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 17:48:19.221361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:48:19] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:48:19] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:49:47.218565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:49:47] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:50:10.818880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 17:50:10.834305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:50:10] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:50:10] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:50:49.521146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:50:49] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:53:01.887252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:53:01] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:58:41.531097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:58:41] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 17:59:24.099640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 17:59:24.110970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:59:24] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 17:59:24] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:00:39.352941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:00:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 18:03:58.197405 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 18:03:58.197405 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 18:03:58.197405 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 18:03:58.197405 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 18:03:58.197405 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-04-20 18:03:58.264848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:03:58.268840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:03:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:03:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:08:14.679599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:08:14] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:09:00.711561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:09:00] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:09:59.788427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:09:59] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:11:23.283520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:11:23] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:11:30.663234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:11:30.672039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:11:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:11:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:12:40.873487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:12:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:12:47.788616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:12:47.799972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:12:47] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:12:47] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:13:57.670296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:13:57] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:14:49.774682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:14:49.783634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:14:49] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:14:49] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:17:38.143137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:17:38.151670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:17:38] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:17:38] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:17:45.422143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:17:45] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:17:54.446875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:17:54.457444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:17:54] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:17:54] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:20:51.817307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:20:51.824863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:20:51] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:20:51] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:22:05.721953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:22:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:22:06.307128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:22:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:22:07.947950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:22:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:23:09.319381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:23:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:31:12.616349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:31:12.654824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:31:12] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:31:12] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:31:36.670286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:31:36] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:34:41.153203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:34:41.166970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:34:41] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:34:41] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:36:15.115750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:36:15] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:36:16.188378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:36:16] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:40:53.806581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:40:53.824706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:40:53] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:40:53] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:41:20.382663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:41:20] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:48:39.097370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:48:39.182011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:48:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:48:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:49:04.860733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:49:04.903453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:49:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:49:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:51:11.151812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:51:11.157026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:51:11] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:51:11] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:53:01.669722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:53:01.690756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:53:01] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:53:01] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:53:41.333076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:53:41.341457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:53:41] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:53:41] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:55:06.476449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:55:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:55:06.889555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:55:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:55:19.291537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:55:19.334254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:55:19] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:55:19] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:56:46.669254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 18:56:46.678862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:56:46] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:56:46] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 18:58:09.009085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 18:58:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 19:00:05.526463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 19:00:05.535028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:00:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:00:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 19:01:55.731747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 19:01:55.741288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:01:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:01:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 19:03:19.211897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:03:19] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 19:03:37.313576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 19:03:37.326626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:03:37] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:03:37] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 19:05:40.056852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 19:05:40.070663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:05:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:05:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 19:08:03.563363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:08:03] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 19:08:17.938486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:08:17] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 19:08:35.435865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 19:08:35.476432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:08:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:08:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 19:09:42.727779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:09:42] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 19:09:53.057550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 19:09:53.067574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:09:53] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:09:53] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 19:12:01.982797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 19:12:01.986797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:12:02] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:12:02] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 19:16:53.926261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 19:16:54] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 19:28:04.161278 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 19:28:04.161278 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 19:28:04.161278 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 19:28:04.162290 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 19:28:04.162290 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 19:29:22.571350 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 19:29:22.571350 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 19:29:22.571350 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 19:29:22.571350 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 19:29:22.571350 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 20:01:21.835936 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 20:01:21.836936 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 20:01:21.837932 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 20:01:21.837932 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 20:01:21.837932 : ++ 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:2024-04-20 20:01:43.905686 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 20:01:43.905686 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 20:01:43.906681 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 20:01:43.906681 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 20:01:43.906681 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 20:02:57.717487 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 20:02:57.718491 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 20:02:57.718491 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 20:02:57.718491 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 20:02:57.718491 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-04-20 20:02:57.789345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:02:57.795053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:02:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:02:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:13.378325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:13.379331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:13.380327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:13.383327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:13.385328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:13.387324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:13] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:13] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:13] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:13] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:13] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:13] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:13.753672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:13.758534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:13.758534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:13.762645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:14] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:14] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:14.712171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:14.713630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:14.715617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:14.717642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:14.729432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:14.736604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:15.057355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:15.058368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:15.060367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:15.064373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:15.072735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:15.084438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:15.388782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:15.390889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:15.392960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:15.406698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:15.408981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:15.411022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:15.714854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:15.718430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:15.722099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:15.731200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:15.733204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:15.734201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.034096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:16.038098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.042094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.048107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.054096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.067093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.349973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:16.352963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.360972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.373964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.382013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:16.384012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.661891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:16.665886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.672886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.687940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.695561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:16.696557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.975799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:16.979853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.988858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:16.998467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:17.010458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:17.013453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:17.302373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:17.305363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:17.307363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:17.315397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:17.324369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:17.328366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:17.617282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:17.623268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:17.626266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:17.631271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:04:17.648274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:04:17.652265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:04:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:02.978157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:03] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:03.018993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:03] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:07.969706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:07] "POST /myclass/api/Client_Update_Liste_Attendee_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:11.433159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:11.438493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:11.442526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:11] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:11.455511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:11.458517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:11.460824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:11] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:11] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:11] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:11] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:11] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:11.698782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:11.704050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:11.705055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:11.708048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:11] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:11] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.265832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.270270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.279776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.289723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.299189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.307814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.313031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.320059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.326354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.336218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.346089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.351630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.368200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.378277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.385260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.390014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.400317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.414869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.418786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.422383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.436669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.447049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.461179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.473172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.485033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.496402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.510027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.517115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.524410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.536971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.565006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.584946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.598292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.606395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.612531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.619205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.641341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.649742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.659708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.663917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.672404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.680418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.686250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.704418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.720431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.736826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.741848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.750227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.761450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.770168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.781111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.796793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.801816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.807808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.817806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.847965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.856969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:12.864406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.874090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:12.882123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:12] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:32.147303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:32.162022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:32] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:32] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:06:38.637986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:06:38.643981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:38] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:06:38] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:33.071390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:33] "POST /myclass/api/Client_Update_Liste_Attendee_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:35.546499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:35.554553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:35.556547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:35] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:35.566074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:35.573066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:35.578071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:35] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:35.918640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:35.923633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:35.926641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:35.929737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.411347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.416828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.423581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.429069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.440610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.453036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.461899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.470582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.482889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.488129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.498977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.508104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.518708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.532325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.539652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.549003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.564425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.571691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.576911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.589529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.610149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.613601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.623317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.635867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.643866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.660245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.663332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.679731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.685925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.714701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.729608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.741039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.748284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.758965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.772003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.782491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.791233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.801231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.809718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.826789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.835555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.849976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.858345 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.871817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.884112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.888128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.897865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.916059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.929985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.938511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.949256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.961261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.970168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:36.977249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:36.987417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:37.003840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:37.007836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:37.031321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:07:37.038855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:37] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:07:37.055842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:07:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_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:2024-04-20 20:09:22.358906 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 20:09:22.358906 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 20:09:22.359908 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 20:09:22.359908 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 20:09:22.359908 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 20:09:57.029909 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 20:09:57.030917 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 20:09:57.030917 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 20:09:57.030917 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 20:09:57.030917 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 20:20:48.260100 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 20:20:48.260100 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 20:20:48.260100 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 20:20:48.260100 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 20:20:48.260100 : ++ 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:2024-04-20 20:20:59.128997 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 20:20:59.128997 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 20:20:59.128997 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 20:20:59.128997 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 20:20:59.130020 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-04-20 20:21:07.437457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:07.448929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:20.760263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:20.769436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:20] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:20] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:42.223916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:42] "POST /myclass/api/Client_Update_Liste_Attendee_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:44.621288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:44.623499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:44.625562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:44.627675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:44.628699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:44] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:44.634691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:44] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.005423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.007436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.047654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.050649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.337564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.341826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.347471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.349649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.356157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.363087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.378379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.383816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.405464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.412249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.420164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.426875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.440620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.450588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.460506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.467802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.475574 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.484007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.501257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.508268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.517767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.533496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.541925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.549329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.560716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.569816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.583621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.595760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.598870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.633465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.641156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.659267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.668836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.679455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.687456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.701958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.714004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.725387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.738433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.747921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.755379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.765009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.774182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.787163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.794777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.803104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.812190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.824450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.835499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.845964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.850585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.856734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.863616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.870685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.888621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.902392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.908518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:45.918137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.925101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:45.933774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:21:58.536634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:21:58.549669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:21:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:22:05.104984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:22:05.115533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:22:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:22:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:22:39.846931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:22:39.850152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:22:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:22:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:23:29.751267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:23:29.760126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:23:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:23:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:23:46.720272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:23:46.729772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:23:46] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:23:46] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:26:55.282503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:26:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:27:09.118676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:27:09.146957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:27:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:27:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 20:33:29.383017 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 20:33:29.383017 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 20:33:29.383017 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 20:33:29.384058 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 20:33:29.384058 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-04-20 20:33:36.120191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:33:36] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:33:57.060109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:33:57.092641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:33:57] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:33:57] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:07.629548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:18.136821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:18.148357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:18] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:18] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:42.875257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:42] "POST /myclass/api/Client_Update_Liste_Attendee_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:44.851796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:44.858952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:44.861994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:44] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:44.869141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:44.871389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:44.874725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:44] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.370209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:45.373502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:45.381002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:45.383860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.802162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:45.806680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.812684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:45.818867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:45.825424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:45.833668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.847671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.865010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.878111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.889115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:45.894116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.905070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:45.908083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.920390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.928588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:45.936847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.945836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:45.951527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.973528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.983531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:45.992577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:45.998527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.006847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.016846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.021258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.036983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.043517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.053101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.063685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.090962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.101556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.112035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.125048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.130354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.137636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.151974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.161227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.171232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.177734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.186511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.196856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.205314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.210731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.228272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.238446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.249670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.258975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.287395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.294477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.300879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.313908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.317693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.323243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.335093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.352926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.359289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.369355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.380415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:46.389498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:46.395583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:46] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:47.949283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:34:47.960966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:47] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:47] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:55.724716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:34:55.776520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:34:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:35:06.960751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:35:06.965768 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:35:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:35:07.022253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:35:07.027279 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:35:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:35:10.344998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:35:10.348892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:35:10.352997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:35:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:35:10.359993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:35:10.369431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:35:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:35:10.373426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:35:10.374429 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:35:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:35:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:35:10.394451 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:35:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:35:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:35:10.646856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:35:10.650972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:35:10.660810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:35:10.665165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:35:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:35:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:35:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:35:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +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:2024-04-20 20:36:23.025901 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 20:36:23.027282 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 20:36:23.027282 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 20:36:23.027282 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 20:36:23.027282 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-04-20 20:39:32.729702 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 20:39:32.729702 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 20:39:32.729702 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 20:39:32.729702 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 20:39:32.729702 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-04-20 20:40:10.735477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:40:10.747480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:40:12.236386 : Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN - Le champ 'token' n'est pas autorisé, Creation partenaire annulée +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:40:12] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:40:12.238374 : Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN - Le champ 'token' n'est pas autorisé, Creation partenaire annulée +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:40:12] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:41:15.726120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:41:15.731124 : Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN - Le champ 'token' n'est pas autorisé, Creation partenaire annulée +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:41:15] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:41:15.734490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:41:15.739014 : Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN - Le champ 'token' n'est pas autorisé, Creation partenaire annulée +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:41:15] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:41:16.941785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:41:16.944826 : Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN - Le champ 'token' n'est pas autorisé, Creation partenaire annulée +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:41:16] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:41:16.950200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:41:16.953222 : Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN - Le champ 'token' n'est pas autorisé, Creation partenaire annulée +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:41:16] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:14.415343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:14.422261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:14] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:14] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:24.799484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:24] "POST /myclass/api/Client_Update_Liste_Attendee_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:26.812219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:26.814448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:26.819371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:26.820370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:26.822370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:26.826792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:26] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:26] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:26] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:26] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:27] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:27] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:27.294114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:27.296179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:27.298440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:27.299438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:27] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:27] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:27.989993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:27.994013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:27.999411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.002738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.010732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.019729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.025089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.032928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.044409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.050957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.058077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.067086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.077581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.094165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.102548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.104545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.115151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.122609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.131657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.146836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.152278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.161238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.167551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.171817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.182207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.194616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.201318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.210238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.213229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.219239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.243577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.249655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.294093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.300842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.304897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.312852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.323609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.327595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.340035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.349189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.355508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.364024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.371463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.372465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.378469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.393838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.398293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.403544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.413397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.421851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.427877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.433559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.438748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.445804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.456297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.458835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.477464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:28.484402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.495570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:28.500640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:29.659487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:29.672947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - +INFO:root:2024-04-20 20:42:35.008324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:42:35.016621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:42:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ 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:2024-04-20 20:44:09.641217 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-04-20 20:44:09.642217 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-04-20 20:44:09.642217 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-04-20 20:44:09.642217 : ++ FLASK PORT 5001 ++ +INFO:root:2024-04-20 20:44:09.642217 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-04-20 20:44:09.736850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-04-20 20:44:09.741101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:44:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Apr/2024 20:44:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/ HTTP/1.1" 200 - diff --git a/Session_Formation.py b/Session_Formation.py index 83f58a4..db37ef3 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -9432,3 +9432,109 @@ def Send_Email_request_presinscription_data_validation(diction): print(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) return False, " Impossible d'envoyer les demandes de mise à jour" + + +""" +Cette fonction permet à un client de mettre à jour +la liste de ses partipants à une session de formation. + +""" +def Client_Update_Liste_Attendee_No_Token(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['client_id', 'session_id', 'list_attendee_data', 'partner_recid'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['client_id', 'session_id', 'list_attendee_data', 'partner_recid'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + + """ + Verifier que le client est valide + """ + is_client_valide_data = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId(str(diction['client_id'])), + 'valide':'1', + 'locked':'0', + 'partner_recid':str(diction['partner_recid'])}) + if(is_client_valide_data is None ): + mycommon.myprint(str( + inspect.stack()[0][3]) + " L'identifiant du client n'est pas valide") + return False, " L'identifiant du client n'est pas valide " + + """ + Verifier que la session est valide + """ + is_session_valide_data = MYSY_GV.dbname['session_formation'].find_one({'_id': ObjectId(str(diction['session_id'])), + 'valide': '1', + 'partner_owner_recid': str( + diction['partner_recid'])}) + if (is_session_valide_data is None): + mycommon.myprint(str( + inspect.stack()[0][3]) + " L'identifiant de la session n'est pas valide") + return False, " L'identifiant de la session n'est pas valide " + + + JSON_attendee_response = ast.literal_eval(diction['list_attendee_data']) + + + for val in JSON_attendee_response: + # Verifier qu'on mettre à jour tous les participants + is_valide_attendee = MYSY_GV.dbname['inscription'].count_documents({'_id':ObjectId(str(val['_id'])), + 'status':'0', + 'session_id':str(diction['session_id']), + 'client_rattachement_id':str(diction['client_id']), + 'partner_owner_recid':str(diction['partner_recid'])}) + + if(is_valide_attendee <= 0 ): + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le participant "+str(val['_id'])+" n'est pas valide ou n'est pas au statut PREINSCRIT") + return False, " Le participant "+str(val['_id'])+" n'est pas valide ou n'est pas au statut PREINSCRIT" + + + """ + A présent toutes les données sont valide, on fait la mise à jour + """ + for val in JSON_attendee_response: + # Verifier qu'on mettre à jour tous les participants + update_data = {} + update_data['date_update'] = str(datetime.now()) + update_data['update_by'] = "Client" + + update_data['nom'] = str(val['nom']) + update_data['prenom'] = str(val['prenom']) + update_data['email'] = str(val['email']) + + update_attendee_data = MYSY_GV.dbname['inscription'].find_one_and_update({'_id':ObjectId(str(val['_id'])), + 'status':'0', + 'session_id':str(diction['session_id']), + 'client_rattachement_id':str(diction['client_id']), + 'partner_owner_recid':str(diction['partner_recid'])}, + {"$set": update_data}, + upsert=False, + return_document=ReturnDocument.AFTER + ) + + return True, "Les mise à jour ont été correctement faite" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + print(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de mettre à jour la liste des participants" \ No newline at end of file diff --git a/class_mgt.py b/class_mgt.py index 32676bc..898c038 100644 --- a/class_mgt.py +++ b/class_mgt.py @@ -2620,7 +2620,7 @@ def find_partner_class_like(diction): {'partner_owner_recid': user_recid}, filt_external_code, filt_title, filt_internal_url]} - print(" ##### find_partner_class_like_local_qry = ", find_partner_class_like_local_qry) + #print(" ##### find_partner_class_like_local_qry = ", find_partner_class_like_local_qry) """ Recuperation du nombre d'heure par jour depuis la confif du partner diff --git a/main.py b/main.py index 64d281a..e5679fe 100644 --- a/main.py +++ b/main.py @@ -3590,6 +3590,19 @@ def Prepare_request_presinscription_data_validation(): return jsonify(status=localStatus, message=message ) +""" +API permet a un client de mettre à jour la liste de ses participants à une session de formation. +""" +@app.route('/myclass/api/Client_Update_Liste_Attendee_No_Token/', methods=['POST','GET']) +@crossdomain(origin='*') +def Client_Update_Liste_Attendee_No_Token(): + # On CancelAttendeeInscription le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Client_Update_Liste_Attendee_No_Token : payload = ",payload) + localStatus, message= SF.Client_Update_Liste_Attendee_No_Token(payload) + return jsonify(status=localStatus, message=message ) + + """ API de validation d'une inscription d'un stagiaire @@ -4442,6 +4455,23 @@ def Get_Statgaire_List_Partner_with_filter(): return jsonify(status=status, message=retval) +""" +API qui recupere la liste complete des stagaire d'un partener pour seulement les inscription +on ne fait pas de lien avec la collection des apprenant +""" +@app.route('/myclass/api/Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN payload = ",payload) + status, retval = inscription.Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN(payload) + return jsonify(status=status, message=retval) + + + + + """ API qui recupere les informations d'une inscription en partant de '_id' de la ligne """