From 2617995c0f4e7ba53af11fd5d580b9fad4a32d54 Mon Sep 17 00:00:00 2001 From: cherif Date: Wed, 4 Jan 2023 20:41:19 +0100 Subject: [PATCH] 04/01/2023 - 20h00 --- .idea/workspace.xml | 11 +- Inscription_mgt.py | 98 +- Log/log_file.log | 7868 +++++++++++++++++++++++++++++ Session_Formation.py | 102 +- class_mgt.py | 6 +- data_indexees.csv | 8 +- ela_output_test_file_pandas_2.txt | 10 +- main.py | 16 + partners.py | 6 +- 9 files changed, 8085 insertions(+), 40 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 10742ae..ae741e2 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,10 +1,16 @@ - + + + + + + + diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 68d933e..ba68374 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -892,6 +892,17 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): str(inspect.stack()[0][3])+" : entete du fichier csv. '" + val + "' n'est pas acceptée") return False, " Entete du fichier csv. '" + val + "' n'est pas acceptée" + # Verification des champs obligatoires dans le fichier + field_list_obligatoire_file = ['prenom', 'nom', 'email', 'modefinancement', 'status', 'prix'] + + for val in field_list_obligatoire_file: + if val not in df.columns: + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " : Le champ '" + val + "' n'est pas présent dans le fichier. Il est obligatoire") + return False, " Le champ '" + val + "' n'est pas présent dans le fichier. Il est obligatoire " + + # Recuperation des info de la session. session_data = MYSY_GV.dbname['session_formation'].find_one({'formation_session_id':str(session_id)}) if( session_data is None ): @@ -1060,7 +1071,7 @@ def PrintAttendeeDetail_perSession(diction): tab_presences.append(local_tmp) - print(" ### tab_presences =",tab_presences) + #print(" ### tab_presences =",tab_presences) templateLoader = jinja2.FileSystemLoader(searchpath="./") templateEnv = jinja2.Environment(loader=templateLoader) @@ -1326,6 +1337,18 @@ def SendAttendeeCertification(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " impossible de trouver le modele d'attestation") return False, " impossible de trouver le modele d'attestation" + date_fin_session = str(session_formation['date_fin'] )[0:10] + local_status = mycommon.CheckisDate(date_fin_session) + if( local_status is False ): + mycommon.myprint(str(inspect.stack()[0][3]) + " La date de fin de session de formation est incorrecte.") + return False, " La date de fin de session de formation est incorrecte." + + mytoday = datetime.today().strftime("%d/%m/%Y") + + if (datetime.strptime(str(date_fin_session).strip(), '%d/%m/%Y') > datetime.strptime(str(mytoday).strip(), '%d/%m/%Y')): + mycommon.myprint(str(inspect.stack()[0][3]) + " Vous ne pouvez pas delivrer de certificat avant la date de fin de la session de formation ") + return False, " Vous ne pouvez pas delivrer de certificat avant la date de fin de la session de formation " + attestation_certificat = MYSY_GV.dbname['attestation_certificat'].find_one({'nom': str(session_formation['attestation_certif']), 'valide': "1"}) @@ -1501,3 +1524,76 @@ def PrintAttendeeCertification(diction): return False, " Impossible d'envoyer l'attestation" +""" +Cette fonction recuperer la liste des evaluations d'une session de formation +""" +def GetListEvaluation_Session(diction): + try: + field_list_obligatoire = ['session_id', 'token'] + + 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" + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_token = diction['token'] + + # Recuperation du recid du partenaire + partner_recid = mycommon.get_parnter_recid_from_token(str(my_token)) + if partner_recid is False: + mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de recuperer la liste des evaluations") + return False, " Les informations fournies sont incorrectes" + + RetObject = [] + val_tmp = 1 + # Recuperation des infos de la formation + for local_Insc_retval in MYSY_GV.dbname['inscription'].find({'session_id': str(diction['session_id'])}): + user = {} + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + user['session_id'] = local_Insc_retval['session_id'] + user['email'] = local_Insc_retval['email'] + user['nom'] = local_Insc_retval['nom'] + user['prenom'] = local_Insc_retval['prenom'] + + + if ("eval_date" in diction.keys()): + if diction['eval_date']: + user['eval_date'] = local_Insc_retval['eval_date'] + + if ("eval_date" in diction.keys()): + if diction['eval_date']: + user['eval_date'] = local_Insc_retval['eval_date'] + + if ("eval_eval" in diction.keys()): + if diction['eval_eval']: + user['eval_eval'] = local_Insc_retval['eval_eval'] + else: + user['eval_eval'] = "Aucune Evalution" + + if ("eval_note" in diction.keys()): + if diction['eval_note']: + user['eval_note'] = local_Insc_retval['eval_note'] + else: + user['eval_note'] = "Aucune Note" + + + if ("eval_pedagogie" in diction.keys()): + if diction['eval_pedagogie']: + user['eval_pedagogie'] = local_Insc_retval['eval_pedagogie'] + + + RetObject.append(mycommon.JSONEncoder().encode(user)) + + + return True, RetObject + + 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 recuperer la liste des evaluations" \ No newline at end of file diff --git a/Log/log_file.log b/Log/log_file.log index 699c37e..2a2d3a0 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -922259,3 +922259,7871 @@ INFO:root:2022-12-27 16:17:01.946245 : Security check : IP adresse '127.0.0.1' INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 16:17:01] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 16:17:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [27/Dec/2022 16:17:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:10.235861 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-29 11:35:10.236870 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-29 11:35:10.236870 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-29 11:35:10.236870 : ++ FLASK PORT 5001 ++ +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:2022-12-29 11:35:20.829046 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-29 11:35:20.830095 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-29 11:35:20.830095 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-29 11:35:20.830095 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-29 11:35:48.797535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:35:48.798554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:48] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:48] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:49.497786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:35:49.500785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:49] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:50.127151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:35:50.129157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:35:50.133162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:50.139152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:35:50.141150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:35:50.146167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:50.154176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:35:50.157168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:50.160703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:50.165704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:50.168707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:50.173706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:35:50.175705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:35:50.179711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:50.184714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:50.195721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:35:50.197713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:50.203731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:50.210735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:35:50.214735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:35:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:36:44.749313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:36:45.473535 : partner_login Connexion partnair mysytraining@gmail.com : OK, Date : 2022-12-29 11:36:44.750327 , _id = 638139d0934a818b1f6f85f7 +INFO:root:2022-12-29 11:36:45.481569 : partner_login Connexion partener_token : OK , _id = 63813a72b4c6b1dce20a0481 +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:36:45] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:36:45.730384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:36:45.733376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:36:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:36:45.735879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:36:45.740896 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:36:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:36:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:36:46.042045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:36:46] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:36:48.414772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:36:48.417802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:36:48.422790 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:36:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_MrtgqQxPM3z229/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_MrtgqQxPM3z229/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1M89ynAbmaEugrFTtpgqxgxB",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": null,\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": null\n },\n "country": "US",\n "exp_month": 11,\n "exp_year": 2023,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1669413761,\n "customer": "cus_MrtgqQxPM3z229",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M89xsAbmaEugrFTSOxL8LpX",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "BALDE Cherif",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "exp_month": 12,\n "exp_year": 2023,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1669413705,\n "customer": "cus_MrtgqQxPM3z229",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_MrtgqQxPM3z229/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_3c213xK647krKC message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:36:48] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:36:57.034026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:36:57.037059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:36:57.040244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:36:57.048255 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:36:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:36:57] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_MrtgqQxPM3z229/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_MrtgqQxPM3z229/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1M89ynAbmaEugrFTtpgqxgxB",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": null,\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": null\n },\n "country": "US",\n "exp_month": 11,\n "exp_year": 2023,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1669413761,\n "customer": "cus_MrtgqQxPM3z229",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M89xsAbmaEugrFTSOxL8LpX",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "BALDE Cherif",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "exp_month": 12,\n "exp_year": 2023,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1669413705,\n "customer": "cus_MrtgqQxPM3z229",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_MrtgqQxPM3z229/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_lLllA28zVhRvqt message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:36:57] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:36:57.733251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:36:57.740255 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:36:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:36:57.749257 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=post path=https://api.stripe.com/v1/subscriptions +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=customer=cus_MrtgqQxPM3z229&items[0][price]=price_1LpyndAbmaEugrFTKZAAkm72&payment_behavior=default_incomplete&expand[0]=latest_invoice.payment_intent +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions response_code=200 +DEBUG:stripe:body='{\n "id": "sub_1MKJTrAbmaEugrFT2bSvYxMi",\n "object": "subscription",\n "application": null,\n "application_fee_percent": null,\n "automatic_tax": {\n "enabled": false\n },\n "billing_cycle_anchor": 1672310219,\n "billing_thresholds": null,\n "cancel_at": null,\n "cancel_at_period_end": false,\n "canceled_at": null,\n "collection_method": "charge_automatically",\n "created": 1672310219,\n "currency": "eur",\n "current_period_end": 1674988619,\n "current_period_start": 1672310219,\n "customer": "cus_MrtgqQxPM3z229",\n "days_until_due": null,\n "default_payment_method": null,\n "default_source": null,\n "default_tax_rates": [],\n "description": null,\n "discount": null,\n "ended_at": null,\n "items": {\n "object": "list",\n "data": [\n {\n "id": "si_N4SOPZdhZ4Ir05",\n "object": "subscription_item",\n "billing_thresholds": null,\n "created": 1672310220,\n "metadata": {},\n "plan": {\n "id": "price_1LpyndAbmaEugrFTKZAAkm72",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 1100,\n "amount_decimal": "1100",\n "billing_scheme": "per_unit",\n "created": 1665080881,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "price": {\n "id": "price_1LpyndAbmaEugrFTKZAAkm72",\n "object": "price",\n "active": true,\n "billing_scheme": "per_unit",\n "created": 1665080881,\n "currency": "eur",\n "custom_unit_amount": null,\n "livemode": false,\n "lookup_key": null,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "recurring": {\n "aggregate_usage": null,\n "interval": "month",\n "interval_count": 1,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "tax_behavior": "unspecified",\n "tiers_mode": null,\n "transform_quantity": null,\n "type": "recurring",\n "unit_amount": 1100,\n "unit_amount_decimal": "1100"\n },\n "quantity": 1,\n "subscription": "sub_1MKJTrAbmaEugrFT2bSvYxMi",\n "tax_rates": []\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/subscription_items?subscription=sub_1MKJTrAbmaEugrFT2bSvYxMi"\n },\n "latest_invoice": {\n "id": "in_1MKJTrAbmaEugrFTxL3WwbL5",\n "object": "invoice",\n "account_country": "FR",\n "account_name": "dd",\n "account_tax_ids": null,\n "amount_due": 1100,\n "amount_paid": 0,\n "amount_remaining": 1100,\n "application": null,\n "application_fee_amount": null,\n "attempt_count": 0,\n "attempted": false,\n "auto_advance": false,\n "automatic_tax": {\n "enabled": false,\n "status": null\n },\n "billing_reason": "subscription_create",\n "charge": null,\n "collection_method": "charge_automatically",\n "created": 1672310219,\n "currency": "eur",\n "custom_fields": null,\n "customer": "cus_MrtgqQxPM3z229",\n "customer_address": {\n "city": "",\n "country": "",\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "customer_email": "mysytraining@gmail.com",\n "customer_name": "3IL",\n "customer_phone": null,\n "customer_shipping": null,\n "customer_tax_exempt": "none",\n "customer_tax_ids": [],\n "default_payment_method": null,\n "default_source": null,\n "default_tax_rates": [],\n "description": null,\n "discount": null,\n "discounts": [],\n "due_date": null,\n "ending_balance": 0,\n "footer": null,\n "from_invoice": null,\n "hosted_invoice_url": "https://invoice.stripe.com/i/acct_1LUUfAAbmaEugrFT/test_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9ONFNPUTVid3JJWTNOaVA4RkdXTDh3U2o3NFNnQVB5LDYyODUxMDIw0200xF6R2jkl?s=ap",\n "invoice_pdf": "https://pay.stripe.com/invoice/acct_1LUUfAAbmaEugrFT/test_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9ONFNPUTVid3JJWTNOaVA4RkdXTDh3U2o3NFNnQVB5LDYyODUxMDIw0200xF6R2jkl/pdf?s=ap",\n "last_finalization_error": null,\n "latest_revision": null,\n "lines": {\n "object": "list",\n "data": [\n {\n "id": "il_1MKJTrAbmaEugrFTo7UAe0Tz",\n "object": "line_item",\n "amount": 1100,\n "amount_excluding_tax": 1100,\n "currency": "eur",\n "description": "1 × sample_premium (at €11.00 / month)",\n "discount_amounts": [],\n "discountable": true,\n "discounts": [],\n "livemode": false,\n "metadata": {},\n "period": {\n "end": 1674988619,\n "start": 1672310219\n },\n "plan": {\n "id": "price_1LpyndAbmaEugrFTKZAAkm72",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 1100,\n "amount_decimal": "1100",\n "billing_scheme": "per_unit",\n "created": 1665080881,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "price": {\n "id": "price_1LpyndAbmaEugrFTKZAAkm72",\n "object": "price",\n "active": true,\n "billing_scheme": "per_unit",\n "created": 1665080881,\n "currency": "eur",\n "custom_unit_amount": null,\n "livemode": false,\n "lookup_key": null,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "recurring": {\n "aggregate_usage": null,\n "interval": "month",\n "interval_count": 1,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "tax_behavior": "unspecified",\n "tiers_mode": null,\n "transform_quantity": null,\n "type": "recurring",\n "unit_amount": 1100,\n "unit_amount_decimal": "1100"\n },\n "proration": false,\n "proration_details": {\n "credited_items": null\n },\n "quantity": 1,\n "subscription": "sub_1MKJTrAbmaEugrFT2bSvYxMi",\n "subscription_item": "si_N4SOPZdhZ4Ir05",\n "tax_amounts": [],\n "tax_rates": [],\n "type": "subscription",\n "unit_amount_excluding_tax": "1100"\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/invoices/in_1MKJTrAbmaEugrFTxL3WwbL5/lines"\n },\n "livemode": false,\n "metadata": {},\n "next_payment_attempt": null,\n "number": "E58073E6-0335",\n "on_behalf_of": null,\n "paid": false,\n "paid_out_of_band": false,\n "payment_intent": {\n "id": "pi_3MKJTsAbmaEugrFT1vjY6cho",\n "object": "payment_intent",\n "amount": 1100,\n "amount_capturable": 0,\n "amount_details": {\n "tip": {}\n },\n "amount_received": 0,\n "application": null,\n "application_fee_amount": null,\n "automatic_payment_methods": null,\n "canceled_at": null,\n "cancellation_reason": null,\n "capture_method": "automatic",\n "charges": {\n "object": "list",\n "data": [],\n "has_more": false,\n "total_count": 0,\n "url": "/v1/charges?payment_intent=pi_3MKJTsAbmaEugrFT1vjY6cho"\n },\n "client_secret": "pi_3MKJTsAbmaEugrFT1vjY6cho_secret_Wv2gmUNNuteFUi1Gtm6fhM40j",\n "confirmation_method": "automatic",\n "created": 1672310220,\n "currency": "eur",\n "customer": "cus_MrtgqQxPM3z229",\n "description": "Subscription creation",\n "invoice": "in_1MKJTrAbmaEugrFTxL3WwbL5",\n "last_payment_error": null,\n "livemode": false,\n "metadata": {},\n "next_action": null,\n "on_behalf_of": null,\n "payment_method": null,\n "payment_method_options": {\n "card": {\n "installments": null,\n "mandate_options": null,\n "network": null,\n "request_three_d_secure": "automatic"\n },\n "sepa_debit": {}\n },\n "payment_method_types": [\n "card",\n "sepa_debit"\n ],\n "processing": null,\n "receipt_email": null,\n "review": null,\n "setup_future_usage": "off_session",\n "shipping": null,\n "source": null,\n "statement_descriptor": null,\n "statement_descriptor_suffix": null,\n "status": "requires_payment_method",\n "transfer_data": null,\n "transfer_group": null\n },\n "payment_settings": {\n "default_mandate": null,\n "payment_method_options": null,\n "payment_method_types": null\n },\n "period_end": 1672310219,\n "period_start": 1672310219,\n "post_payment_credit_notes_amount": 0,\n "pre_payment_credit_notes_amount": 0,\n "quote": null,\n "receipt_number": null,\n "rendering_options": null,\n "starting_balance": 0,\n "statement_descriptor": null,\n "status": "open",\n "status_transitions": {\n "finalized_at": 1672310219,\n "marked_uncollectible_at": null,\n "paid_at": null,\n "voided_at": null\n },\n "subscription": "sub_1MKJTrAbmaEugrFT2bSvYxMi",\n "subtotal": 1100,\n "subtotal_excluding_tax": 1100,\n "tax": null,\n "test_clock": null,\n "total": 1100,\n "total_discount_amounts": [],\n "total_excluding_tax": 1100,\n "total_tax_amounts": [],\n "transfer_data": null,\n "webhooks_delivered_at": 1672310219\n },\n "livemode": false,\n "metadata": {},\n "next_pending_invoice_item_invoice": null,\n "on_behalf_of": null,\n "pause_collection": null,\n "payment_settings": {\n "payment_method_options": null,\n "payment_method_types": null,\n "save_default_payment_method": "off"\n },\n "pending_invoice_item_interval": null,\n "pending_setup_intent": null,\n "pending_update": null,\n "plan": {\n "id": "price_1LpyndAbmaEugrFTKZAAkm72",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 1100,\n "amount_decimal": "1100",\n "billing_scheme": "per_unit",\n "created": 1665080881,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "quantity": 1,\n "schedule": null,\n "start_date": 1672310219,\n "status": "incomplete",\n "test_clock": null,\n "transfer_data": null,\n "trial_end": null,\n "trial_start": null\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_flkMQ0FIja8Zny message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:36:59] "POST /myclass/api/create-subscription/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:37:00.598281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:37:02.131532 : UpdataPartnerRankingClass - Le RANKING de 7 ont été mise à jour avec la valeur {'display_rank': '50', 'date_update': '2022-12-29 11:37:02.116541', 'isalaune': '1'} +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:37:02] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:37:04.746633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:37:04.752620 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:37:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:37:08.960062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:37:08.963068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:37:08.964069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:37:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:37:08.970589 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:37:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:37:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:37:09.461792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:37:09] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-29 11:39:57.011180 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-29 11:39:57.011180 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-29 11:39:57.012180 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-29 11:39:57.012180 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-29 11:44:32.872345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:44:32.874349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:32] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.588971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:44:33.589969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.930261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.934272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:44:33.937279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:44:33.940277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.944269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.948273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.952272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.956284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.959280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.961271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.967269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.975285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.979272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.983296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.987273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.992300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:33.995283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:34.000286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:34] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:34.003287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:44:34.007823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:34] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:44:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:45:43.770921 : Security check : IP adresse '127.0.0.1' connected +INFO:root: TMP = 0 +INFO:root: TMP = 0 +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:45:45] "POST /myclass/api/add_partner_account/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:30.000939 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=post path=https://api.stripe.com/v1/customers +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=email=billardman1%40yahoo.fr&name=billardman1ya&address[city]=&address[country]= +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers response_code=200 +DEBUG:stripe:body='{\n "id": "cus_N4SYNTuuPrlY4F",\n "object": "customer",\n "address": {\n "city": "",\n "country": "",\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "balance": 0,\n "created": 1672310790,\n "currency": null,\n "default_currency": null,\n "default_source": null,\n "delinquent": false,\n "description": null,\n "discount": null,\n "email": "billardman1@yahoo.fr",\n "invoice_prefix": "530E65B2",\n "invoice_settings": {\n "custom_fields": null,\n "default_payment_method": null,\n "footer": null,\n "rendering_options": null\n },\n "livemode": false,\n "metadata": {},\n "name": "billardman1ya",\n "phone": null,\n "preferred_locales": [],\n "shipping": null,\n "tax_exempt": "none",\n "test_clock": null\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_AVFQBD3NLapYC3 message='Dashboard link for request' +INFO:root:2022-12-29 11:46:31.160383 : create_customer - le partenaire billardman1@yahoo.fr a été correctement créé dans Stripe. Son Id = cus_N4SYNTuuPrlY4F +INFO:root:2022-12-29 11:46:31.162034 : La modif a bien ete faite Ajout Token OK, =63ad6fd7fa14a14399c0143e +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:31] "GET /myclass/api/valide_partnair_account/63ad6fd7fa14a14399c0143e HTTP/1.1" 302 - +INFO:root:2022-12-29 11:46:47.792073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:46:47.794062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:47] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:47] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.416774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:46:48.417768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.769474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:46:48.772473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.775473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.780472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.783474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:46:48.787473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.793475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.797472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:46:48.800476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.805479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.815474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.820480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.824472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.828474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.832473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:46:48.835482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.839495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.844498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.846486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:46:48.851036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:46:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:47:06.033430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:47:06.039945 : partner_login Connexion partnair billardman1@yahoo.fr : OK, Date : 2022-12-29 11:47:06.034450 , _id = 63ad6fd7fa14a14399c0143e +INFO:root:2022-12-29 11:47:06.046504 : partner_login Connexion partener_token : OK , _id = 63ad702ab29f05db3ae684e4 +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:47:06] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:47:06.324743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:47:06.329722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:47:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:47:06.334757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:47:06.339731 : Connexion du partner recid = 8f6bec8dd74bd295f72c6690322fc3f6e0641441488e3137db OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:47:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:47:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:47:06.747620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:47:06] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:47:50.383425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:47:50.386435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:47:50.392421 : Connexion du partner recid = 8f6bec8dd74bd295f72c6690322fc3f6e0641441488e3137db OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:47:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_N4SYNTuuPrlY4F/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_N4SYNTuuPrlY4F/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [],\n "has_more": false,\n "url": "/v1/customers/cus_N4SYNTuuPrlY4F/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_8RKgiH0PPxioEP message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:47:50] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:47:56.309930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:47:56.311926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:47:56.316943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:47:56.321934 : Connexion du partner recid = 8f6bec8dd74bd295f72c6690322fc3f6e0641441488e3137db OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:47:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:47:56] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_N4SYNTuuPrlY4F/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_N4SYNTuuPrlY4F/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [],\n "has_more": false,\n "url": "/v1/customers/cus_N4SYNTuuPrlY4F/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_tF8d1uz8J9ZjP8 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:47:57] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:47:57.977740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:47:59.391295 : UpdataPartnerRankingClass - Le RANKING de 0 ont été mise à jour avec la valeur {'display_rank': '10', 'date_update': '2022-12-29 11:47:59.378294'} +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:47:59] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:48:03.677652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:48:03.679639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:48:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:48:03.683638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:48:03.691143 : Connexion du partner recid = 8f6bec8dd74bd295f72c6690322fc3f6e0641441488e3137db OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:48:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:48:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:48:04.190530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:48:04] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:48:18.554849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:48:18.560827 : Connexion du partner recid = 8f6bec8dd74bd295f72c6690322fc3f6e0641441488e3137db OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:48:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:49:32.110214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:49:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:49:32.115510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:49:32.118516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:49:32.123513 : Connexion du partner recid = 8f6bec8dd74bd295f72c6690322fc3f6e0641441488e3137db OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:49:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:49:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:49:32.290889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:49:32] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:49:40.068887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:49:40.071909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:49:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:49:40.075910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:49:40.081907 : Connexion du partner recid = 8f6bec8dd74bd295f72c6690322fc3f6e0641441488e3137db OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:49:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:49:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:49:41.088675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:49:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:51:05.546477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:51:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:51:05.552498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:51:05.556504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:51:05.560492 : Connexion du partner recid = 8f6bec8dd74bd295f72c6690322fc3f6e0641441488e3137db OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:51:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:51:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:51:05.743169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:51:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:51:09.770252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:51:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:51:09.776341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:51:09.782336 : Connexion du partner recid = 8f6bec8dd74bd295f72c6690322fc3f6e0641441488e3137db OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:51:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:51:09.786338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:51:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:51:10.636633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:51:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-29 11:53:00.037664 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-29 11:53:00.037664 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-29 11:53:00.039200 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-29 11:53:00.039294 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-29 11:53:16.927633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:53:16.932648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:53:16.935639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:53:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:53:16.949636 : Connexion du partner recid = 8f6bec8dd74bd295f72c6690322fc3f6e0641441488e3137db OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:53:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:53:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:53:17.784614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:53:17] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:53:49.285050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:53:49.288052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 11:53:49.291041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:53:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:53:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:53:49.302654 : Connexion du partner recid = 8f6bec8dd74bd295f72c6690322fc3f6e0641441488e3137db OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:53:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2022-12-29 11:53:49.388209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 11:53:49] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:47.896976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:47.896976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:47] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:48] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:48.156344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:48.157332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:48] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:48.540513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:48.847275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:48.847275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:48.848279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:48.849277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:48.850277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:48.855300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:49.162018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:49.168009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:49.176524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:49.178541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:49.181543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:49.185548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:49.479786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:49.481808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:49.488798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:49.489800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:49.495319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:49.498342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:49.791366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:54.391877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:54.392876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:54] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:54] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:54.659762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:54.660767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:54] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:55.125529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:55.436298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:55.437306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:55.438297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:55.438297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:55.441299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:55.447302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:55.764722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:55.765734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:55.765734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:55.766734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:55.767741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:55.768742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:56.103942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:56.104947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:56.106469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:56.107500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:56.108502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-29 12:19:56.112498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-29 12:19:56.442003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [29/Dec/2022 12:19:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 13:45:35.682420 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 13:45:35.683423 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 13:45:35.684423 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 13:45:35.684423 : ++ FLASK PORT 5001 ++ +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:2022-12-30 13:45:45.312154 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 13:45:45.312154 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 13:45:45.312154 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 13:45:45.312154 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-30 13:46:38.286389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:38.287391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2022-12-30 13:46:38.549744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-30 13:46:38.570278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:38] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 13:46:40.096151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.098149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.099148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.101154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.104149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.113153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 13:46:40.445207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.447204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.449204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.451201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.452204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.457736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 13:46:40.799085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.800087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.801085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.802088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:40.807083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 13:46:40.817085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 13:46:41.139740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 13:46:41.142742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 13:46:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:14.099722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:14.105768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:14] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:14] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:14.865927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:14.867539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:14] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.652012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:15.655011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.659533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.662545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.666543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:15.670065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.675071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.678065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.681614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.687613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:15.691161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.698184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.704254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:15.707257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.712794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.719791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:15.720791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:15.724312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.728311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:15.731311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:19.516757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:20.098423 : partner_login Connexion partnair mysytraining@gmail.com : OK, Date : 2022-12-30 14:35:19.517760 , _id = 638139d0934a818b1f6f85f7 +INFO:root:2022-12-30 14:35:20.106323 : partner_login Connexion partener_token : OK , _id = 63813a72b4c6b1dce20a0481 +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:20] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:20.241989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:20.245491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:20.248502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:20.264624 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:20.399311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:20] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:35:27.643613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:27.647621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:35:27.650158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:27] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:35:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:37:29.066455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:37:29] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:37:29.653319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:37:29] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:37:36.368619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:37:36.370619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:37:36.372617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:37:36.377225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:37:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:37:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:37:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:37:36] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:38:13.176694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:38:13] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:38:20.295491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:38:20] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:38:24.212005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:38:24] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:38:29.001117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:38:29] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:39:11.700591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:39:11] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:39:44.423853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:39:46] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:40:37.068179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:40:37.070187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:40:37] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:40:37.074724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:40:37] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:40:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:40:40.077475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:40:40.079173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:40:40.083169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:40:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:40:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:40:40.088372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:40:40] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:40:40] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:40:41.040593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:40:41] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:40:51.830962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:40:51] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:41:07.695633 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tInstitut de formation : 3IL
\n\t\t\t\t\tFormation : Objets connectés et IoT
\n\t\t\t\t\tDate session : 01/04/2023 24:00:00 au 01/04/2023 24:00:00
\n\t\t\t\t\tAdresse : 2 place de la republique
\n\t\t\t\t\tFormateur : 3IL
\n\n\t\t\t\t
\n\n\n\n\n\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\n\t\t\t\t\tNom & Prénom : balde   sekou
\n\t\t\t\t\tTéléphone : telephone
\n\t\t\t\t\tEmail : billardman1@yahoo.fr
\n\t\t\t\t\tAdresse : 2 place de la republique, 77680   roissy en brie
\n\t\t\t\t\tDate inscription :
\n\t\t\t\t\tEmployeur : employeur
\n\t\t\t\t\tMode de financement : modefinancement
\n\n\n\n\t\t\t\t
\n\n\t\t\t\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t
DateMatinApres Midi
\n\t\t\t\t
\n\t\t\t\n\n\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\n\t\t\t\t\tDate évaluation :
\n\t\t\t\t\tNote :
\n\t\t\t\t\tEvaluation :
\n\n\n\n\n\t\t\t\t
\n\t\t\t\n\n\t\t\t
\n\n\t\t\t\n\n\n\n\t\t\n\n\t\n\t
\n\t
Date impression : 30/12/2022
\n\n\n' + dest = <_io.BufferedRandom name='./Emargement/fichier_presence.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'http://88.170.110.220/img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='http', netloc='88.170.110.220', path='/img/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'http') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': 60.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Sending request for http://88.170.110.220/img/MYSY-LOGO-BLUE.png with httplib +DEBUG:xhtml2pdf:Uri parsed: http://88.170.110.220/img/MYSY-LOGO-BLUE.png +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf:FileObject 'https://img.mysy-training.com/3il/3il_img.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='https', netloc='img.mysy-training.com', path='/3il/3il_img.png', params='', query='', fragment=''), 'https') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Sending request for https://img.mysy-training.com/3il/3il_img.png with httplib +DEBUG:xhtml2pdf:Uri parsed: https://img.mysy-training.com/3il/3il_img.png +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 39 +DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 92 11 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 115 19144 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 1 has width 20% +DEBUG:xhtml2pdf:Col 2 has width 20% +DEBUG:xhtml2pdf:Col widths: [None, '20%', '20%'] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 39 +DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 92 11 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 115 19144 +DEBUG:xhtml2pdf:can't concat int to bytes +Traceback (most recent call last): + File "C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\xhtml2pdf\xhtml2pdf_reportlab.py", line 432, in getTransparent + return list(palette[transparency:transparency + 3]) + ~~~~~~~~~~~~~^~~ +TypeError: can't concat int to bytes +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:41:08] "GET /myclass/api/PrintAttendeeDetail_perSession/Khj9OnIPxc8cZfkVm2mdU9TVgrbhn3_MuA/0104202305042023776802placedelarepublique/billardman1@yahoo.fr HTTP/1.1" 200 - +INFO:root:2022-12-30 14:41:53.368086 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tInstitut de formation : 3IL
\n\t\t\t\t\tFormation : Objets connectés et IoT
\n\t\t\t\t\tDate session : 01/04/2023 24:00:00 au 01/04/2023 24:00:00
\n\t\t\t\t\tAdresse : 2 place de la republique
\n\t\t\t\t\tFormateur : 3IL
\n\n\t\t\t\t
\n\n\n\n\n\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\n\t\t\t\t\tNom & Prénom : balde   sekou
\n\t\t\t\t\tTéléphone : telephone
\n\t\t\t\t\tEmail : billardman1@yahoo.fr
\n\t\t\t\t\tAdresse : 2 place de la republique, 77680   roissy en brie
\n\t\t\t\t\tDate inscription :
\n\t\t\t\t\tEmployeur : employeur
\n\t\t\t\t\tMode de financement : modefinancement
\n\n\n\n\t\t\t\t
\n\n\t\t\t\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t
DateMatinApres Midi
\n\t\t\t\t
\n\t\t\t\n\n\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\n\t\t\t\t\tDate évaluation :
\n\t\t\t\t\tNote :
\n\t\t\t\t\tEvaluation :
\n\n\n\n\n\t\t\t\t
\n\t\t\t\n\n\t\t\t
\n\n\t\t\t\n\n\n\n\t\t\n\n\t\n\t
\n\t
Date impression : 30/12/2022
\n\n\n' + dest = <_io.BufferedRandom name='./Emargement/fichier_presence.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'http://88.170.110.220/img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='http', netloc='88.170.110.220', path='/img/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'http') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': 60.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Sending request for http://88.170.110.220/img/MYSY-LOGO-BLUE.png with httplib +DEBUG:xhtml2pdf:Uri parsed: http://88.170.110.220/img/MYSY-LOGO-BLUE.png +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf:FileObject 'https://img.mysy-training.com/3il/3il_img.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='https', netloc='img.mysy-training.com', path='/3il/3il_img.png', params='', query='', fragment=''), 'https') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Sending request for https://img.mysy-training.com/3il/3il_img.png with httplib +DEBUG:xhtml2pdf:Uri parsed: https://img.mysy-training.com/3il/3il_img.png +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 39 +DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 92 11 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 115 19144 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 1 has width 20% +DEBUG:xhtml2pdf:Col 2 has width 20% +DEBUG:xhtml2pdf:Col widths: [None, '20%', '20%'] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 39 +DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 92 11 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 115 19144 +DEBUG:xhtml2pdf:can't concat int to bytes +Traceback (most recent call last): + File "C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\xhtml2pdf\xhtml2pdf_reportlab.py", line 432, in getTransparent + return list(palette[transparency:transparency + 3]) + ~~~~~~~~~~~~~^~~ +TypeError: can't concat int to bytes +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:41:53] "GET /myclass/api/PrintAttendeeDetail_perSession/Khj9OnIPxc8cZfkVm2mdU9TVgrbhn3_MuA/0104202305042023776802placedelarepublique/billardman1@yahoo.fr HTTP/1.1" 200 - +INFO:root:2022-12-30 14:42:11.272626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:42:11] "POST /myclass/api/SendTrainingEvaluationEmail/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:42:44.885809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:42:44.886806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:42:44.892354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:42:44] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:42:44] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:42:44] "POST /myclass/api/MySyckeckEvaluationToken/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:42:45.566352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:42:45] "POST /myclass/api/ckeckEvaluationToken/ HTTP/1.1" 404 - +INFO:root:2022-12-30 14:42:45.880161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:42:45.885623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:42:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:42:45] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:42:57.234024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:42:57] "POST /myclass/api/Evaluation_Class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:43:09.434403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:43:09] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:43:22.145839 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tInstitut de formation : 3IL
\n\t\t\t\t\tFormation : Objets connectés et IoT
\n\t\t\t\t\tDate session : 01/04/2023 24:00:00 au 01/04/2023 24:00:00
\n\t\t\t\t\tAdresse : 2 place de la republique
\n\t\t\t\t\tFormateur : 3IL
\n\n\t\t\t\t
\n\n\n\n\n\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\n\t\t\t\t\tNom & Prénom : balde   sekou
\n\t\t\t\t\tTéléphone : telephone
\n\t\t\t\t\tEmail : billardman1@yahoo.fr
\n\t\t\t\t\tAdresse : 2 place de la republique, 77680   roissy en brie
\n\t\t\t\t\tDate inscription :
\n\t\t\t\t\tEmployeur : employeur
\n\t\t\t\t\tMode de financement : modefinancement
\n\n\n\n\t\t\t\t
\n\n\t\t\t\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t
DateMatinApres Midi
\n\t\t\t\t
\n\t\t\t\n\n\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\n\t\t\t\t\tDate évaluation : 2022-12-30
\n\t\t\t\t\tNote : undefined
\n\t\t\t\t\tEvaluation :

fghfghghfghfghfgh


\n\n\n\n\n\t\t\t\t
\n\t\t\t\n\n\t\t\t
\n\n\t\t\t\n\n\n\n\t\t\n\n\t\n\t
\n\t
Date impression : 30/12/2022
\n\n\n' + dest = <_io.BufferedRandom name='./Emargement/fichier_presence.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'http://88.170.110.220/img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='http', netloc='88.170.110.220', path='/img/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'http') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': 60.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Sending request for http://88.170.110.220/img/MYSY-LOGO-BLUE.png with httplib +DEBUG:xhtml2pdf:Uri parsed: http://88.170.110.220/img/MYSY-LOGO-BLUE.png +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf:FileObject 'https://img.mysy-training.com/3il/3il_img.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='https', netloc='img.mysy-training.com', path='/3il/3il_img.png', params='', query='', fragment=''), 'https') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Sending request for https://img.mysy-training.com/3il/3il_img.png with httplib +DEBUG:xhtml2pdf:Uri parsed: https://img.mysy-training.com/3il/3il_img.png +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 39 +DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 92 11 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 115 19144 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 1 has width 20% +DEBUG:xhtml2pdf:Col 2 has width 20% +DEBUG:xhtml2pdf:Col widths: [None, '20%', '20%'] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 39 +DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 92 11 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 115 19144 +DEBUG:xhtml2pdf:can't concat int to bytes +Traceback (most recent call last): + File "C:\Users\cheri\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\venv\Lib\site-packages\xhtml2pdf\xhtml2pdf_reportlab.py", line 432, in getTransparent + return list(palette[transparency:transparency + 3]) + ~~~~~~~~~~~~~^~~ +TypeError: can't concat int to bytes +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:43:22] "GET /myclass/api/PrintAttendeeDetail_perSession/Khj9OnIPxc8cZfkVm2mdU9TVgrbhn3_MuA/0104202305042023776802placedelarepublique/billardman1@yahoo.fr HTTP/1.1" 200 - +INFO:root:2022-12-30 14:43:35.515430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:43:35] "GET /myclass/api/PrintAttendeeCertification/Khj9OnIPxc8cZfkVm2mdU9TVgrbhn3_MuA/0104202305042023776802placedelarepublique/billardman1@yahoo.fr HTTP/1.1" 500 - +INFO:root:2022-12-30 14:43:43.156379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:43:43] "POST /myclass/api/SendAttendeeCertification/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:06.451984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:06.452973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:06.455973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:06] "POST /myclass/api/get_List_domaine_metier/ HTTP/1.1" 404 - +INFO:root:2022-12-30 14:48:06.459547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:06] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:06] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:06] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:06.714639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:06.716641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:06] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:06.972980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:07.290650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:07.292650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:07.297665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:07.304473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:07.307475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:07.313023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:07.616791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:07.619332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:07.622332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:07.629889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:07.637782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:07.641187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:07.926105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:07.941946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:07.950500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:07.954766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:07.960046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:07.967083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:08.251121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:32.410445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:32.411443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:32.412439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:32] "POST /myclass/api/get_List_domaine_metier/ HTTP/1.1" 404 - +INFO:root:2022-12-30 14:48:32.415445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:32] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 404 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:32] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:32] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:32.671229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:32.674224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:32] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:33.013530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:33.331256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:33.331256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:33.332258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:33.337778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:33.340779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:33.345787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:33.657666 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:33.659676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:33.659676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:33.662676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:33.663677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:33.669212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:33.991425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:33.993419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:33.994419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:33.996419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:34] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:34.006937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 14:48:34.009457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:34] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:34] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 14:48:34.325241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 14:48:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:39:18.564311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:39:18.571842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:18] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:18] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:39:18.826736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:39:18.829734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:18] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:39:19.066116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:39:19.369265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:39:19.371262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:39:19.379263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:39:19.387264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:39:19.393279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:39:19.398283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:39:19.697121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:39:19.700122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:39:19.708415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:39:19.713414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:39:19.720413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:39:19.727409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:39:20.030734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:39:20.034734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:39:20.041726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:39:20.043725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:39:20.045724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:39:20.047723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:39:20.357988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:39:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:40:47.936589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:40:47.938589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:40:47] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:40:47] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:11.675664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:11.677710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:11] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:11] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:12.161779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:12.163777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:12] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.007924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:13.012914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.017921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.023915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.026920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.030913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.035919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.039913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.043915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.046916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:13.050917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.056911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.061913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:13.064931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.070930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.074925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:13.077436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.082450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:13.084453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:13.088449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:17.534094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:17.535095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:17] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:17] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:17.885628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:17.886638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:17] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.091577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:18.094578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.098581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.101581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.106589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:18.109577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:18.112578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.117581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.120583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:18.124578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.127582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.136580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:18.138584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:41:18.141579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.147585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.150580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.154581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.157587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.161591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:41:18.165592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:41:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:47:02.165580 : Security check : IP adresse '127.0.0.1' connected +INFO:root: TMP = 0 +INFO:root: TMP = 0 +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:47:02] "POST /myclass/api/add_partner_account/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:52:27.685173 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=post path=https://api.stripe.com/v1/customers +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=email=mysy5discovery%40gmail.com&name=5+Discovery&address[city]=&address[country]= +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers response_code=200 +DEBUG:stripe:body='{\n "id": "cus_N4tkAELoBchudT",\n "object": "customer",\n "address": {\n "city": "",\n "country": "",\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "balance": 0,\n "created": 1672411949,\n "currency": null,\n "default_currency": null,\n "default_source": null,\n "delinquent": false,\n "description": null,\n "discount": null,\n "email": "mysy5discovery@gmail.com",\n "invoice_prefix": "9FCBE7AD",\n "invoice_settings": {\n "custom_fields": null,\n "default_payment_method": null,\n "footer": null,\n "rendering_options": null\n },\n "livemode": false,\n "metadata": {},\n "name": "5 Discovery",\n "phone": null,\n "preferred_locales": [],\n "shipping": null,\n "tax_exempt": "none",\n "test_clock": null\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_FMygqhA7yjmLXT message='Dashboard link for request' +INFO:root:2022-12-30 15:52:28.281983 : create_customer - le partenaire mysy5discovery@gmail.com a été correctement créé dans Stripe. Son Id = cus_N4tkAELoBchudT +INFO:root:2022-12-30 15:52:28.283999 : La modif a bien ete faite Ajout Token OK, =63aef9e685c01d76761b5487 +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:52:28] "GET /myclass/api/valide_partnair_account/63aef9e685c01d76761b5487 HTTP/1.1" 302 - +INFO:root:2022-12-30 15:52:57.381034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:52:57.392723 : partner_login Connexion partnair mysy5discovery@gmail.com : OK, Date : 2022-12-30 15:52:57.382038 , _id = 63aef9e685c01d76761b5487 +INFO:root:2022-12-30 15:52:57.399991 : partner_login Connexion partener_token : OK , _id = 63aefb49d2d6a991726f185f +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:52:57] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:52:57.619880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:52:57.622880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:52:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:52:57.627609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:52:57.634851 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:52:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:52:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:52:57.905675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:52:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:53:02.706943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:53:02.709939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:53:02.715942 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:53:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_N4tkAELoBchudT/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_N4tkAELoBchudT/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [],\n "has_more": false,\n "url": "/v1/customers/cus_N4tkAELoBchudT/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_fRk1aVbOmWIYtV message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:53:03] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:54:24.554744 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=post path=https://api.stripe.com/v1/payment_methods +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card&card[number]=4242424242424242&card[exp_month]=1&card[exp_year]=24&card[cvc]=123&billing_details[name]=5+Discovery +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/payment_methods response_code=200 +DEBUG:stripe:body='{\n "id": "pm_1MKjyYAbmaEugrFTNyYbZQN2",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "5 Discovery",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "unchecked"\n },\n "country": "US",\n "exp_month": 1,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1672412066,\n "customer": null,\n "livemode": false,\n "metadata": {},\n "type": "card"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_0kyxosJsUOyis1 message='Dashboard link for request' +INFO:stripe:message='Request to Stripe api' method=post path=https://api.stripe.com/v1/payment_methods/pm_1MKjyYAbmaEugrFTNyYbZQN2/attach +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=customer=cus_N4tkAELoBchudT +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/payment_methods/pm_1MKjyYAbmaEugrFTNyYbZQN2/attach response_code=200 +DEBUG:stripe:body='{\n "id": "pm_1MKjyYAbmaEugrFTNyYbZQN2",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "5 Discovery",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "exp_month": 1,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1672412066,\n "customer": "cus_N4tkAELoBchudT",\n "livemode": false,\n "metadata": {},\n "type": "card"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_PhrPWEgZnjrNXP message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:54:25] "POST /myclass/api/add_payement_mode/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:54:55.966850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:54:55.968849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:54:55.970847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:54:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:54:55.976367 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:54:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:54:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:54:56.118121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:54:56.119120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:54:56.123122 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:54:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_N4tkAELoBchudT/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_N4tkAELoBchudT/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MKjyYAbmaEugrFTNyYbZQN2",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "5 Discovery",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "exp_month": 1,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1672412066,\n "customer": "cus_N4tkAELoBchudT",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_N4tkAELoBchudT/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_VucoPCwS4sHIQW message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:54:56] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:55:50.342253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:55:50.355429 : update_partner_accountLe partenaire a bien ete mise à jour =63aef9e685c01d76761b5487 +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:55:50] "POST /myclass/api/update_partner_account/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:55:54.446464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:55:54.448451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:55:54.458185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:55:54.463190 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:55:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_N4tkAELoBchudT/payment_methods?type=card +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:55:54] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_N4tkAELoBchudT/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MKjyYAbmaEugrFTNyYbZQN2",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "5 Discovery",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "exp_month": 1,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1672412066,\n "customer": "cus_N4tkAELoBchudT",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_N4tkAELoBchudT/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_mORaAzyU5HYo73 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:55:54] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:55:54.848355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:55:54.852363 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:55:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:55:54.859371 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=post path=https://api.stripe.com/v1/subscriptions +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=customer=cus_N4tkAELoBchudT&items[0][price]=price_1LpyndAbmaEugrFTKZAAkm72&payment_behavior=default_incomplete&expand[0]=latest_invoice.payment_intent +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions response_code=200 +DEBUG:stripe:body='{\n "id": "sub_1MKk01AbmaEugrFTnRLygMcJ",\n "object": "subscription",\n "application": null,\n "application_fee_percent": null,\n "automatic_tax": {\n "enabled": false\n },\n "billing_cycle_anchor": 1672412157,\n "billing_thresholds": null,\n "cancel_at": null,\n "cancel_at_period_end": false,\n "canceled_at": null,\n "collection_method": "charge_automatically",\n "created": 1672412157,\n "currency": "eur",\n "current_period_end": 1675090557,\n "current_period_start": 1672412157,\n "customer": "cus_N4tkAELoBchudT",\n "days_until_due": null,\n "default_payment_method": null,\n "default_source": null,\n "default_tax_rates": [],\n "description": null,\n "discount": null,\n "ended_at": null,\n "items": {\n "object": "list",\n "data": [\n {\n "id": "si_N4tnatW1vXhnQa",\n "object": "subscription_item",\n "billing_thresholds": null,\n "created": 1672412157,\n "metadata": {},\n "plan": {\n "id": "price_1LpyndAbmaEugrFTKZAAkm72",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 1100,\n "amount_decimal": "1100",\n "billing_scheme": "per_unit",\n "created": 1665080881,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "price": {\n "id": "price_1LpyndAbmaEugrFTKZAAkm72",\n "object": "price",\n "active": true,\n "billing_scheme": "per_unit",\n "created": 1665080881,\n "currency": "eur",\n "custom_unit_amount": null,\n "livemode": false,\n "lookup_key": null,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "recurring": {\n "aggregate_usage": null,\n "interval": "month",\n "interval_count": 1,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "tax_behavior": "unspecified",\n "tiers_mode": null,\n "transform_quantity": null,\n "type": "recurring",\n "unit_amount": 1100,\n "unit_amount_decimal": "1100"\n },\n "quantity": 1,\n "subscription": "sub_1MKk01AbmaEugrFTnRLygMcJ",\n "tax_rates": []\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/subscription_items?subscription=sub_1MKk01AbmaEugrFTnRLygMcJ"\n },\n "latest_invoice": {\n "id": "in_1MKk01AbmaEugrFT9Ky0muC4",\n "object": "invoice",\n "account_country": "FR",\n "account_name": "dd",\n "account_tax_ids": null,\n "amount_due": 1100,\n "amount_paid": 0,\n "amount_remaining": 1100,\n "application": null,\n "application_fee_amount": null,\n "attempt_count": 0,\n "attempted": false,\n "auto_advance": false,\n "automatic_tax": {\n "enabled": false,\n "status": null\n },\n "billing_reason": "subscription_create",\n "charge": null,\n "collection_method": "charge_automatically",\n "created": 1672412157,\n "currency": "eur",\n "custom_fields": null,\n "customer": "cus_N4tkAELoBchudT",\n "customer_address": {\n "city": "",\n "country": "",\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "customer_email": "mysy5discovery@gmail.com",\n "customer_name": "5 Discovery",\n "customer_phone": null,\n "customer_shipping": null,\n "customer_tax_exempt": "none",\n "customer_tax_ids": [],\n "default_payment_method": null,\n "default_source": null,\n "default_tax_rates": [],\n "description": null,\n "discount": null,\n "discounts": [],\n "due_date": null,\n "ending_balance": 0,\n "footer": null,\n "from_invoice": null,\n "hosted_invoice_url": "https://invoice.stripe.com/i/acct_1LUUfAAbmaEugrFT/test_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9ONHRuU2I3SzdMZzk4WEtsMG1nSUJIZnJZNGJXM2VFLDYyOTUyOTU402000QXn3XCk?s=ap",\n "invoice_pdf": "https://pay.stripe.com/invoice/acct_1LUUfAAbmaEugrFT/test_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9ONHRuU2I3SzdMZzk4WEtsMG1nSUJIZnJZNGJXM2VFLDYyOTUyOTU402000QXn3XCk/pdf?s=ap",\n "last_finalization_error": null,\n "latest_revision": null,\n "lines": {\n "object": "list",\n "data": [\n {\n "id": "il_1MKk01AbmaEugrFTTdSnbwj1",\n "object": "line_item",\n "amount": 1100,\n "amount_excluding_tax": 1100,\n "currency": "eur",\n "description": "1 × sample_premium (at €11.00 / month)",\n "discount_amounts": [],\n "discountable": true,\n "discounts": [],\n "livemode": false,\n "metadata": {},\n "period": {\n "end": 1675090557,\n "start": 1672412157\n },\n "plan": {\n "id": "price_1LpyndAbmaEugrFTKZAAkm72",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 1100,\n "amount_decimal": "1100",\n "billing_scheme": "per_unit",\n "created": 1665080881,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "price": {\n "id": "price_1LpyndAbmaEugrFTKZAAkm72",\n "object": "price",\n "active": true,\n "billing_scheme": "per_unit",\n "created": 1665080881,\n "currency": "eur",\n "custom_unit_amount": null,\n "livemode": false,\n "lookup_key": null,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "recurring": {\n "aggregate_usage": null,\n "interval": "month",\n "interval_count": 1,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "tax_behavior": "unspecified",\n "tiers_mode": null,\n "transform_quantity": null,\n "type": "recurring",\n "unit_amount": 1100,\n "unit_amount_decimal": "1100"\n },\n "proration": false,\n "proration_details": {\n "credited_items": null\n },\n "quantity": 1,\n "subscription": "sub_1MKk01AbmaEugrFTnRLygMcJ",\n "subscription_item": "si_N4tnatW1vXhnQa",\n "tax_amounts": [],\n "tax_rates": [],\n "type": "subscription",\n "unit_amount_excluding_tax": "1100"\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/invoices/in_1MKk01AbmaEugrFT9Ky0muC4/lines"\n },\n "livemode": false,\n "metadata": {},\n "next_payment_attempt": null,\n "number": "E58073E6-0336",\n "on_behalf_of": null,\n "paid": false,\n "paid_out_of_band": false,\n "payment_intent": {\n "id": "pi_3MKk01AbmaEugrFT0T46xkxq",\n "object": "payment_intent",\n "amount": 1100,\n "amount_capturable": 0,\n "amount_details": {\n "tip": {}\n },\n "amount_received": 0,\n "application": null,\n "application_fee_amount": null,\n "automatic_payment_methods": null,\n "canceled_at": null,\n "cancellation_reason": null,\n "capture_method": "automatic",\n "charges": {\n "object": "list",\n "data": [],\n "has_more": false,\n "total_count": 0,\n "url": "/v1/charges?payment_intent=pi_3MKk01AbmaEugrFT0T46xkxq"\n },\n "client_secret": "pi_3MKk01AbmaEugrFT0T46xkxq_secret_Ddrn4pGnn9oCD6nDbht3g6C0k",\n "confirmation_method": "automatic",\n "created": 1672412157,\n "currency": "eur",\n "customer": "cus_N4tkAELoBchudT",\n "description": "Subscription creation",\n "invoice": "in_1MKk01AbmaEugrFT9Ky0muC4",\n "last_payment_error": null,\n "livemode": false,\n "metadata": {},\n "next_action": null,\n "on_behalf_of": null,\n "payment_method": null,\n "payment_method_options": {\n "card": {\n "installments": null,\n "mandate_options": null,\n "network": null,\n "request_three_d_secure": "automatic"\n },\n "sepa_debit": {}\n },\n "payment_method_types": [\n "card",\n "sepa_debit"\n ],\n "processing": null,\n "receipt_email": null,\n "review": null,\n "setup_future_usage": "off_session",\n "shipping": null,\n "source": null,\n "statement_descriptor": null,\n "statement_descriptor_suffix": null,\n "status": "requires_payment_method",\n "transfer_data": null,\n "transfer_group": null\n },\n "payment_settings": {\n "default_mandate": null,\n "payment_method_options": null,\n "payment_method_types": null\n },\n "period_end": 1672412157,\n "period_start": 1672412157,\n "post_payment_credit_notes_amount": 0,\n "pre_payment_credit_notes_amount": 0,\n "quote": null,\n "receipt_number": null,\n "rendering_options": null,\n "starting_balance": 0,\n "statement_descriptor": null,\n "status": "open",\n "status_transitions": {\n "finalized_at": 1672412157,\n "marked_uncollectible_at": null,\n "paid_at": null,\n "voided_at": null\n },\n "subscription": "sub_1MKk01AbmaEugrFTnRLygMcJ",\n "subtotal": 1100,\n "subtotal_excluding_tax": 1100,\n "tax": null,\n "test_clock": null,\n "total": 1100,\n "total_discount_amounts": [],\n "total_excluding_tax": 1100,\n "total_tax_amounts": [],\n "transfer_data": null,\n "webhooks_delivered_at": 1672412157\n },\n "livemode": false,\n "metadata": {},\n "next_pending_invoice_item_invoice": null,\n "on_behalf_of": null,\n "pause_collection": null,\n "payment_settings": {\n "payment_method_options": null,\n "payment_method_types": null,\n "save_default_payment_method": "off"\n },\n "pending_invoice_item_interval": null,\n "pending_setup_intent": null,\n "pending_update": null,\n "plan": {\n "id": "price_1LpyndAbmaEugrFTKZAAkm72",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 1100,\n "amount_decimal": "1100",\n "billing_scheme": "per_unit",\n "created": 1665080881,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "quantity": 1,\n "schedule": null,\n "start_date": 1672412157,\n "status": "incomplete",\n "test_clock": null,\n "transfer_data": null,\n "trial_end": null,\n "trial_start": null\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_SnQwYcbno24QXJ message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:55:56] "POST /myclass/api/create-subscription/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:56:00.559230 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\t5 Discovery
\n\t\t\t\t\t40 Rue Gabriel Péri
\n\t\t\t\t\t94700 Maisons-Alfort
\n\t\t\t\t\tFrance
\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_221200045\n\n\n\t\t\t\t
\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 30/12/2022 Date échéance : 30/12/2022
\n\n\t\t\t\t\n\t\t\t\t\tOrigine : MySy_00Mj0q\n\t\t\t\t\n\n\t\t\t\t
 
\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t
DescriptionQuantitéPrix unitaireMontant
Gold19090.0
\n\t\t\t\t\n\n\t\t\t\t
 
\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 90.0
    TVA 20% : 18.0
    Montant TTC : 108.0
\n\n\n\t\t\t
\n\t\t\t
 
\n\t\t\t
 
\n\t\t\t
 
\n\n\n\n\t\t\n\n\t\n\t
\n\t
\n\t\t\n\n\t\t\t

MySy Training
\n\n\t\t\t\tCour du Havre 1, 75008, Paris
\n\n\t\t\t\tMySy Training Technology (MTT), société par actions simplifiée au capital de 1000 euros, dont le siège\n\t\t\t\tsocial est\n\t\t\t\tsitué 2, place des magnolias, 77680, Roissy en Brie, immatriculée au Registre du Commerce et des\n\t\t\t\tSociétés sous le numéro 917 500 860 R.C.S. Melun\n\t\t\t

\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_221200045.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'https://img.mysy-training.com/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='https', netloc='img.mysy-training.com', path='/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'https') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Sending request for https://img.mysy-training.com/MYSY-LOGO-BLUE.png with httplib +DEBUG:xhtml2pdf:Uri parsed: https://img.mysy-training.com/MYSY-LOGO-BLUE.png +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 0 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 1 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 2 has width 0.0 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 3 has width 0.0 +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:paramiko.transport:starting thread (client mode): 0x57b55d90 +DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.12.0 +DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u1 +INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1) +DEBUG:paramiko.transport:=== Key exchange possibilities === +DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256 +DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519 +DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com +DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1 +DEBUG:paramiko.transport:client compress: none, zlib@openssh.com +DEBUG:paramiko.transport:server compress: none, zlib@openssh.com +DEBUG:paramiko.transport:client lang: +DEBUG:paramiko.transport:server lang: +DEBUG:paramiko.transport:kex follows: False +DEBUG:paramiko.transport:=== Key exchange agreements === +DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org +DEBUG:paramiko.transport:HostKey: ssh-ed25519 +DEBUG:paramiko.transport:Cipher: aes128-ctr +DEBUG:paramiko.transport:MAC: hmac-sha2-256 +DEBUG:paramiko.transport:Compression: none +DEBUG:paramiko.transport:=== End of kex handshake === +DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo +DEBUG:paramiko.transport:Switch to new keys ... +DEBUG:paramiko.transport:Attempting password auth... +DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'} +DEBUG:paramiko.transport:userauth is OK +INFO:paramiko.transport:Authentication (password) successful! +DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes +DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com" +DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server. +DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes +DEBUG:paramiko.transport:Secsh channel 0 opened. +DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok +INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3) +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200045.pdf', 'wb') +DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200045.pdf', 'wb') -> 00000000 +DEBUG:paramiko.transport.sftp:[chan 0] close(00000000) +DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200045.pdf') +INFO:root:2022-12-30 15:56:07.476591 : convertHtmlToPdf DEPLACEMENT DE ./Invoices/invoice_FACT_221200045.pdf VERS /var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200045.pdf EST OKKKK +INFO:paramiko.transport.sftp:[chan 0] sftp session closed. +DEBUG:paramiko.transport:[chan 0] EOF sent (0) +DEBUG:paramiko.transport:EOF in transport thread +INFO:root:2022-12-30 15:56:07.477582 : Impression facture N° FACT_221200045 OK +INFO:root:2022-12-30 15:56:07.498405 : UpdataPartnerRankingClass - Le RANKING de 0 ont été mise à jour avec la valeur {'display_rank': '30', 'date_update': '2022-12-30 15:56:07.488594'} +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:56:07] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:56:07.616353 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=post path=https://api.stripe.com/v1/payment_intents/pi_3MKk01AbmaEugrFT0T46xkxq/confirm +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=payment_method=pm_card_visa +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/payment_intents/pi_3MKk01AbmaEugrFT0T46xkxq/confirm response_code=200 +DEBUG:stripe:body='{\n "id": "pi_3MKk01AbmaEugrFT0T46xkxq",\n "object": "payment_intent",\n "amount": 1100,\n "amount_capturable": 0,\n "amount_details": {\n "tip": {}\n },\n "amount_received": 1100,\n "application": null,\n "application_fee_amount": null,\n "automatic_payment_methods": null,\n "canceled_at": null,\n "cancellation_reason": null,\n "capture_method": "automatic",\n "charges": {\n "object": "list",\n "data": [\n {\n "id": "ch_3MKk01AbmaEugrFT0A6ddply",\n "object": "charge",\n "amount": 1100,\n "amount_captured": 1100,\n "amount_refunded": 0,\n "application": null,\n "application_fee": null,\n "application_fee_amount": null,\n "balance_transaction": "txn_3MKk01AbmaEugrFT07z1uhjF",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": null,\n "phone": null\n },\n "calculated_statement_descriptor": "Stripe",\n "captured": true,\n "created": 1672412170,\n "currency": "eur",\n "customer": "cus_N4tkAELoBchudT",\n "description": "Subscription creation",\n "destination": null,\n "dispute": null,\n "disputed": false,\n "failure_balance_transaction": null,\n "failure_code": null,\n "failure_message": null,\n "fraud_details": {},\n "invoice": "in_1MKk01AbmaEugrFT9Ky0muC4",\n "livemode": false,\n "metadata": {},\n "on_behalf_of": null,\n "order": null,\n "outcome": {\n "network_status": "approved_by_network",\n "reason": null,\n "risk_level": "normal",\n "risk_score": 26,\n "seller_message": "Payment complete.",\n "type": "authorized"\n },\n "paid": true,\n "payment_intent": "pi_3MKk01AbmaEugrFT0T46xkxq",\n "payment_method": "pm_1MKk0DAbmaEugrFTwgkOrfGj",\n "payment_method_details": {\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": null\n },\n "country": "US",\n "exp_month": 12,\n "exp_year": 2023,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "installments": null,\n "last4": "4242",\n "mandate": null,\n "network": "visa",\n "three_d_secure": null,\n "wallet": null\n },\n "type": "card"\n },\n "receipt_email": null,\n "receipt_number": null,\n "receipt_url": "https://pay.stripe.com/receipts/invoices/CAcaFwoVYWNjdF8xTFVVZkFBYm1hRXVnckZUKIv4u50GMgZRR3LDJYM6LBbordms823IE4oSYYXZW3--YS6s3dvl0LZrPmgMFWtaa4yoUlzeRmv1c0tj?s=ap",\n "refunded": false,\n "refunds": {\n "object": "list",\n "data": [],\n "has_more": false,\n "total_count": 0,\n "url": "/v1/charges/ch_3MKk01AbmaEugrFT0A6ddply/refunds"\n },\n "review": null,\n "shipping": null,\n "source": null,\n "source_transfer": null,\n "statement_descriptor": null,\n "statement_descriptor_suffix": null,\n "status": "succeeded",\n "transfer_data": null,\n "transfer_group": null\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/charges?payment_intent=pi_3MKk01AbmaEugrFT0T46xkxq"\n },\n "client_secret": "pi_3MKk01AbmaEugrFT0T46xkxq_secret_Ddrn4pGnn9oCD6nDbht3g6C0k",\n "confirmation_method": "automatic",\n "created": 1672412157,\n "currency": "eur",\n "customer": "cus_N4tkAELoBchudT",\n "description": "Subscription creation",\n "invoice": "in_1MKk01AbmaEugrFT9Ky0muC4",\n "last_payment_error": null,\n "livemode": false,\n "metadata": {},\n "next_action": null,\n "on_behalf_of": null,\n "payment_method": "pm_1MKk0DAbmaEugrFTwgkOrfGj",\n "payment_method_options": {\n "card": {\n "installments": null,\n "mandate_options": null,\n "network": null,\n "request_three_d_secure": "automatic"\n },\n "sepa_debit": {}\n },\n "payment_method_types": [\n "card",\n "sepa_debit"\n ],\n "processing": null,\n "receipt_email": null,\n "review": null,\n "setup_future_usage": "off_session",\n "shipping": null,\n "source": null,\n "statement_descriptor": null,\n "statement_descriptor_suffix": null,\n "status": "succeeded",\n "transfer_data": null,\n "transfer_group": null\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_rp6rwJW7aVaUYV message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:56:09] "POST /myclass/api/confirm_payment/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:56:16.260951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:56:16.263964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:56:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:56:16.266956 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:56:16.270950 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:56:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:56:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:56:16.407889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:56:16.409890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:56:16.413675 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:56:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_N4tkAELoBchudT/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_N4tkAELoBchudT/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MKk0DAbmaEugrFTwgkOrfGj",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": null,\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": null\n },\n "country": "US",\n "exp_month": 12,\n "exp_year": 2023,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1672412169,\n "customer": "cus_N4tkAELoBchudT",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1MKjyYAbmaEugrFTNyYbZQN2",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "5 Discovery",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "exp_month": 1,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1672412066,\n "customer": "cus_N4tkAELoBchudT",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_N4tkAELoBchudT/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_3PxGlmoch8svhJ message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:56:16] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:56:37.739689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:56:37.773450 : add_class_mass - Absence de 'title' pour la formation à la ligne 0 +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:56:37] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-30 15:58:31.311696 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 15:58:31.311696 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 15:58:31.311696 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 15:58:31.311696 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-30 15:58:33.667671 : Security check : IP adresse '127.0.0.1' connected +DEBUG:PIL.Image:Importing BlpImagePlugin +DEBUG:PIL.Image:Importing BmpImagePlugin +DEBUG:PIL.Image:Importing BufrStubImagePlugin +DEBUG:PIL.Image:Importing CurImagePlugin +DEBUG:PIL.Image:Importing DcxImagePlugin +DEBUG:PIL.Image:Importing DdsImagePlugin +DEBUG:PIL.Image:Importing EpsImagePlugin +DEBUG:PIL.Image:Importing FitsImagePlugin +DEBUG:PIL.Image:Importing FitsStubImagePlugin +DEBUG:PIL.Image:Importing FliImagePlugin +DEBUG:PIL.Image:Importing FpxImagePlugin +DEBUG:PIL.Image:Image: failed to import FpxImagePlugin: No module named 'olefile' +DEBUG:PIL.Image:Importing FtexImagePlugin +DEBUG:PIL.Image:Importing GbrImagePlugin +DEBUG:PIL.Image:Importing GifImagePlugin +DEBUG:PIL.Image:Importing GribStubImagePlugin +DEBUG:PIL.Image:Importing Hdf5StubImagePlugin +DEBUG:PIL.Image:Importing IcnsImagePlugin +DEBUG:PIL.Image:Importing IcoImagePlugin +DEBUG:PIL.Image:Importing ImImagePlugin +DEBUG:PIL.Image:Importing ImtImagePlugin +DEBUG:PIL.Image:Importing IptcImagePlugin +DEBUG:PIL.Image:Importing JpegImagePlugin +DEBUG:PIL.Image:Importing Jpeg2KImagePlugin +DEBUG:PIL.Image:Importing McIdasImagePlugin +DEBUG:PIL.Image:Importing MicImagePlugin +DEBUG:PIL.Image:Image: failed to import MicImagePlugin: No module named 'olefile' +DEBUG:PIL.Image:Importing MpegImagePlugin +DEBUG:PIL.Image:Importing MpoImagePlugin +DEBUG:PIL.Image:Importing MspImagePlugin +DEBUG:PIL.Image:Importing PalmImagePlugin +DEBUG:PIL.Image:Importing PcdImagePlugin +DEBUG:PIL.Image:Importing PcxImagePlugin +DEBUG:PIL.Image:Importing PdfImagePlugin +DEBUG:PIL.Image:Importing PixarImagePlugin +DEBUG:PIL.Image:Importing PngImagePlugin +DEBUG:PIL.Image:Importing PpmImagePlugin +DEBUG:PIL.Image:Importing PsdImagePlugin +DEBUG:PIL.Image:Importing SgiImagePlugin +DEBUG:PIL.Image:Importing SpiderImagePlugin +DEBUG:PIL.Image:Importing SunImagePlugin +DEBUG:PIL.Image:Importing TgaImagePlugin +DEBUG:PIL.Image:Importing TiffImagePlugin +DEBUG:PIL.Image:Importing WebPImagePlugin +DEBUG:PIL.Image:Importing WmfImagePlugin +DEBUG:PIL.Image:Importing XbmImagePlugin +DEBUG:PIL.Image:Importing XpmImagePlugin +DEBUG:PIL.Image:Importing XVThumbImagePlugin +INFO:root:2022-12-30 15:58:34.677987 : add_class - la date debut est posterieure à la date du jour pour la formation : CODE_10006 +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:58:34] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:59:08.798446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:59:08.921850 : external_code = CODE_10006 ==> Prise de Parole en Public +INFO:root:2022-12-30 15:59:09.432325 : La formation indexée (champ title) =63aefcbcd2d6a991726f1a4a +INFO:root:2022-12-30 15:59:09.432325 : 1 ont été indexes => title +INFO:root:2022-12-30 15:59:09.436326 : 0 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:59:09] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:59:15.220906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:59:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:59:15.299518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:59:15] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-30 15:59:21.355321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:59:21.358329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 15:59:21.359330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:59:21] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:59:21] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 15:59:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:02:02.596313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:02:02] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:02:03.200573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:02:03] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:02:20.216231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:02:20.218535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:02:20.222064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:02:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:02:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:02:20.226059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:02:20] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:02:20] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:02:36.826944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:02:36.828942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:02:36] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:02:36] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:02:49.327270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:02:49.329258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:02:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:02:49] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:11.940876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:11.943873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:11] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:11] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:18.717255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:18.720256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:18] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:39.570259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:39.571267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.047797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:40.048798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.363322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:40.366316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.369670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.372670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.378670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:40.380673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:40.382671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.388686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.392684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.397690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:40.398687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.406211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:40.409270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.413219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.420210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:40.423214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:40.425214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.429216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.432208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:40.436212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:43.287208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:45.470672 : pour phrase : #Prise de Parole en Public#, voici la liste des formations +INFO:root:2022-12-30 16:03:45.470672 : ['3IL_10006', '1653050332676409', '1653050332614573', '1653050332630533', '1652439811298275', '1652439811282354', '1652439811359111', '268', 'f0X1Tl8aHtA', '6364', 'K3D2rjAUQ3o', '5933', 'zkWA_orY6Lc', '3051', '6365', '1266', '8522', '6476', '\nles-fondamentaux-des-marches-publics---cours-a-jour-du-code\n-8', '1653050330065567', '1652439808678443', '1652379097598819', '1653050330736199', '1652379097583097', '1652379097553533', '1652439809367869', '1652379097544387', '1653050330097482', '1652439808631074', '1653050330143365', '1652439808710358', '8542', '7976', '9010', '1077', '1652085920414885', 'MAN08', '1654586287590111', '1652379097614426', '1652174021674569', '1652379097568828', '9076', '8861', '9008', '7772', '7431', '7435', '1079', '9006', '1652174377661954'] +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.722396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:45.725401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.729390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.732389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.736397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.740392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.744391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.748392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.751393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.755391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:45.758394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.763413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:45.764407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:45.768410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.771418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.774408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:45.778935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.781940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:45.784165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:45.789704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:53.888168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:53.891166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:53] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:53] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:03:57.693636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:03:57.695637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:03:57] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:04:31.365351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:04:31.367349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:04:31] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:04:31] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:04:39.471727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:04:39.473729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:04:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:04:39] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-30 16:06:38.454973 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 16:06:38.454973 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 16:06:38.454973 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 16:06:38.454973 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-30 16:06:56.298451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:06:56.302448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:06:56] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:06:56] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:07:06.590497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:07:06.593420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:07:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:07:06] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:08:58.737110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:08:58] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:08:59.062168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:08:59] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:09:15.206437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:09:15.208461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:09:15] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:09:15] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:09:17.087004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:09:17.089003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:09:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:09:17] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-30 16:09:41.725218 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 16:09:41.725218 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 16:09:41.725218 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 16:09:41.725218 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-30 16:11:31.961300 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 16:11:31.961300 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 16:11:31.961300 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 16:11:31.961300 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-30 16:12:14.216739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:12:14] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:12:14.546822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:12:14] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-30 16:17:47.862657 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 16:17:47.862657 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 16:17:47.862657 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 16:17:47.862657 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-30 16:18:10.651994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:18:10] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:18:10.973225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:18:10] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:19:21.661652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:19:21] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:19:21.976310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:19:21] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:19:55.810428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:19:55.812426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:19:55.814429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:19:55] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:19:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:19:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:20:07.993643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:20:08] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:20:08.477779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:20:08] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:21:06.307756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:21:06] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:21:06.620599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:21:06] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:21:11.060567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:21:11.062569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:21:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:21:11.066566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:21:11.069580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:21:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:21:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:21:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-30 16:22:00.076262 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 16:22:00.076262 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 16:22:00.077266 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 16:22:00.077266 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-30 16:25:23.454390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:25:23.458389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:25:23.459389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:25:23] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:25:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:25:23] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:25:26.287204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:25:26.290213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:25:26.292203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:25:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:25:26.297207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:25:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:25:26] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:25:26] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:25:28.589566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:25:28] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:26:47.848243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:26:47.850244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:26:47.852230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:26:47] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:26:47] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:26:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:28:05.763181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:28:05.766175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:28:05.768176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:28:05] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:28:05] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:28:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-30 16:46:29.173770 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 16:46:29.173770 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 16:46:29.173770 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 16:46:29.173770 : ++ FLASK PORT 5001 ++ +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:2022-12-30 16:46:37.148121 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 16:46:37.148121 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 16:46:37.148121 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 16:46:37.148121 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-30 16:46:37.345486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:37.347607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:37.349708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:37.351823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.675689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:37.677699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.681692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:37.684691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.689219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:37.692219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.697220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.699221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.703225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:37.706226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.709220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.716216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:37.720219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.724218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.728223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.734218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:37.736218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.740218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:37.742218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:37.745216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:41.976543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:41.978539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.233362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:42.234357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.453417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:42.455527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.459425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.463423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:42.466505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.470422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.475420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.478434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:42.482436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.486432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.495966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:42.499959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.503971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.510960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:42.513960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.516959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.521962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:42.523961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:42.527091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:42.531961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:46.364873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:46.366895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:46] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:46] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:46.832807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:46.833799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:46] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.774851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:47.777854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.780870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.785866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.789867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.791876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.795998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.799007 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.802992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.805998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:47.808992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.815006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.820004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:47.822001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.826046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.831044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.833052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:47.835044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.840044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:47.844045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:50.675941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:50.677949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:50] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:50] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:50.964912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:50.965902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.273888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:51.276893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.279894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:51.283888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.287907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.292900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:51.294899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.302425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:51.304427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.309427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:51.312435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.318438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.324439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.329485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.333490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:51.337484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.341485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.346487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.350483 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:51.353483 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:55.765410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:56.377751 : partner_login Connexion partnair mysytraining@gmail.com : OK, Date : 2022-12-30 16:46:55.766408 , _id = 638139d0934a818b1f6f85f7 +INFO:root:2022-12-30 16:46:56.381863 : partner_login Connexion partener_token : OK , _id = 63813a72b4c6b1dce20a0481 +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:56] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:56.551619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:56.553623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:56.558620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:46:56.560612 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:46:56.811402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:46:56] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:47:01.313258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:47:01.316258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:47:01.318259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:47:01] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:47:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:47:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:47:07.508226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:47:07.511225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:47:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:47:07.514224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:47:07.517305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:47:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:47:07] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:47:07] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:47:08.416400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:47:08] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:50:28.480545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:50:28.482547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:50:28.486572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:50:28] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:50:28] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:50:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:58:14.458588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:58:14.461589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:58:14.464111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:58:14] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:58:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:58:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-30 16:58:33.304945 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 16:58:33.304945 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 16:58:33.305965 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 16:58:33.305965 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-30 16:58:54.059516 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 16:58:54.060531 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 16:58:54.060531 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 16:58:54.060531 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-30 16:59:02.255074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:59:02.257075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:59:02.260067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:59:02] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:59:02] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:59:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:59:05.704516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 16:59:05.707528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:59:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:59:05.711537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:59:05] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:59:05.715529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:59:05] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:59:05.718534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:59:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:59:05] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2022-12-30 16:59:06.569473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 16:59:06] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:00:04.637483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:00:04.640484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:00:04.643480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:04] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:00:15.660050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:00:15.665052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:00:15.667049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:15] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:00:26.431592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:00:26.434594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:00:26.438590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:00:26.443608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:26] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:26] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:00:26.450605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:26] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:00:27.816642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:27] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:00:57.404011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:00:57.406011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:00:57.409013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:57] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:57] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:00:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:01:01.121708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:01:01.125929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:01:01.127967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:01:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:01:01] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:01:01.133954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:01:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:01:01.136949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:01:01] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:01:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:01:02.038929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:01:02] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-30 17:03:17.199787 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-30 17:03:17.199787 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-30 17:03:17.200832 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-30 17:03:17.200832 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-30 17:03:30.467479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:03:30.469460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:03:30.473463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:03:30] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:03:30] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:03:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:03:34.244759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:03:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:03:34.250012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:03:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:03:34.259012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:03:34.263011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:03:34] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:03:34] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:03:34.269022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:03:34] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:03:35.178976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:03:35] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:03:49.973590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:03:49.979544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:03:49.982542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:03:49] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:03:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:03:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:05:57.778558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:05:57.784561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:05:57.786566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:05:57] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:05:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:05:57] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:06:00.495137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:06:00.499134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:06:00.502137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:06:00] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:06:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:06:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:06:08.968086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:06:08.971088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-30 17:06:08.973092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:06:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:06:08.977088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:06:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:06:08.981089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:06:08] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:06:08] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:06:08] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2022-12-30 17:06:10.244415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/Dec/2022 17:06:10] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:08.667565 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-31 18:35:08.668565 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-31 18:35:08.668565 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-31 18:35:08.668565 : ++ FLASK PORT 5001 ++ +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:2022-12-31 18:35:18.292265 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-31 18:35:18.292265 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-31 18:35:18.292265 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-31 18:35:18.292265 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-31 18:35:31.778751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:31.779778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:31] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:32.020913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:32.021901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:32] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:32.411788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:32.720629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:32.721639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:32.722631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:32.723643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:32.725258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:32.728257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:33.050018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:33.051017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:33.052030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:33.053027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:33.059016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:33.068042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:33.381353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:33.384499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:33.385504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:33.388505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:33.395534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:33.400527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:33.709067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:35.673297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:35.675295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:36.300611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:36.302610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:36] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.118155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:37.122168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.125263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.129161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.134155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.138152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:37.141161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.145155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:37.146152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.151152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:37.154160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.162159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.166159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.172178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:37.173170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.179175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.182170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:37.184706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:35:37.187708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:35:37.194727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:35:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:06.605113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:06.606141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:06] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:06] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:06.880317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:06.882639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:06] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:07.288525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:07.602361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:07.603362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:07.604361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:07.604361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:07.605360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:07.609381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:07.931158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:07.932155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:07.933155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:07.934154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:07.934154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:07.935156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:08.270309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:08.271310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:08.271535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:08.272566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:08.274564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:08.279564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:08.597526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:10.729645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:10.732655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:10.736647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:10] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:10] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:37.167060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:37.468873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:37] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:51.669196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:52.267944 : partner_login Connexion partnair mysy5discovery@gmail.com : OK, Date : 2022-12-31 18:37:51.670286 , _id = 63aef9e685c01d76761b5487 +INFO:root:2022-12-31 18:37:52.272950 : partner_login Connexion partener_token : OK , _id = 63aefb49d2d6a991726f185f +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:52] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:52.527243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:52.530254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:52.535244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:52.541773 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:52.869796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:52] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:37:59.023604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:59.026136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:37:59.029730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:59] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:59] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:37:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:38:02.543678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:38:02.548227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:38:02.550228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:38:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:38:02.557218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:38:02] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:38:02.563215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:38:02] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:38:02] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:38:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2022-12-31 18:39:13.351707 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2022-12-31 18:39:13.352707 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2022-12-31 18:39:13.352707 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2022-12-31 18:39:13.352707 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2022-12-31 18:39:18.732463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:39:18.733456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:39:18.736458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:39:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:39:18] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:39:18] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:40:53.161778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:53.162779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:53] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:53] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:40:53.423661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:53.425668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:53] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:40:53.741620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:40:54.054384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.054384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.055382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.056382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.057382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.058382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:40:54.380973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.380973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.381981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.382981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.383972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.384379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:40:54.702739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.703745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.705744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:40:54.712736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:54.714734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:40:54.719278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:40:55.030148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:40:57.718386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:57.718905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:40:57.719920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:57] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:40:57] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:41:12.427911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:41:12.431929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:41:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:41:12.436922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:41:12.442916 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:41:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:41:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:41:13.142915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:41:13] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:41:20.090070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:41:20.092067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:41:20.094078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:41:20] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:41:20] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:41:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:43:25.228761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:43:25.229758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:43:25.232764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:43:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:43:25] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:43:25] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:45:02.367677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:45:02.368686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:45:02.368686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:45:02.377210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:45:02.378212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:45:02.379224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:02] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:02] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:02] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:02] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:45:07.260615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:45:07.261614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:45:07.264601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:07] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:07] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:45:39.730859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:39] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:45:40.045096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:45:40.046107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:40] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:45:40.323343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:45:40.324344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:45:40.326344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:40] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:45:40] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:47:03.338706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:47:03.339718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:47:03.343708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:47:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:47:03] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:47:03.362718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:47:03.364716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:47:03.365722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:47:03] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:47:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:47:03] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:47:03] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:47:20.364627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:47:20.367621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:47:20.369634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:47:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:47:20] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:47:20] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2022-12-31 18:47:20.394162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:47:20.399149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2022-12-31 18:47:20.401158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:47:20] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:47:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Dec/2022 18:47:20] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:51:38.079622 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-01 12:51:38.080626 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-01 12:51:38.080626 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-01 12:51:38.081624 : ++ FLASK PORT 5001 ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-01 12:51:48.270895 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-01 12:51:48.270895 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-01 12:51:48.270895 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-01 12:51:48.271894 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-01 12:52:06.870127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:52:06.870127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:06] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:07] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:52:07.127450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:52:07.129444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:07] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:52:07.494269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:52:07.796568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:52:07.799572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:52:07.804581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:52:07.809569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:52:07.812564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:52:07.820571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:52:08.121377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:52:08.123376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:52:08.124380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:52:08.138412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:52:08.143474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:52:08.147093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:52:08.452939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:52:08.453929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:52:08.454934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:52:08.456937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:52:08.465936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:52:08.467453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:52:08.778181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:09.452509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:09.454521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:09] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:09] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:10.094124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:10.097123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:10.764557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:10.766557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:10.770586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:10.775554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:10.779552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:10.782552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:10.788566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:10.792581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:10.797870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:10.800564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:10.801848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:10.811836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:10.817835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:10.821838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:10.826835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:10.830848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:10.834847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:10.838008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:10.846841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:10.850842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:16.332281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:17.073691 : partner_login Connexion partnair mysy5discovery@gmail.com : OK, Date : 2023-01-01 12:53:16.333285 , _id = 63aef9e685c01d76761b5487 +INFO:root:2023-01-01 12:53:17.083717 : partner_login Connexion partener_token : OK , _id = 63aefb49d2d6a991726f185f +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:17] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:17.367994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:17.371001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:17.374991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:17] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:17.393016 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:17.757594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:17] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:22.090501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:22] "POST /myclass/api/add_class_mass/ HTTP/1.1" 500 - +INFO:root:2023-01-01 12:53:35.571979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:35.574984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:35.577975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:35.583976 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:36.231576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:36] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:49.798043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:53:49.899266 : external_code = CODE_10007 ==> TECHNIQUE DE VENTE +INFO:root:2023-01-01 12:53:50.407895 : La formation indexée (champ title) =63b1744dcdd23a0b0276784d +INFO:root:2023-01-01 12:53:50.408873 : 1 ont été indexes => title +INFO:root:2023-01-01 12:53:50.413895 : 0 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:50] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:53.875559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:53:53.979669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:53:53] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:54:09.160189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:54:09.165744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:54:09.169726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:54:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:54:09] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:54:09] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:54:39.328138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:54:39.332156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:54:39] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:54:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:56:01.839186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:56:01.885776 : update_class - La formation a bin ete mise à jour =63b1744dcdd23a0b0276784d +INFO:root:2023-01-01 12:56:01.891352 : external_code = CODE_10007 ==> TECHNIQUE DE VENTE +INFO:root:2023-01-01 12:56:02.240804 : La formation indexée (champ title) =63b1744dcdd23a0b0276784d +INFO:root:2023-01-01 12:56:02.240804 : 1 ont été indexes => title +INFO:root:2023-01-01 12:56:02.247207 : external_code = CODE_10007 ==> TECHNIQUE DE VENTE +INFO:root:2023-01-01 12:56:02.550498 : documents must be a non-empty list +INFO:root:2023-01-01 12:56:02.556498 : La formation indexée (champs objectif) =63b1744dcdd23a0b0276784d +INFO:root:2023-01-01 12:56:02.556498 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:56:02] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:56:08.169029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:56:08.173028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:56:08.177025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:56:08] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:56:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:56:08] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:56:46.100452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:56:46.137039 : update_class - La formation a bin ete mise à jour =63b1744dcdd23a0b0276784d +INFO:root:2023-01-01 12:56:46.143040 : external_code = CODE_10007 ==> TECHNIQUE DE VENTE +INFO:root:2023-01-01 12:56:46.493957 : La formation indexée (champ title) =63b1744dcdd23a0b0276784d +INFO:root:2023-01-01 12:56:46.493957 : 1 ont été indexes => title +INFO:root:2023-01-01 12:56:46.498990 : external_code = CODE_10007 ==> TECHNIQUE DE VENTE +INFO:root:2023-01-01 12:56:46.792484 : documents must be a non-empty list +INFO:root:2023-01-01 12:56:46.798052 : La formation indexée (champs objectif) =63b1744dcdd23a0b0276784d +INFO:root:2023-01-01 12:56:46.798052 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:56:46] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:56:51.094724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:56:51.098735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:56:51.100737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:56:51] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:56:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:56:51] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:59:06.978952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:59:07.016630 : update_class - La formation a bin ete mise à jour =63b1744dcdd23a0b0276784d +INFO:root:2023-01-01 12:59:07.022663 : external_code = CODE_10007 ==> TECHNIQUE DE VENTE +INFO:root:2023-01-01 12:59:07.373625 : La formation indexée (champ title) =63b1744dcdd23a0b0276784d +INFO:root:2023-01-01 12:59:07.373625 : 1 ont été indexes => title +INFO:root:2023-01-01 12:59:07.379629 : external_code = CODE_10007 ==> TECHNIQUE DE VENTE +INFO:root:2023-01-01 12:59:07.672968 : documents must be a non-empty list +INFO:root:2023-01-01 12:59:07.678942 : La formation indexée (champs objectif) =63b1744dcdd23a0b0276784d +INFO:root:2023-01-01 12:59:07.678942 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:07] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:59:13.188337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:59:13.195326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:59:13.196331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:13] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:13] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:59:17.672063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:59:17.677068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:59:17.681056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:17] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:17] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:59:31.329773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:59:31.332790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:59:31.336786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:31] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:31] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:59:36.911583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:59:36.915594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:36] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:59:41.921594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:59:41.925600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:59:41.928592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:41] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:41] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 12:59:48.246529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:59:48.251527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 12:59:48.255516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:48] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 12:59:48] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:09:29.213601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:09:29.216596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:09:29.219607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:09:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:09:29] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:09:29] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:09:29.652413 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:09:29.655510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:09:29.657510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:09:29] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:09:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:09:29] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:09:29.679039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:09:29.682036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:09:29.685036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:09:29] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:09:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:09:29] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:09:30.466787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:09:30.470793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:09:30.472788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:09:30] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:09:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:09:30] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:27:27.843124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:27:27.848121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:27:27.851113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:27:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:27:27] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:27:27] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:28:12.737961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:28:12.741961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:28:12.744963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:28:12] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:28:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:28:12] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:28:36.902548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:28:36.905547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:28:36.909542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:28:36] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:28:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:28:36] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:39:52.179537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:39:52.182531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:39:52.184535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:39:52.189528 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:39:53.371831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:39:53.374831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:39:53.377843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:53] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:53] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:39:53.839164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:53] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:39:54.762304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:39:54.765836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:39:54.768847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:54] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:54] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:39:56.881011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:39:56.884018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:39:56.887024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:56] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:56] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 13:39:58.682660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:39:58.685657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 13:39:58.689184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:58] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 13:39:58] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:14.196193 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-01 17:53:14.197190 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-01 17:53:14.197190 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-01 17:53:14.198195 : ++ FLASK PORT 5001 ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-01 17:53:24.872764 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-01 17:53:24.873763 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-01 17:53:24.873763 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-01 17:53:24.873763 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-01 17:53:36.652159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:36.653165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:36] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:37.292577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:37.294580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:38.212762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:38.215747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:38.217759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:38.222293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:38.226302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:38.229379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:38.234928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:38.237486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:38.242501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:38.244508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:38.248514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:38.250518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:38.262532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:38.264530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:38.269537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:38.273078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:38.281089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:38.286073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:38.291071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:38.293081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.519485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:55.522484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.532501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:55.536504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.541012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:55.544269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:55.546861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.550882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:55.556885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.561873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.564877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.572886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.579891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.586875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.591885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.597884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.603894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:55.608896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:55.610883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:55.613884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:59.342165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:59.347471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:59.352469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:59.359630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:59.361624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:59.365617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:59.371633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:59.378623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:59.382612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:59.388627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:59.399629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:59.405615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:59.413624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:59.417616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:59.422621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:59.433612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:59.435609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:59.440609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:53:59.444631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:53:59.449631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:53:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:01.269270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:01.273283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:01.279307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:01.285292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:01.290420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:01.294944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:01.302523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:01.305521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:01.310511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:01.316521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:01.321513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:01.327515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:04.759899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:04.763899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:04.771450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:04.776442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:04.780480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:04.787482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:04.792480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:04.795598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:04.801660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:04.804681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:04.810681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:04.817680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:42.263409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:42.265410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:42] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:42] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:42.965039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:42.967042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.736946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.742944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:43.746944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.750946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.755951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:43.758953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.762960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:43.763944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.770957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.776960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.785344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:43.789361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:43.792360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.797910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.805914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.809906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:43.812903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.815914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 17:54:43.819466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 17:54:43.826462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 17:54:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:23.181951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 18:02:23.183061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:23.797024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 18:02:23.798016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:23] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.204044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 18:02:24.207035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.211035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.215035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.219299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.223390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.227377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.232383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 18:02:24.236406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 18:02:24.237409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.242407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.249416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.255016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 18:02:24.258004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.262006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.266565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 18:02:24.270100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.275090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.279107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:24.286110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 18:02:41.150864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 18:02:41.463312 : pour phrase : ##, voici la liste des formations +INFO:root:2023-01-01 18:02:41.463312 : [] +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 18:02:41] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:06.415777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:06.416773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:06] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:06] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.086685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:07.087684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.576631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.580638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:07.583641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:07.587638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.591647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.595132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.598127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:07.602127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.606124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:07.609146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:07.612124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.620712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:07.622704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.626701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.635720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.639707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.642702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:07.644723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:07.649716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:07.651706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:17.805934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:18.624405 : partner_login Connexion partnair mysy5discovery@gmail.com : OK, Date : 2023-01-01 19:15:17.806555 , _id = 63aef9e685c01d76761b5487 +INFO:root:2023-01-01 19:15:18.633407 : partner_login Connexion partener_token : OK , _id = 63aefb49d2d6a991726f185f +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:18] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:18.926941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:18.929950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:18.935971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:18.943983 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:19.329213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:19] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:25.772541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:25.775547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:25.778547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:25] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:33.181807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:33.187811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:15:33.189799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:33.196810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:33] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:33.202801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:33] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:33] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:15:52.764328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:15:52] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:16:01.518375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:16:01] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:16:09.683391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:16:09.686396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:16:09.689404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:16:09] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:16:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:16:09] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:16:11.185028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:16:11.188026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:16:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:16:11] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:16:32.150090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:16:32] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:16:38.546837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:16:38.550837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:16:38.554845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:16:38] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:16:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:16:38] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:16:40.461464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:16:40.463464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:16:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:16:40] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:17:23.254737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:17:23] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:18:01.678703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:18:01.684475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:18:01.690015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:18:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:18:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:18:01.694995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:18:01.699999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:18:01] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:18:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:18:01] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:18:22.523109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:18:22] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:18:24.122466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:18:24] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:18:32.629139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:18:32.633138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:18:32.637175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:18:32] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:18:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:18:32] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-01 19:18:34.691858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-01 19:18:34.694881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:18:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Jan/2023 19:18:34] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:40.885501 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-02 11:30:40.886500 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-02 11:30:40.886500 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-02 11:30:40.886500 : ++ FLASK PORT 5001 ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-02 11:30:50.209637 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-02 11:30:50.209637 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-02 11:30:50.209637 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-02 11:30:50.210640 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-02 11:30:50.407878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:30:50.408864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:30:50.411879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:30:50.413874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:50] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:50] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:50] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:50.753559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:51.061400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:30:51.061400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:30:51.063391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:51.066329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:51.070331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:51.074859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:51.388364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:30:51.388364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:30:51.389360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:30:51.395358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:51.405355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:51.412359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:51.720061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:30:51.721034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:30:51.726045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:51.733040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:51.739039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:51.744059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:30:52.047218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:30:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:22.020959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:31:22.022958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:22] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:22] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:22.854084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:31:22.857095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:22] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.017567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:31:24.020560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.023570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:31:24.027577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.032582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.034580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.037576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:31:24.040580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.048126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.050111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.054119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.062114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:31:24.065109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.071108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.077119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:31:24.081113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:31:24.086118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.093117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:31:24.095110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:31:24.098111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:31:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.413509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:36.416520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.420032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:36.424268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.428301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.436833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.441834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:36.446362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.453359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.459880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:36.464395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.471940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.477945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.482952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.493943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:36.497961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.502952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.506952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.511953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:36.516483 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:48.120752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:48.123752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:48.126754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:48.130755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:48.136755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:48.140752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:48.146764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:48.149752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:48.153771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:48.155757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:48.166777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:48.169780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:48.174308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:48.183303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:48.184317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:48.186319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:48.190301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:33:48.192300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:48.199303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:33:48.204310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:33:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.116178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:35:43.119197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.122202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:35:43.127194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.132191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.137468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:35:43.142470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.145470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.149000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.153531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.161538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:35:43.166534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.172534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.174531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.181534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:35:43.182538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.189553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:35:43.191557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:35:43.197563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:35:43.198554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:35:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:09.499764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:09.503748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:09.506752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:09.517748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:09.520760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:09.530750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:09.537757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:09.542752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:09.547750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:09.552752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:09.558753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:09.564752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:09.570745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:09.574747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:09.579770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:09.586768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:09.592765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:09.596298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:09.599303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:09.604294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.147130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:27.151144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.156668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:27.159674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.164678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.171305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:27.173999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.178027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.184564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.188560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.194564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.202559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:27.206584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.213589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:27.218576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.222588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:27.224583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.238535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:37:27.240542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:37:27.245057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:37:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:05.093292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:40:05.094305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:05] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:05] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:05.687496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:40:05.688495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:05] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.609924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:40:06.612925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.615931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:40:06.617447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.623458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:40:06.625463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.630463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.633463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.639467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:40:06.640460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.645470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.653620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.656816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:40:06.660616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.666622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.672622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:40:06.675626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.679623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:40:06.683629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:40:06.686627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:40:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:41.328681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:46:41.330682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:41] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:41] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:42.090066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:46:42.093072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:42] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:42.983177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:46:42.988177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:42.991179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:46:42.995180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:42.998176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:43.008177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:46:43.011175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:43.016178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:46:43.020174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:43.026176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:46:43.029174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:43.039177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:46:43.042173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:46:43.045173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:43.049191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:43.056191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:43.062190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:43.066722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:46:43.072719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:46:43.076720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:46:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:18.110387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:47:18.112520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:18] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:18] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:18.726635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:47:18.727637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:18] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:19.119222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:47:19.121736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:19.124754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:47:19.127756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:19.131764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:47:19.135746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:19.138758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:47:19.141754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:19.144761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:19.149749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:47:19.153760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:19.160769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:19.164750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:47:19.167788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:19.171787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:47:19.175783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:19.181296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:47:19.184320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:19.189319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:47:19.194682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:47:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:38.915619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:48:38.916609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:39.640403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:48:39.642412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:39] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:40.231155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:48:40.234157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:40.237681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:40.242695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:40.245694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:48:40.249693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:40.253247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:40.256237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:48:40.260237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:40.264237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:40.271246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:48:40.274242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:48:40.276238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:40.279243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:40.288242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:48:40.291260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:40.298628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:48:40.305703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:48:40.307691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:48:40.309795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:48:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:49:37.289548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:49:37.292150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:37] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:37] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:49:38.072903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:49:38.074889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:49:38.668018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:49:38.671019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:49:38.675022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:49:38.677018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:49:38.680017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:49:38.685020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:49:38.689024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:49:38.693023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:49:38.697032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:49:38.700023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:49:38.703039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:49:38.709048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:49:38.712037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:49:38.728589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:49:38.730578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:49:38.735579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:49:38.740575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:49:38.742578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:49:38.746581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:49:38.751579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:49:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:08.157426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:51:08.158960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:08] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:08] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:08.857683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:51:08.859683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:08] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:09.396117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:51:09.400121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:09.406124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:09.410120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:09.414115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:51:09.417128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:09.422137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:51:09.425131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:51:09.428128 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:09.433400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:09.441230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:09.446787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:51:09.448787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:09.452786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:09.457787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:51:09.459301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:09.467329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:51:09.471314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:51:09.473330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:51:09.477351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:51:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:52:04.998113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:52:05.003113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:52:05.005114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:52:05] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:52:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:52:05] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:56:44.570500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:56:44.573499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:56:44.577509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:56:44] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:56:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:56:44] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:57:02.713449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:57:02.717472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:57:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:57:02] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:57:12.153089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:57:12.973565 : partner_login Connexion partnair mysy5discovery@gmail.com : OK, Date : 2023-01-02 11:57:12.154098 , _id = 63aef9e685c01d76761b5487 +INFO:root:2023-01-02 11:57:12.980578 : partner_login Connexion partener_token : OK , _id = 63aefb49d2d6a991726f185f +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:57:12] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:57:13.161166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:57:13.166166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:57:13.169170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:57:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:57:13.178182 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:57:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:57:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:57:13.475045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:57:13] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:57:18.473635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:57:18.476648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:57:18.479633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:57:18] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:57:18.482640 : Le token partner est vide +INFO:root:2023-01-02 11:57:18.492794 : get_partner_class - Le token est vide +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:57:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:57:18.493661 : GetPartnerAttestation_Certificat Impossible de recuperer la liste des attestations +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:57:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:10.428977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:10.448666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:10] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:11.317220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:11.319220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:11] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.041160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:12.044695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.048689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:12.052702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.057687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.061700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:12.064696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.067701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:12.071697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.080224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.095226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:12.101230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.106229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:12.108235 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:12.114238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.121227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.127226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.133243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.140248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:12.145772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:15.975827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:15.982817 : partner_login Connexion partnair mysy5discovery@gmail.com : OK, Date : 2023-01-02 11:58:15.976827 , _id = 63aef9e685c01d76761b5487 +INFO:root:2023-01-02 11:58:15.987814 : partner_login Connexion partener_token : OK , _id = 63aefb49d2d6a991726f185f +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:15] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:16.248520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:16.253072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:16.257074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:16.265076 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:16.610045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:16] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:58:23.332372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:23.335892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:58:23.339913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:23] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:58:23] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:45.623583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:45.625582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:45] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:45] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:45.888031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:45.890048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:45] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:46.132996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:46.452881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:46.453895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:46.454892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:46.455891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:46.460901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:46.464896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:46.778927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:46.779937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:46.779937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:46.785294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:46.794308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:46.797292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:47.103111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:47.105108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:47.108112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:47.111116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:47.113105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:47.118112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:47.416804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:48.407250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:48.409801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:48.410788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:48] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:48] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-02 11:59:56.583626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:56.586630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 11:59:56.589627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:56] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 11:59:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:01:58.192700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:01:58.194699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:01:58.198705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:01:58] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:01:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:01:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:02.956431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:02.960442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:02.962441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:02.973459 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:03.458165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:06.390658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:06.393663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:06.395664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:06] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:23.453708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:23] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:24.253003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:24] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:32.359589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:32.362592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:32.366597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:32] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:32.378600 : get_associated_class_of_partnair - La valeur : internal_url 'prise-de-parole-en-public-d63' est KOO dans la myclass +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:32] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:38.506988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:38.819193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:39.192280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:39.194285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:39] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:39.461621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:39.722508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:39.723518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:39.723518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:39.728514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:39.734506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:39.771798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:40.036343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:40.038320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:40.045322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:40.045322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:40.046324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:40.085036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:40.350750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:40.353751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:40.362737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:40.363751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:02:40.364756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:40.394740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:02:40.680347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:02:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:55.898421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:04:55.900422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:55] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:56] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:56.151988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:04:56.153538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:56] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:56.596545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:56.900215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:04:56.902218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:04:56.905225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:04:56.908217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:56.916223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:56.919220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:57.222476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:04:57.224484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:57.229476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:57.238773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:04:57.241784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:57.247806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:57.542136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:57.551129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:04:57.553123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:57.558660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:57.565657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:57.568652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:57.867489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:04:58.855140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:04:58.858220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:04:58.862220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:58] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:04:58] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:06:20.120537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:06:20.122591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:06:20.125752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:06:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:06:20] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:06:20] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:06:45.210401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:06:45] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:06:45.522793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:06:45.527791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:06:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:06:45] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:06:50.309333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:06:50.312342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:06:50.315340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:06:50] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:06:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:06:50] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:07:10.466021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:07:10.770021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:10] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:07:11.261786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:11.262785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:11] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:07:11.525641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:07:11.837788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:11.837788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:11.838797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:11.840804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:11.846010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:11.846010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:07:12.155644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:12.158640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:07:12.167663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:12.168654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:12.169649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:12.173656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:07:12.471794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:12.473784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:07:12.481241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:07:12.486241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:12.487238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:07:12.490237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:07:12.779025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:07:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 12:16:02.148342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:16:02.150339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 12:16:02.154349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:16:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:16:02] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 12:16:02] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:14.566618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 14:10:14.568615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:14] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:14] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:14.808333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 14:10:14.810333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:14] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:15.353943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:15.672190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 14:10:15.673198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 14:10:15.673198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:15.680193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 14:10:15.681189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 14:10:15.683187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:16.001163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 14:10:16.002156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:16.005665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:16.012673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:16.016198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:16.019727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:16.310970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:16.315969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:16.318962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:16.322960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:16.326964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-02 14:10:16.329964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-02 14:10:16.625788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Jan/2023 14:10:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:44:25.123647 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-03 13:44:25.123647 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-03 13:44:25.123647 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-03 13:44:25.123647 : ++ FLASK PORT 5001 ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-03 13:44:35.307700 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-03 13:44:35.307700 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-03 13:44:35.307700 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-03 13:44:35.307700 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-03 13:46:47.564675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:47.566190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:47] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:47] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:48.219061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:48.221076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:48] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:49.342916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:49.347931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:49.352029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:49.356031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:49.366028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:49.368030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:49.372033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:49.377029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:49.384025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:49.390036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:49.394030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:49.408033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:49.413032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:49.414029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:49.424038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:49.429025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:49.434029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:49.439059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:49.445053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:49.449055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:55.614740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:56.608380 : partner_login Connexion partnair mysytraining@gmail.com : OK, Date : 2023-01-03 13:46:55.615743 , _id = 638139d0934a818b1f6f85f7 +INFO:root:2023-01-03 13:46:56.616394 : partner_login Connexion partener_token : OK , _id = 63813a72b4c6b1dce20a0481 +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:56] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:56.901318 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:56.905324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:46:56.909324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:56.940327 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:46:57.290987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:46:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-03 13:47:03.298803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:47:03.301803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 13:47:03.304804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:47:03] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:47:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 13:47:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:37.953584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:37.958594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:38.811132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:38.814136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:38] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:39.340847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:39.342865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:39.346860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:39.350860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:39.354862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:39.357376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:39.362390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:39.366390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:39.368391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:39.371386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:39.379408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:39.382408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:39.385408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:39.386408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:39.392950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:39.396945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:39.399960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:39.405957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:39.408959 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:39.412956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:44.080600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:44.082599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:44.821650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:44.822644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:44] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:45.106246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:45.108247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:45.111245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:45.116247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:45.121249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:45.122261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:45.125263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:45.128262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:45.133260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:45.138314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:45.144310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:45.153308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:45.159316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:45.162314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:45.168314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:45.172319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:45.175320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:45.178313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:45.181334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:45.185327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:48.288059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:48.289053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:48] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:48] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:53.248812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:53.250819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:53] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:53] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.147477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:54.149464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.505264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:54.506270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.511044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:54.513043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.519045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.523041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.526036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.531036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.534041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.538049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.542059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.550576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.555585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.560587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.565592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:54.567588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.571585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.575587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:54.579588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:54.581592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:56.401697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:56.402732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:56] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:56] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.203769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:57.204767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.619993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.623991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:57.626999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:57.629994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.634011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.638018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.641019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:57.645011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.648561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:57.652554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.659553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:57.663550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.666559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:57.668555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:57.673556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.679552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.682550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:37:57.686552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.688552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:37:57.692550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:37:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:38:02.636530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:38:02.643547 : partner_login Connexion partnair mysy5discovery@gmail.com : OK, Date : 2023-01-03 15:38:02.637546 , _id = 63aef9e685c01d76761b5487 +INFO:root:2023-01-03 15:38:02.647545 : partner_login Connexion partener_token : OK , _id = 63aefb49d2d6a991726f185f +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:38:02] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:38:02.761279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:38:02.765280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:38:02.768277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:38:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:38:02.774278 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:38:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:38:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:38:02.960541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:38:02] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:38:29.823339 : Security check : IP adresse '127.0.0.1' connected +DEBUG:PIL.Image:Importing BlpImagePlugin +DEBUG:PIL.Image:Importing BmpImagePlugin +DEBUG:PIL.Image:Importing BufrStubImagePlugin +DEBUG:PIL.Image:Importing CurImagePlugin +DEBUG:PIL.Image:Importing DcxImagePlugin +DEBUG:PIL.Image:Importing DdsImagePlugin +DEBUG:PIL.Image:Importing EpsImagePlugin +DEBUG:PIL.Image:Importing FitsImagePlugin +DEBUG:PIL.Image:Importing FitsStubImagePlugin +DEBUG:PIL.Image:Importing FliImagePlugin +DEBUG:PIL.Image:Importing FpxImagePlugin +DEBUG:PIL.Image:Image: failed to import FpxImagePlugin: No module named 'olefile' +DEBUG:PIL.Image:Importing FtexImagePlugin +DEBUG:PIL.Image:Importing GbrImagePlugin +DEBUG:PIL.Image:Importing GifImagePlugin +DEBUG:PIL.Image:Importing GribStubImagePlugin +DEBUG:PIL.Image:Importing Hdf5StubImagePlugin +DEBUG:PIL.Image:Importing IcnsImagePlugin +DEBUG:PIL.Image:Importing IcoImagePlugin +DEBUG:PIL.Image:Importing ImImagePlugin +DEBUG:PIL.Image:Importing ImtImagePlugin +DEBUG:PIL.Image:Importing IptcImagePlugin +DEBUG:PIL.Image:Importing JpegImagePlugin +DEBUG:PIL.Image:Importing Jpeg2KImagePlugin +DEBUG:PIL.Image:Importing McIdasImagePlugin +DEBUG:PIL.Image:Importing MicImagePlugin +DEBUG:PIL.Image:Image: failed to import MicImagePlugin: No module named 'olefile' +DEBUG:PIL.Image:Importing MpegImagePlugin +DEBUG:PIL.Image:Importing MpoImagePlugin +DEBUG:PIL.Image:Importing MspImagePlugin +DEBUG:PIL.Image:Importing PalmImagePlugin +DEBUG:PIL.Image:Importing PcdImagePlugin +DEBUG:PIL.Image:Importing PcxImagePlugin +DEBUG:PIL.Image:Importing PdfImagePlugin +DEBUG:PIL.Image:Importing PixarImagePlugin +DEBUG:PIL.Image:Importing PngImagePlugin +DEBUG:PIL.Image:Importing PpmImagePlugin +DEBUG:PIL.Image:Importing PsdImagePlugin +DEBUG:PIL.Image:Importing SgiImagePlugin +DEBUG:PIL.Image:Importing SpiderImagePlugin +DEBUG:PIL.Image:Importing SunImagePlugin +DEBUG:PIL.Image:Importing TgaImagePlugin +DEBUG:PIL.Image:Importing TiffImagePlugin +DEBUG:PIL.Image:Importing WebPImagePlugin +DEBUG:PIL.Image:Importing WmfImagePlugin +DEBUG:PIL.Image:Importing XbmImagePlugin +DEBUG:PIL.Image:Importing XpmImagePlugin +DEBUG:PIL.Image:Importing XVThumbImagePlugin +INFO:root:2023-01-03 15:38:30.465293 : external_code = CODE_10008 ==> SENSIBILISER AUX HANDICAPS +INFO:root:2023-01-03 15:38:30.928761 : La formation indexée (champ title) =63b43de6d172a4d932499789 +INFO:root:2023-01-03 15:38:30.928761 : 1 ont été indexes => title +INFO:root:2023-01-03 15:38:30.933762 : 0 ont été indexes ==> keyword +INFO:root:2023-01-03 15:38:31.031967 : external_code = CODE_10009 ==> GESTION DU STRESS +INFO:root:2023-01-03 15:38:31.308846 : La formation indexée (champ title) =63b43de7d172a4d9324997a4 +INFO:root:2023-01-03 15:38:31.308846 : 1 ont été indexes => title +INFO:root:2023-01-03 15:38:31.312892 : 0 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:38:31] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:38:34.388444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:38:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:38:34.475349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:38:34] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:38:50.740020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:38:50.743019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:38:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:38:50] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:40:14.854046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:40:14.882348 : update_class - La formation a bin ete mise à jour =63b43de6d172a4d932499789 +INFO:root:2023-01-03 15:40:14.887389 : external_code = CODE_10008 ==> SENSIBILISER AUX HANDICAPS +INFO:root:2023-01-03 15:40:15.167111 : La formation indexée (champ title) =63b43de6d172a4d932499789 +INFO:root:2023-01-03 15:40:15.167111 : 1 ont été indexes => title +INFO:root:2023-01-03 15:40:15.170636 : external_code = CODE_10008 ==> SENSIBILISER AUX HANDICAPS +INFO:root:2023-01-03 15:40:15.417807 : documents must be a non-empty list +INFO:root:2023-01-03 15:40:15.421803 : La formation indexée (champs objectif) =63b43de6d172a4d932499789 +INFO:root:2023-01-03 15:40:15.421803 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:40:15] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:40:24.028354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:40:24.030349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:40:24] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:40:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:41:45.252346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:41:45.271334 : update_class - La formation a bin ete mise à jour =63b43de7d172a4d9324997a4 +INFO:root:2023-01-03 15:41:45.276339 : external_code = CODE_10009 ==> GESTION DU STRESS +INFO:root:2023-01-03 15:41:45.559699 : La formation indexée (champ title) =63b43de7d172a4d9324997a4 +INFO:root:2023-01-03 15:41:45.560717 : 1 ont été indexes => title +INFO:root:2023-01-03 15:41:45.564716 : external_code = CODE_10009 ==> GESTION DU STRESS +INFO:root:2023-01-03 15:41:45.810302 : documents must be a non-empty list +INFO:root:2023-01-03 15:41:45.814301 : La formation indexée (champs objectif) =63b43de7d172a4d9324997a4 +INFO:root:2023-01-03 15:41:45.814301 : 1 ont été indexes ==> keyword +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:41:45] "POST /myclass/api/update_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:44:14.206047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:14.206047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:14] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:14] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:44:14.950490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:14.952503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:44:15.610646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:15.611644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:44:15.622647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:15.623654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:15.623654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:15.624650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:44:15.924520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:15.925528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:44:15.939523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:15.940515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:15.941512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:15.942518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:44:16.246503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:16.247500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:44:16.259503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:16.260507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:16.262503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:16.262503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:44:16.575279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:44:16.577277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:44:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:48:43.782957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:43.782957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:43] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:43] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:48:44.348060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:44.349057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:44] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:48:44.839965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:44.840963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:44.840963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:44.841963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:44.843962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:48:44.849963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:48:45.164058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:45.165058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:45.166058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:45.166578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:45.167095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:45.169126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:48:45.503385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:45.504397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:45.505384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:45.506384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:45.509415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:45.513392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:48:45.826710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:45.828713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:48:49.854822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:49.856836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:48:49.860838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:49] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:48:49] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:53:01.915627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:53:01.917632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:53:01.920631 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:53:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_N4tkAELoBchudT/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_N4tkAELoBchudT/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MKk0DAbmaEugrFTwgkOrfGj",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": null,\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": null\n },\n "country": "US",\n "exp_month": 12,\n "exp_year": 2023,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1672412169,\n "customer": "cus_N4tkAELoBchudT",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1MKjyYAbmaEugrFTNyYbZQN2",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "5 Discovery",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "exp_month": 1,\n "exp_year": 2024,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1672412066,\n "customer": "cus_N4tkAELoBchudT",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_N4tkAELoBchudT/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_SCBspx2obPogw7 message='Dashboard link for request' +INFO:root:2023-01-03 15:53:02.379962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:53:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:53:02] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:53:02.424275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:53:02] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:53:11.923447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:53:11.926445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:53:11.928446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:53:11] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:53:11] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:53:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:53:19.534199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:53:19.551194 : Add_Update_SessionFormation_mass Le champs 'session_status' de ligne 0 est incorrecte. Les valeurs acceptées sont 0,1,2 +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:53:19] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:54:01.384655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:54:01.397192 : Add_Update_SessionFormation_mass - Impossible de créer la session de formation : La date debut des inscriptions 03/10/2023 est posterieure à la date de fin des inscriptions 27/02/2023 pour la ligne 0 +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:01] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:54:38.051904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:38] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:54:38.373228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:38] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:54:41.165772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:54:41.168784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:54:41.169782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:54:41.176782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:41] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:54:41.179784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:41] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:41] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:54:50.993507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:54:50.995509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:54:50.998522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:51] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:51] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:54:53.376722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:54:53.378723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:54:53] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:56:40.187766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:56:40.190747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:56:40.193758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:56:40] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:56:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:56:40] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:56:46.565645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:56:46.568161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:56:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:56:46] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:56:53.773512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:56:53.776035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:56:53.777047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:56:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:56:53] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:56:53] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 15:58:48.627067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:58:48.630077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 15:58:48.632079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:58:48] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:58:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 15:58:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:05:32.454115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:05:32.457116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:05:32.459136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:32] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:05:40.322874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:40] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:05:40.852802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:40] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:05:43.840305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:05:43.842298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:05:43.845294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:05:43.847296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:05:43.852295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:43] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:43] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:43] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:05:50.964901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:05:50.968903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:05:50.970902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:50] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:50] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:05:53.205898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:05:53.208897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:05:53] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:06:03.063003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:06:03.066000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:06:03.068001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:06:03] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:06:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:06:03] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:06:08.647718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:06:08.649729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:06:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:06:08] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:12:44.900170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:12:44.903170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:12:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:12:44] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:12:44.918173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:12:44.920182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:12:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:12:44] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:13:06.305053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:13:06.307421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:13:06.309538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:13:06.313644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:06] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:06] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:13:09.955180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:13:09.957178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:13:09.960181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:09] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:09] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:13:11.975305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:13:11.977304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:11] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:13:44.124098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:13:44.127094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:44] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:13:45.014245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:13:45.017251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:45] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:13:47.788272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:13:47.791276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:13:47.794269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:47] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:47] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:13:49.512278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:13:49.517279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:13:49] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:14:03.662929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:14:03.664916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:14:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:14:03] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:14:03.685655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:14:03.687660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:14:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:14:03] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:15:05.274514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:15:05.277512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:05] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:15:05.289516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:15:05.291520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:05] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:15:17.814869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:15:17.817875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:15:17.819863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:17] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:17] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:15:20.709738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:15:20.711751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:20] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:15:58.791556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:15:58.793620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:15:58.796754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:15:58.797857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:58] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:58] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:15:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:16:06.024062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:16:06.028045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:16:06.031050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:16:06] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:16:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:16:06] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:16:07.585291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:16:07.587290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:16:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:16:07] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:02.596112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:02.596112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:02.597123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:02] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:02.612108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:02.613110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:02] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:02.616106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:02.922462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:02.923461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:02.924463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:02.926462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:02.940479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:02.944472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:03.080190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:03.085184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:03.088182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:03.112187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:03.120193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:03.125182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:03.241404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:03.244390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:03.249403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:03.255399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:03.256420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:03.266412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:03.557840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:03.558842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:03.560840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:03.569847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:03.572374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:03.880866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:03.884866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:03.889867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:03] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:07.142788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:07.144307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:07.147326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:07] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:07] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:10.647809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:10.952626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:11] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:11.739414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:11.740421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:11] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:11.994905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:12.207891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:12.207891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:12.208891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:12.212891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:12.217896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:12.302033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:12.525839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:12.527847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:12.529838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:12.535838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:12.536836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:12.610157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:12.846573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:12.846573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:12.847577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:12.848564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:12.856284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:12.922642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:13.171103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:19.946434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:19.947440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:19] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:20] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:30.420517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:30] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:30.731403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:30] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:31.512913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:31.513912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:31] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:31.765942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:31.995383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:31.996381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:31.996381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:31.998383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:31.999381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:32.072195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:32.312262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:32.313269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:32.314260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:32.320262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:32.321258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:32.383257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:32.634743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:32.635752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:32.636751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:32.636751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:20:32.638764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:32.698321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:20:32.962603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:20:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:21:51.689309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:51.690322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:51.691309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:51.691309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:51.692329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:51.694331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:21:52.015033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.015033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.016039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.019036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:21:52.022571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:21:52.028571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:21:52.232913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.239303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.242305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:21:52.343099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.344098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.345110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.345110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.346115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.349112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:21:52.573968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.576113 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.579278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:21:52.594808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.595827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.599388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:21:52.668513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.669515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.671514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.671514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:21:52.674510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:21:52] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:43:00.548328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:43:00.549326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:43:00.549836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:43:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:43:00] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:43:00] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:00.502403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:45:00.503411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:45:00.504400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:00] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:00] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:34.789476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:34] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:35.093139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:35.735357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:45:35.736354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:35] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:35.989319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:36.262294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:45:36.263805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:45:36.264813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:45:36.264813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:45:36.266829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:36.296939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:36.576967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:36.581962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:45:36.582969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:36.586975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:45:36.588966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:36.601976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:36.884229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:36.889221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:45:36.892224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:36.897217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-03 16:45:36.898221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:36.910228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-03 16:45:37.197125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [03/Jan/2023 16:45:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:09.082964 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 10:04:09.082964 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 10:04:09.082964 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 10:04:09.082964 : ++ FLASK PORT 5001 ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 10:04:18.026727 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 10:04:18.027728 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 10:04:18.027728 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 10:04:18.027728 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-04 10:04:18.210117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:04:18.211115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:04:18.213112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:04:18.215110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:18] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:18] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:18] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:18.541666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:18.847835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:04:18.848841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:18.852844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:04:18.854836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:04:18.856840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:18.861836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:19.158655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:19.163663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:19.190283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:04:19.192272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:19.195283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:19.197275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:19.471169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:04:19.473165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:19.519805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:04:19.519805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:19.523792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:19.528793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:04:19.785747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:04:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:10:13.130515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:10:13.131508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:10:13.133513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:10:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:10:13] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:10:13] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:17:41.542378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:17:41.543389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:17:41.545386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:17:41.549387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:17:41.550898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:17:41.552917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:17:41.870000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:17:41.871010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:17:41.871010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:17:41.873567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:17:41.877561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:17:41.880095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:17:42.195185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:17:42.196188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:17:42.196188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:17:42.199196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:17:42.203240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:17:42.210210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:17:42.519910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:17:42.521909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:17:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:00.526320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:00.527316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:00.527316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:00.533327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:00.534317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:00.537316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:00.858027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:00.859023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:00.860017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:00.861019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:00.865019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:00.870030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:01.183214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:01.184205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:01.188214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:01.191218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:01.199206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:01.203205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:01.495831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:01.500832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:16.522488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:16.523487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:16.527485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:16.529497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:16.532503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:16.536503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:16.834257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:16.836258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:16.841304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:16.842348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:16.844941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:16.849962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:17.148513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:17.150511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:17.160513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:17.161512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:17.162501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:17.163507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:17.476637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:17.478633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:27.046870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:27.047870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:27] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:27] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:27.311964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:27.312955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:27] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:27.659277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:27.965840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:27.966970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:27.967966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:27.968968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:27.971967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:27.974966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:28.301534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:28.302535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:28.303526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:28.304531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:28.305652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:28.309547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:28.632635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:28.633632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:28.633632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:28.638635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:28.644112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:28.646126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:28.945071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:49.196432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:49.198433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:49] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:49] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:49.449889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:49.450883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:49] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:49.796187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:50.101477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:50.104470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:50.111470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:50.112474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:50.114469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:50.117484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:50.418775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:50.420783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:50.426773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:50.428778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:50.434774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:50.437783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:50.734917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:50.735906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:19:50.736919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:50.741917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:50.746908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:50.752537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:19:51.059463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:19:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:20:56.874336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:20:56.874336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:20:56.878344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:20:56.881350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:20:56.885343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:20:56.887350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:20:57.189448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:20:57.191441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:20:57.193440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:20:57.201487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:20:57.202485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:20:57.207499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:20:57.505157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:20:57.508148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:20:57.509147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:20:57.519151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:20:57.522157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:20:57.524176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:20:57.833100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:20:57.836101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:20:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:21:21.812282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:21:21.815280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:21:21.817807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:21:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:21:21] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:21:21] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:28:52.454334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:28:52.455341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:28:52.456344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:28:52.460330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:28:52.466337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:28:52.469870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:28:52.783575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:28:52.784577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:28:52.784577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:28:52.787594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:28:52.792582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:28:52.797590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:28:53.111143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:28:53.112665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:28:53.118243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:28:53.122250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:28:53.124239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:28:53.131241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:28:53.439679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:28:53.441678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:28:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:40.151790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:29:40.152786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:40] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:40] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:40.410827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:29:40.411833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:40] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:40.751765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:41.066216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:29:41.067224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:29:41.069242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:29:41.072245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:41.077234 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:41.081237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:41.394526 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:29:41.397531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:41.400522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:41.403523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:41.406521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:41.410523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:41.705167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:29:41.707166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:41.711154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:29:41.714156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:41.720168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:29:41.723157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:29:42.015235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:29:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:43.994030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:30:43.996030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:44.254060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:30:44.255045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:44] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:44.839573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:45.143238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:30:45.145238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:45.150246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:45.153247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:45.157244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:45.161258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:45.459342 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:30:45.464354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:45.474889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:30:45.480889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:30:45.481890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:30:45.486888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:45.785583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:30:45.787591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:45.794587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:45.801583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:45.808582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:30:45.811586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:30:46.111985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:30:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:52.472725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:31:52.473729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:31:52.474724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:31:52.477724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:52.485727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:52.487742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:52.801418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:31:52.803413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:52.806008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:52.810012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:31:52.812016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:31:52.815014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:52] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:53.111403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:53.122418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:31:53.125417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:53.128425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:31:53.130466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:31:53.133474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:53.436051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:53] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:53.439045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:59.472592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:31:59.472592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:59] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:59] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:31:59.731147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:31:59.732150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:31:59] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:00.091542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:00.401013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:00.402015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:00.402015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:00.406013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:00.409017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:00.413012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:00.714502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:00.723502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:00.725500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:00.725500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:00.726499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:00.731499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:01.024369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:01.036376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:01.040364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:01.044368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:01.047361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:01.051374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:01.347438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:31.869229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:31.872227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:31.872227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:31.874237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:31.879230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:31.886229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:32.196631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:32.197632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:32.198623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:32.200623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:32.205153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:32.209686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:32.523459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:32.524457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:32.525466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:32.529455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:32.531479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:32.539381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:32.862977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:32.864995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:36.706455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:36.707967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:36] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:36.958026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:36.959027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:37.242885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:37.550989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:37.551990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:37.552985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:37.553993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:37.556990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:37.558989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:37.874804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:37.876803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:37.878813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:37.880813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:37.883809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:37.886805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:38.203338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:32:38.204348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:38.208347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:38.211880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:38.213875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:38.218877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:32:38.530073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:32:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:35:38.697327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:35:38.699316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:35:38.702313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:35:38.705322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:35:38.709321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:35:38.713321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:35:39.011736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:35:39.014505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:35:39.016535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:35:39.018538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:35:39.021536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:35:39.030540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:35:39.320694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:35:39.331219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:35:39.332222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:35:39.334223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:35:39.335738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:35:39.342763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:35:39.650613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:35:39.652591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:35:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:36:26.005261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:26] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:36:26.307078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:26] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:36:26.688714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:26.689714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:26] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:36:26.986997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:36:27.299626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:27.299626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:27.300624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:27.301633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:27.305619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:27.308619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:36:27.637150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:27.637150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:27.640650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:27.642660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:27.643659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:36:27.648657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:36:27.962313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:27.963307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:27.964307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:36:27.968314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:36:27.971311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:36:27.975312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:36:28.283830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:36:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:42:24.638087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:42:24.639086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:42:24.639086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:42:24.645086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:42:24.649087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:42:24.651088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:42:24.965657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:42:24.966770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:42:24.968802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:42:24.972878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:42:24.975874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:42:24.978878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:42:25.293114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:42:25.294129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:42:25.296122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:42:25.307134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:42:25.308649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:42:25.312205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:42:25.619015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:42:25.621012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:42:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:19.126525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:19.127539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:19.128530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:19.131524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:19.135530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:19.139532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:19.453207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:19.455216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:19.455216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:19.461205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:19.464736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:19.469740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:19.764484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:19.766501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:19.774517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:19.778500 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:19.781042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:19.783040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:20.092337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:20.094323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:24.997595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:24.999594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:25] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:25] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:25.251546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:25.252554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:25] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:25.625047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:25.937598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:25.938599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:25.939602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:25.945603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:25.946600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:25.953602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:26.252042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:26.258048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:26.260055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:26.263046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:26.266050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:26.270057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:26.561648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:26.566658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:26.571159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:26.573172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:26.580175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:44:26.582175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:44:26.874533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:44:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:46:25.587286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:46:25.589289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:46:25.590284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:46:25.595306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:46:25.596829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:46:25.600848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:46:25.913176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:46:25.915181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:46:25.916709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:46:25.922722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:46:25.924724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:46:25.927726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:46:26.225816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:46:26.228813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:46:26.234830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:46:26.238825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:46:26.242828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:46:26.246352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:46:26.552414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:46:26.554407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:46:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:47:22.894151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:47:22.895155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:47:22.896150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:47:22.897158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:47:22.903155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:47:22.907155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:47:23.221658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:47:23.222661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:47:23.223859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:47:23.223859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:47:23.231100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:47:23.235104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:47:23.551765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:47:23.555787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:47:23.557787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:47:23.570870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:47:23.577888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:47:23.582899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:47:23.888232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:47:23.890231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:47:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:24.001439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:24.002442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:24.003446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:24.007015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:24.011005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:24.017998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:24.335773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:24.337785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:24.338792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:24.340784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:24.348769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:24.353771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:24.663554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:24.664553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:24.665553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:24.671552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:24.679565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:24.683558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:24.988784 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:24.990794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:30.253669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:30.255669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:30] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:30] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:30.509079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:30.510096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:30] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:31.086447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:31.401274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:31.402274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:31.402274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:31.406276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:31.409273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:31.414271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:31.726986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:31.728991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:31.734985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:31.736979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:31.738992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:31.743985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:32.058211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:32.059216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:32.060210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:32.062214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:32.071371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:32.073374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:32.383095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:50.415554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:50.416549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:50.417564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:50.419559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:50.425556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:50.431573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:50.745940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:50.746950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:50.751942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:50.754942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:50.757942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:50.761940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:51.071419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:51.072431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:51.076430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:51.084643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:51.087643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:51.090642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:51.399812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:51.401814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:56.447762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:56.448763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:56] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:56] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:56.712317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:56.714303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:56] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:57.018231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:57.320423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:57.325422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:57.326426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:57.330419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:57.333420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:57.337434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:57.647057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:57.648064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:57.649056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:57.653583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:57.655580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:57.661103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:57.972199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:57.974199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:57.977190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:57.980191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:57.984187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:48:57.986188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:48:58.282794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:48:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:55.081156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:50:55.083164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:50:55.084157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:55.090155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:55.095172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:50:55.097171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:55.408028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:50:55.410033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:55.413035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:55.416039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:50:55.418033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:55.422035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:55.732992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:50:55.734995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:55.742029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:55.746035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:55.750028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:55.752582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:55] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:50:56.059588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:50:56.061583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:50:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:00.033172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:00.035169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:00] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:00] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:00.294905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:00.295908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:00] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:00.659331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:00.962340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:00.964342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:00.968343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:00.970350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:00.973343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:00.977344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:01.283033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:01.285026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:01.288035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:01.292037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:01.295033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:01.298040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:01.593950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:01.595954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:01.602981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:01.603997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:01.605988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:01.613994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:01.907708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:45.384976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:45.385963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:45.386964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:45.387969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:45.392046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:45.396053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:45.712093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:45.714616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:45.717720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:45.721731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:45.727421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:45.729525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:46.036573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:46.037583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:46.046576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:46.049584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:46.053571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:46.056573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:51:46.363988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:51:46.366983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:51:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:38.284672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:38.285667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:38.285667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:38.287199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:38.289218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:38.295207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:38.612816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:38.614816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:38.617806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:38.621806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:38.623809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:38.627811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:38.935817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:38.935817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:38.936844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:38.941832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:38.950832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:38.952835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:39.260654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:39.263174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:47.632589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:47.634598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:47] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:47] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:47.893089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:47.894084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:47] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:48.271676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:48.583056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:48.584046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:48.587064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:48.591052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:48.593056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:48.594055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:48.905858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:48.906867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:48.907859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:48.908865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:48.914867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:48.916864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:49.231814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:49.232811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:52:49.236812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:49.240809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:49.244838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:49.248831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:49] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:52:49.543703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:52:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:08.583911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:08.584919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:08.585915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:08.589940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:08.594927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:08.597932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:08.899061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:08.900068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:08.903398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:08.908389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:08.910395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:08.912385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:09.224542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:09.225545 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:09.226544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:09.230542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:09.239543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:09.241544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:09.549332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:09.551328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:14.248161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:14.249157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:14.249157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:14.250158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:14.252156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:14.259156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:14.575210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:14.577219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:14.580213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:14.586198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:14.587198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:14.589201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:14.902592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:14.903592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:14.903592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:14.907592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:14.916115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:14.919103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:56:15.226273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:56:15.228281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:56:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:17.537543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:17.538539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:17.539548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:17.543537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:17.545547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:17.550068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:17.864307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:17.866298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:17.869306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:17.873301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:17.876302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:17.880308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:18.176364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:18.178649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:18.187734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:18.190725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:18.193728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:18.196730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:18.503549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:18.506539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:31.020767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:31.021761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:31] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:31.275615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:31.277617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:31] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:31.711871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:32.023196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:32.024196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:32.026199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:32.031200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:32.035196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:32.036194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:32.336699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:32.338698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:32.343700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:32.346688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:32.349693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:32.352706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:32.661308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:32.662316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 10:59:32.665302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:32.669715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:32.671709 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:32.676730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 10:59:32.989875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 10:59:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:01:10.220007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:01:10.220998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:01:10.221995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:01:10.224500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:01:10.227518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:01:10.232042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:01:10.549435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:01:10.550440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:01:10.552422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:01:10.556429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:01:10.561425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:01:10.567431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:01:10.860438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:01:10.870453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:01:10.872443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:01:10.878975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:01:10.879973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:01:10.881973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:01:11.189151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:01:11.191215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:01:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:39.860665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:15:39.861666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:40] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:40.108115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:15:40.112121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:40] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:41.106399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:41.431177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:15:41.432180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:15:41.435184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:41.441180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:15:41.443186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:41.447184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:41.758138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:15:41.761144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:15:41.762142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:41.766131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:41.771136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:15:41.774218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:42.071079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:42.078084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:15:42.081086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:42.086650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:42.091652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:15:42.095664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:15:42.397761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:15:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:25:09.644730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:25:09.647722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:25:09.652727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:25:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:25:09] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:25:09] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:33:25.366355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:33:25.367220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:33:25.369216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:33:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:33:25] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:33:25] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:39:00.557236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:39:00.558235 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:39:00.559249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:39:00.563241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:39:00.569246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:39:00.574237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:39:00.872657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:39:00.875643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:39:00.877651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:39:00.885182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:39:00.888703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:39:00.896720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:39:01.186820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:39:01.189822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:39:01.196832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:39:01.202814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:39:01.205812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:39:01.208814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 11:39:01.515090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 11:39:01.517088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 11:39:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:37:41.414605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:41.426601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:41] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:41] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:37:41.659756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:41.662750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:41] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:37:42.083023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:37:42.397454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:42.398453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:42.399444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:42.399444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:42.400455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:42.401440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:37:42.724374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:42.725377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:42.730376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:37:42.732365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:37:42.737419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:42.738419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:37:43.053884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:43.061278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:43.062275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:43.063275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:37:43.064286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:37:43.068108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:37:43.375787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:37:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:36.112435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:36.113432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:36] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:36.704093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:36.706089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:36] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:37.362334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:37.365336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:37.369336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:37.372338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:37.374856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:37.379871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:37.384868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:37.388935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:37.393939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:37.397939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:37.402446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:37.405458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:37.410952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:37.413940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:37.417939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:37.425943 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:37.429939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:37.434941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:37.440940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:37.443941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:55.957460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:55.959461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:56] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:56] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:56.424728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:56.425730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:56] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.178547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:57.181059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.185071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.188084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.192087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:57.195081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:57.198078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.201086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.203625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.207625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:57.209617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.214615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.219618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:57.222613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.224616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:57.227621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.234618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.239615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:38:57.245611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:38:57.246618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:38:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:39:16.801837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:16.802836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:16] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:16] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:39:17.059632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:17.061631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:39:17.262901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:39:17.571986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:17.572988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:17.573980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:17.575149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:17.575981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:39:17.580983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:39:17.894401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:17.894401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:17.895413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:39:17.905403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:17.906414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:17.906414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:39:18.209216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:18.210209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:18.211235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:39:18.222222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:18.223223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:39:18.224224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:39:18.523938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:39:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:54.950036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:40:54.951188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:55] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:55] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:55.536689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:40:55.538700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:55] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.121705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.127711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:40:56.129979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.132975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.135991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.139979 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.154002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.160559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.164582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:40:56.168597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.171583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.175579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:40:56.178590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:40:56.180579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.183588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.194586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:40:56.197584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.200588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.237191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:40:56.242704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:40:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.434387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.439905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.446921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:19.447923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.451918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:19.455925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.459919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:19.463919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.467921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.472922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.476922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.482938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.487947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:19.491947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.498470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:19.501469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.504465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.508466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.511467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:19.515466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.328344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.333377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.340376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:29.343373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.347370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:29.350908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.356454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:29.360452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.365453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.369177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.373175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:29.376174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.381184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.386180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:29.388184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.396201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.400194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.405200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:29.406279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:29.413824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.095755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.099747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.104744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.108751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:47.113750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:47.115748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.119755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.123744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.128755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.130750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.134743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.138755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:47.141750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.145749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:43:47.147749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.154773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.157763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.159768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.163769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:43:47.167294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:43:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:15.485864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:45:15.486892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:15] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:15] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.439232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:45:16.440245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.861772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.864764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:45:16.867763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.870768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.874781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:45:16.875777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.878776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.883776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.887290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.890302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.894303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.898308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.901304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:45:16.905303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:45:16.907302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.913302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.917303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.921305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:45:16.927314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:45:16.929317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:45:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:49:23.963215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:49:23.966915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:24] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:24] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:49:24.813326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:49:24.814332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:24] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:49:25.672366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:49:25.675380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:49:25.678387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:49:25.681896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:49:25.684921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:49:25.687922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:49:25.690915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:49:25.691912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:49:25.693911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:49:25.694910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:49:25.705921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:49:25.707924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:49:25.712450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:49:25.715452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:49:25.722462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:49:25.724450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:49:25.728465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:49:25.732470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:49:25.736466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:49:25.739461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:49:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:43.635201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:50:43.636310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:43] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:43] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.481234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:50:44.483231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.882887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:50:44.885888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.888907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.893912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.897910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:50:44.900914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.904411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:50:44.905411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.909938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:50:44.913944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.917940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.921936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:50:44.926939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.930937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.934937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.941938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 13:50:44.944934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.948940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.954948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 13:50:44.958957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 13:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:38.369217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 15:17:38.372214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.309920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 15:17:39.311923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.785327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 15:17:39.788451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.792448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 15:17:39.796986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.801011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 15:17:39.805998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.808536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.814532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.817537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 15:17:39.819816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 15:17:39.823815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.828339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.831354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.837362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.846935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.851495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.855482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 15:17:39.858480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 15:17:39.863012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 15:17:39.865528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 15:17:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:23.435294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:23.438172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:24.357881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:24.360876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:24] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.080941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:25.084942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:25.090469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.096013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.102454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:25.108455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.112471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.119988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:25.124986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.132055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:25.136055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.142046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.145052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.151053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.156048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.166046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.172052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:25.177053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:25.185050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:25.189067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:37.489730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:38.422197 : partner_login Connexion partnair mysy5discovery@gmail.com : OK, Date : 2023-01-04 18:47:37.495733 , _id = 63aef9e685c01d76761b5487 +INFO:root:2023-01-04 18:47:38.432192 : partner_login Connexion partener_token : OK , _id = 63aefb49d2d6a991726f185f +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:38] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:38.684953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:38.691961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:38.696950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:38.704991 : Connexion du partner recid = 5e824773ec22c04aff24a171dd42ef47338cc59d23767b4fb8 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:38.967094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:38] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:43.878858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:43.890532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:43.894521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:43] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:49.315610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:49.321631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:49.326166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:47:49.330156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:47:49.336702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:49] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:47:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:48:07.705317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:48:07] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:48:15.873836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:48:15.876824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:48:15.880835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:48:15] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:48:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:48:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:49:24.842335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:49:24.846549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:49:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:49:24.851551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:49:24.855544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:49:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:49:24.861563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:49:24] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:49:24] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:49:24] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:49:37.519892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:49:37] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 18:51:30.750462 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 18:51:30.751457 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 18:51:30.751457 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 18:51:30.751457 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-04 18:51:30.963835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:51:30.967836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:51:30.970837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:51:30] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:51:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:51:30] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:51:43.934146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 18:51:43.938268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:51:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:51:43.944320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:51:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:51:43.951286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:51:43] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:51:43.956839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:51:43] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:51:43] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 18:52:01.098792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 18:52:01] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 18:55:18.813327 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 18:55:18.813327 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 18:55:18.813327 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 18:55:18.813327 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 18:58:47.758484 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 18:58:47.758484 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 18:58:47.758484 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 18:58:47.758484 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 19:00:24.197942 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 19:00:24.198945 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 19:00:24.198945 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 19:00:24.198945 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 19:01:38.050409 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 19:01:38.050409 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 19:01:38.050409 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 19:01:38.050409 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 19:02:17.390310 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 19:02:17.390310 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 19:02:17.390310 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 19:02:17.390310 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 19:03:52.063698 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 19:03:52.063698 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 19:03:52.063698 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 19:03:52.063698 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-04 19:05:20.111476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:05:20.114476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:05:20.117481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:05:20] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:05:20] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:05:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:09:20.579333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:09:20.582333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:09:20.585333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:09:20] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:09:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:09:20] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:10:03.503364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:10:03.505362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:10:03.507920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:10:03] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:10:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:10:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:10:16.289654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:10:16.292661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:10:16.295654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:10:16] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:10:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:10:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:11:40.318400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:11:40.321409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:11:40.324401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:11:40] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:11:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:11:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:12:05.482273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:12:05] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:12:06.282448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:12:06] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:12:11.334368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:12:11.339370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:12:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:12:11.344382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:12:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:12:11.348366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:12:11.354369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:12:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:12:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:12:11] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:12:37.456500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:12:37] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:12:45.565949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:12:45] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 19:15:29.123421 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 19:15:29.123421 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 19:15:29.123421 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 19:15:29.123421 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-04 19:16:21.955909 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:16:21.958910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:16:21.960910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:16:21] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:16:21] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:16:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:16:30.123947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:16:30.125947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:16:30] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:16:30.130507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:16:30] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:16:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:16:35.741796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:16:35.747356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:16:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:16:35.754325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:16:35] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:16:35.759321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:16:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:16:35.764325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:16:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:16:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:16:45.965026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:16:45] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:10.443843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:17:10.446949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:17:10.450477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:10] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:16.254762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:16] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:16.779558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:16] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:21.085469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:17:21.089711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:17:21.095725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:21.101753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:21] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:21.109754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:21] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:21] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:39.741681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:39] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:41.108793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:41] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:45.236039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:17:45.238044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:17:45.241039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:45] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:45] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:53.109859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:17:53.114088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:53.119091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:53.124095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:53] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:53.128095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:53] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:53] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:57.253187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:17:57.256365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:57.260458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:57.264451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:57] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:57] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:57.270853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:57] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:59.911567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:17:59.914564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:17:59.917560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:59.922562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:17:59.928574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:17:59] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:18:00.749450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:18:00] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 19:22:35.614856 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 19:22:35.614856 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 19:22:35.614856 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 19:22:35.614856 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 19:23:31.407996 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 19:23:31.407996 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 19:23:31.407996 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 19:23:31.407996 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-04 19:23:41.140070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:23:41.888586 : Add_Update_SessionFormation_mass : Le champ 'code_session' n'est pas présent dans le fichier. Il est obligatoire +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:23:41] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:24:18.787413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:24:18] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:24:19.286920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:24:19] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:24:23.615401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:24:23.618680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:24:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:24:23.624734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:24:23.628746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:24:23] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:24:23.633733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:24:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:24:23] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:24:23] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 19:35:30.219053 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 19:35:30.219053 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 19:35:30.219053 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 19:35:30.219053 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 19:37:35.223756 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 19:37:35.224753 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 19:37:35.224753 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 19:37:35.224753 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-04 19:39:01.872183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:39:01.875193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:39:01.877195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:01] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:39:13.379801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:13] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:39:14.129096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:14] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:39:16.429047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:39:16.433057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:39:16.440076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:39:16.446067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:39:16.451050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:16] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:16] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:39:31.679493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:31] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:39:44.728321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:44] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:39:55.349322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:39:55.352335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:39:55.355329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:55] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:39:59.616455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:39:59.620644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:39:59.624638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:39:59.630646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:39:59.635677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:39:59] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:40:00.784329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:40:00] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:41:20.838221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:41:25] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:41:50.563589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:41:50.566856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:41:50.569031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:41:50] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:41:50] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:41:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:41:54.101948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:41:54.106087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:41:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:41:54.111331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:41:54.115325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:41:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:41:54.122315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:41:54] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:41:54] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:41:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:41:55.168035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:41:55] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:42:14.148602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:42:14] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 19:50:16.531252 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 19:50:16.531252 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 19:50:16.531252 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 19:50:16.531252 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 19:53:56.171710 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 19:53:56.171710 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 19:53:56.171710 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 19:53:56.171710 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 19:54:48.553590 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 19:54:48.553590 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 19:54:48.553590 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 19:54:48.553590 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-04 19:56:21.336685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:56:21.339691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:56:21.343688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:56:21] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:56:21] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:56:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 19:57:11.959385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 19:57:12.729095 : Add_Update_SessionFormation_mass -too many values to unpack (expected 2) - ERRORRRR AT Line : 643 +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 19:57:12] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 20:07:51.084409 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 20:07:51.084409 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 20:07:51.084409 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 20:07:51.084409 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-04 20:08:33.810973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:08:33] "POST /myclass/api/Add_Update_SessionFormation_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:08:34.475053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:08:34] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:09:21.301679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:09:21.306678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:09:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:09:21.312682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:09:21.315402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:09:21] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:09:21.321941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:09:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:09:21] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:09:21] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:09:46.718817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:09:46] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:09:50.450314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:09:50] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:09:56.734245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:09:56.737288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:09:56.740284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:09:56] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:09:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:09:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:10:00.665562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:10:00.669698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:10:00.673679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:10:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:10:00.678694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:10:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:10:00.685688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:10:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:10:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:10:00] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:10:01.815706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:10:01] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:10:35.072188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:10:40] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 20:11:22.433474 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 20:11:22.433474 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 20:11:22.433474 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 20:11:22.433474 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-04 20:17:08.801791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:17:08.804801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:17:08.806788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:17:08] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:17:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:17:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:17:14.595232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:17:14.598229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:17:14.601238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:17:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:17:14] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:17:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:17:57.829194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:17:57.833734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:17:57.836754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:17:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:17:57] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:17:57.842766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:17:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:17:57.848777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:17:57] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:17:57] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:17:59.454950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:17:59] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:18:08.213514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:18:11] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:18:11.984807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:18:11.988816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:18:11.992809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:18:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:18:11.998824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:18:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:18:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:18:12] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:20:04.840144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:20:04] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:20:23.419319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:20:25] "POST /myclass/api/SendAttendeeCertification/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 20:22:02.864074 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 20:22:02.864074 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 20:22:02.864074 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 20:22:02.864074 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 20:22:55.405609 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 20:22:55.406609 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 20:22:55.406609 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 20:22:55.406609 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 20:23:21.177746 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 20:23:21.177746 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 20:23:21.178781 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 20:23:21.178781 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 20:29:42.694649 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 20:29:42.694649 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 20:29:42.694649 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 20:29:42.694649 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-04 20:30:12.334991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:30:12.336990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:30:12.339989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:30:12] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:30:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:30:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:30:16.416168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:30:16.420177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:30:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:30:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:30:16.439762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:30:16.443794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:30:16.446790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:30:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:30:16] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:30:16] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:30:17.629437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:30:17] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:30:22.508191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:30:22] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:30:28.430151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:30:29] "POST /myclass/api/SendAttendeeCertification/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\cheri\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-01-04 20:31:16.866585 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-01-04 20:31:16.866585 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-01-04 20:31:16.867585 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-01-04 20:31:16.867585 : ++ FLASK PORT 5001 ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 127-713-359 +INFO:root:2023-01-04 20:31:17.885014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:31:18.566822 : SendAttendeeCertification Vous ne pouvez pas delivrer de certificat avant la date de fin de la session de formation +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:31:18] "POST /myclass/api/SendAttendeeCertification/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:32:52.389161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:32:52] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:32:58.076159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:32:58.078172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:32:58.081158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:32:58] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:32:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:32:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:33:01.328045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:33:01.331047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:33:01.334050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:33:01.338052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:33:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:33:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:33:01.343051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:33:01] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:33:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:33:01] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:35:16.466281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:35:16.469282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:35:16.472289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:35:16] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:35:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:35:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:36:06.707817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:36:06.711819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:36:06.715800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:36:06.722823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:06] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:36:06.726841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:06] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:06] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:36:31.396323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:31] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:36:37.850659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:36:37.853670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:36:37.856674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:37] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:37] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:36:40.589418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:36:40.591953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:36:40.594970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:36:40.599973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:36:40.601973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:40] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:40] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:40] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:36:41.609068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:36:41.623247 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:36:41] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:37:24.325968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:37:24.330340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:37:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:37:24.335380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:37:24.337379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:37:24] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:37:24.344382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:37:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:37:24] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:37:24] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:37:25.849378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:37:25] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:37:41.663996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:37:41] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:37:45.736653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:37:47] "POST /myclass/api/SendAttendeeCertification/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:38:11.128629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:38:11.132012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:38:11.137043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:38:11.140033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:38:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:38:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:38:11.147035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:38:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:38:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:38:11] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:38:12.656919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:38:12.662915 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:38:12] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:40:12.905874 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:40:12.909864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:40:12.913862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:12] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:40:23.211099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:40:23.214099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:40:23.216091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:23] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:23] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:40:27.691736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:40:27.696463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:40:27.700820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:40:27.703827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:40:27.712824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:27] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:27] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:27] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:40:28.892995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:28] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:40:34.299736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:34] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:40:40.281847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:40:40.286743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:40:40.290947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:40:40.294940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:40:40.302949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:40] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:40] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:40] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-01-04 20:40:41.872150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-01-04 20:40:41.878150 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [04/Jan/2023 20:40:41] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - diff --git a/Session_Formation.py b/Session_Formation.py index ec559f9..92dfd45 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -39,7 +39,7 @@ def Add_Update_SessionFormation(diction): # field_list. ''' field_list = ['token', 'date_debut', 'date_fin', 'nb_participant', 'formation_session_id', 'adresse', - 'code_postal', 'ville', 'formateur', + 'code_postal', 'ville', 'formateur', 'code_session', 'class_internal_url', 'session_status', 'date_debut_inscription', 'date_fin_inscription', 'attestation_certif'] incom_keys = diction.keys() for val in incom_keys: @@ -51,7 +51,7 @@ def Add_Update_SessionFormation(diction): """ Verification de la liste des champs obligatoires """ - field_list_obligatoire = ['token', 'formation_session_id', 'class_internal_url',] + field_list_obligatoire = ['token', 'formation_session_id', 'class_internal_url','code_session'] for val in field_list_obligatoire: if val not in diction: @@ -67,11 +67,17 @@ def Add_Update_SessionFormation(diction): if diction['token']: my_token = diction['token'] + code_session = "" + if ("code_session" in diction.keys()): + if diction['code_session']: + mydata['code_session'] = diction['code_session'] + query_key['code_session'] = diction['code_session'] + + class_internal_url = "" if ("class_internal_url" in diction.keys()): if diction['class_internal_url']: mydata['class_internal_url'] = diction['class_internal_url'] - query_key['class_internal_url'] = diction['class_internal_url'] class_internal_url = diction['class_internal_url'] @@ -84,7 +90,7 @@ def Add_Update_SessionFormation(diction): if ("formation_session_id" in diction.keys()): if diction['formation_session_id']: mydata['formation_session_id'] = diction['formation_session_id'] - query_key['formation_session_id'] = diction['formation_session_id'] + session_id = diction['formation_session_id'] @@ -92,10 +98,12 @@ def Add_Update_SessionFormation(diction): if diction['date_debut']: mydata['date_debut'] = diction['date_debut'] + if ("date_fin" in diction.keys()): if diction['date_fin']: mydata['date_fin'] = diction['date_fin'] + if ("nb_participant" in diction.keys()): if diction['nb_participant']: mydata['nb_participant'] = diction['nb_participant'] @@ -104,16 +112,20 @@ def Add_Update_SessionFormation(diction): if diction['adresse']: mydata['adresse'] = diction['adresse'] + if ("code_postal" in diction.keys()): if diction['code_postal']: ## Verifier si le CP n'est composé que de "0", au quel cas il s'agit d'une formation en ligne. local_cp = str(diction['code_postal']).replace("0","").strip() - print(" #### local_cp = "+str(local_cp)) + if( local_cp == ""): mydata['code_postal'] = "0" + else: mydata['code_postal'] = diction['code_postal'] + + if ("ville" in diction.keys()): if diction['ville']: mydata['ville'] = diction['ville'] @@ -144,6 +156,8 @@ def Add_Update_SessionFormation(diction): mydata['valide'] = "1" + + print(" ### query_key = ", query_key) coll_name = MYSY_GV.dbname['session_formation'] ret_val = coll_name.find_one_and_update( query_key, @@ -154,8 +168,8 @@ def Add_Update_SessionFormation(diction): if (ret_val['_id'] is False): mycommon.myprint( - str(inspect.stack()[0][3]) + " : Impossible d'ajouter le mode de payement") - return False, "Impossible d'ajouter le mode de payement" + str(inspect.stack()[0][3]) + " Impossible d'ajouter/mettre à jour la session '"+str(diction['code_session'])+"' ") + return False, "Impossible d'ajouter/mettre à jour la session '"+str(diction['code_session'])+"' " @@ -278,6 +292,7 @@ def GetActiveSessionFormation_List(diction): myquery['session_status'] = "true" RetObject = [] + print(" ### myquery = ", myquery) for retval in coll_session.find(myquery): local_tmp = retval @@ -298,7 +313,7 @@ def GetActiveSessionFormation_List(diction): - #print("####RetObject = "+str(RetObject)) + print("####RetObject = "+str(RetObject)) return True, RetObject @@ -430,7 +445,8 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None): # Verification que les noms des colonne sont bien corrects" ''' field_list = ['date_debut', 'date_fin', 'nb_participant', 'adresse', 'code_postal', 'ville', - 'session_status', 'date_debut_inscription', 'date_fin_inscription', 'attestation', 'formateur'] + 'session_status', 'date_debut_inscription', 'date_fin_inscription', 'attestation', 'formateur', + 'code_session'] # Controle du nombre de lignes dans le fichier. total_rows = len(df) @@ -447,6 +463,17 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None): str(inspect.stack()[0][3]) + " : entete du fichier csv. '" + val + "' n'est pas acceptée") return False, " Entete du fichier csv. '" + val + "' n'est pas acceptée" + + # Verification des champs obligatoires dans le fichier + field_list_obligatoire_file = ['date_debut', 'date_fin', 'session_status', 'code_session'] + + for val in field_list_obligatoire_file: + if val not in df.columns: + mycommon.myprint( + str(inspect.stack()[0][3]) + " : Le champ '" + val + "' n'est pas présent dans le fichier. Il est obligatoire") + return False, " Le champ '" + val + "' n'est pas présent dans le fichier. Il est obligatoire " + + # Recuperation des info de la formation. formation_data = MYSY_GV.dbname['myclass'].find_one({'internal_url': str(class_internal_url)}) if (formation_data is None): @@ -461,7 +488,26 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None): mydata['date_debut'] = str(df['date_debut'].values[n]).strip().split(" ")[0] + local_status = mycommon.CheckisDate(mydata['date_debut']) + if(local_status is False ): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Impossible de créer/mettre à jour la session de formation à ligne "+str(n)+"." + "La date debut n'est pas au format jj/mm/aaaa ") + + return False, " - Impossible de créer/mettre à jour la session de formation à ligne "+str(n)+". La date debut n'est pas au format jj/mm/aaaa " + mydata['date_fin'] = str(df['date_fin'].values[n]).strip().split(" ")[0] + local_status = mycommon.CheckisDate(mydata['date_fin']) + if (local_status is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Impossible de créer/mettre à jour la session de formation à ligne " + str(n) + "." + "La date date_fin n'est pas au format jj/mm/aaaa ") + + return False, " - Impossible de créer/mettre à jour la session de formation à ligne " + str( + n) + ". La date fin n'est pas au format jj/mm/aaaa " + ## Verification de la cohérence des dates. Date_du doit <= Date_au if (datetime.strptime(str(mydata['date_debut']).strip(), '%d/%m/%Y') > datetime.strptime( @@ -475,14 +521,11 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None): " est posterieure à la date de fin " + str(mydata['date_fin']) + " pour la ligne "+str(n)+" " - - local_nb_participants = "0" if ("nb_participant" in df.keys()): if (str(df['nb_participant'].values[n])): local_nb_participants = str(df['nb_participant'].values[n]).strip() - local_status, new_participants = mycommon.IsInt(local_nb_participants) if (local_status is False): mycommon.myprint( @@ -491,12 +534,20 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None): mydata['nb_participant'] = str(new_participants) + local_code_session = "" + if ("code_session" in df.keys()): + if (str(df['code_session'].values[n])): + local_code_session = str(df['code_session'].values[n]).strip() + mydata['code_session'] = local_code_session + local_adresse = "" if ("adresse" in df.keys()): if (str(df['adresse'].values[n])): local_adresse = str(df['adresse'].values[n]).strip() mydata['adresse'] = local_adresse + + local_code_postal = "" if ("code_postal" in df.keys()): if (str(df['code_postal'].values[n])): @@ -540,7 +591,27 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None): mydata['date_debut_inscription'] = str(df['date_debut_inscription'].values[n]).strip().split(" ")[0] + local_status = mycommon.CheckisDate(mydata['date_debut_inscription']) + if (local_status is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Impossible de créer/mettre à jour la session de formation à ligne " + str(n) + "." + "La date_debut_inscription n'est pas au format jj/mm/aaaa ") + + return False, " - Impossible de créer/mettre à jour la session de formation à ligne " + str( + n) + ". La date_debut_inscription n'est pas au format jj/mm/aaaa " + + mydata['date_fin_inscription'] = str(df['date_fin_inscription'].values[n]).strip().split(" ")[0] + local_status = mycommon.CheckisDate(mydata['date_fin_inscription']) + if (local_status is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Impossible de créer/mettre à jour la session de formation à ligne " + str(n) + "." + "La date_fin_inscription n'est pas au format jj/mm/aaaa ") + + return False, " - Impossible de créer/mettre à jour la session de formation à ligne " + str( + n) + ". La date_fin_inscription n'est pas au format jj/mm/aaaa " ## Verification de la cohérence des dates. Date_du doit <= Date_au if (datetime.strptime(str(mydata['date_debut_inscription']).strip(), '%d/%m/%Y') > datetime.strptime( @@ -567,13 +638,8 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None): diction_for_session_id['adresse'] = str(mydata['adresse']) - print(" ### diction_for_session_id ", diction_for_session_id) - local_status, local_session_id = mycommon.CreateTrainingSession_id(diction_for_session_id) - if( local_status is False): - return False, local_session_id - - mydata['formation_session_id'] = str(local_session_id) + mydata['formation_session_id'] = str(mydata['code_session']) clean_dict = {k: mydata[k] for k in mydata if (str(mydata[k]) != "nan")} diff --git a/class_mgt.py b/class_mgt.py index 81cc927..25d5b5b 100644 --- a/class_mgt.py +++ b/class_mgt.py @@ -2496,11 +2496,11 @@ def add_class_mass(file=None, Folder=None, diction=None): 3]) + " - Absence de 'external_code' pour la formation à la ligne "+str(n)) return False, " Absence de 'external_code' pour la formation à la ligne "+str(n) - if ("title" not in df.keys()): + if ("titre" not in df.keys()): mycommon.myprint(str( inspect.stack()[0][ - 3]) + " - Absence de 'title' pour la formation à la ligne "+str(n)) - return False, " Absence de 'title' pour la formation à la ligne "+str(n) + 3]) + " - Absence de 'titre' pour la formation à la ligne "+str(n)) + return False, " Absence de 'titre' pour la formation à la ligne "+str(n) if ("domaine" not in df.keys()): diff --git a/data_indexees.csv b/data_indexees.csv index 8e5b243..1dd3dce 100644 --- a/data_indexees.csv +++ b/data_indexees.csv @@ -1,7 +1,3 @@ ,index,mots,occurence,moyenne,id_formation,source_field -0,0,intelligence,1,0.17,test_0002,title -1,1,professionnel,1,0.17,test_0002,title -2,2,entretien,1,0.17,test_0002,title -3,3,emotionnelle,1,0.17,test_0002,title -4,4,developper,1,0.17,test_0002,title -5,5,preparer,1,0.17,test_0002,title +0,0,stres,1,0.5,CODE_10009,title +1,1,gestion,1,0.5,CODE_10009,title diff --git a/ela_output_test_file_pandas_2.txt b/ela_output_test_file_pandas_2.txt index e3fbc2f..c3d2f7d 100644 --- a/ela_output_test_file_pandas_2.txt +++ b/ela_output_test_file_pandas_2.txt @@ -1,7 +1,3 @@ - mots occurence moyenne id_formation source_field -0 intelligence 1 0.17 test_0002 title -1 professionnel 1 0.17 test_0002 title -2 entretien 1 0.17 test_0002 title -3 emotionnelle 1 0.17 test_0002 title -4 developper 1 0.17 test_0002 title -5 preparer 1 0.17 test_0002 title \ No newline at end of file +Empty DataFrame +Columns: [mots, occurence, moyenne, id_formation, source_field] +Index: [] \ No newline at end of file diff --git a/main.py b/main.py index 3acaf2e..c1d5639 100644 --- a/main.py +++ b/main.py @@ -2250,6 +2250,22 @@ def PrintAttendeeCertification(token, session_id, attendee_email): else: return False + +""" +Cette API retourne la liste des evalutions d'une session de formation +""" +@app.route('/myclass/api/GetListEvaluation_Session/', methods=['POST','GET']) +@crossdomain(origin='*') +def GetListEvaluation_Session(): + # On recupere le corps (payload) de la requete + payload = request.form.to_dict() + print(" ### GetListEvaluation_Session : payload = ",payload) + localStatus, message= inscription.GetListEvaluation_Session(payload) + return jsonify(status=localStatus, message=message ) + + + + if __name__ == '__main__': print(" debut api") context = SSL.Context(SSL.SSLv23_METHOD) diff --git a/partners.py b/partners.py index 7de0a1a..c0826e6 100644 --- a/partners.py +++ b/partners.py @@ -161,7 +161,7 @@ def add_partner_account(diction): mydata['active'] = '0' mydata['locked'] = '0' - mydata['ispending'] = "1" + mydata['ispending'] = "0" print(str(datetime.now()) + " webservice : diction = "+str(mydata)) coll_name = MYSY_GV.dbname['partnair_account'] @@ -877,7 +877,7 @@ def get_partner_account(diction): tmp = coll_token.find({ 'token': str(token_value), 'valide': '1'}) partnere_recid = tmp[0]['recid'] - print(" parters RECID = "+str(partnere_recid)) + print(" #### parters RECID = "+str(partnere_recid)) is_first_connexion = True @@ -1190,7 +1190,7 @@ def UpgradetoPro(diction): ''' mydata = {} mydata['migrated'] = "1" - mydata['ispending'] = "1" + mydata['ispending'] = "0" mydata['migrated_date'] = str(datetime.now()) mydata['migrated_mail_account'] = new_diction['email'] ret_val = coll_user_account.find_one_and_update(