diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index d036256..3911847 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -6,23 +6,12 @@
-
-
-
-
-
-
-
-
-
-
+
-
-
-
+
@@ -45,7 +34,7 @@
"ASKED_ADD_EXTERNAL_FILES": "true",
"RunOnceActivity.OpenProjectViewOnStart": "true",
"RunOnceActivity.ShowReadmeOnStart": "true",
- "last_opened_file_path": "C:/Users/cheri/Documents/myclass.com/Siteweb/Production/Ela_back/MySy_Back_Office",
+ "last_opened_file_path": "C:/Users/cheri/Documents/myclass.com/Siteweb/Branche_design/Ela_back/Back_Office",
"settings.editor.selected.configurable": "com.jetbrains.python.configuration.PyActiveSdkModuleConfigurable"
}
}
@@ -177,6 +166,11 @@
251
+
+ file://$PROJECT_DIR$/Session_Formation.py
+ 4
+
+
diff --git a/GlobalVariable.py b/GlobalVariable.py
index ec46aa6..aa42f76 100644
--- a/GlobalVariable.py
+++ b/GlobalVariable.py
@@ -232,4 +232,10 @@ O365_SMTP_COUNT_port = 587
"""
Repertoire temporaire de telechargement ou de creation de fichier
"""
-TEMPORARY_DIRECTORY = "./temp_direct"
\ No newline at end of file
+TEMPORARY_DIRECTORY = "./temp_direct"
+
+
+"""
+Nombre maximum de participants importable par csv
+"""
+MAX_PARTICIPANT_BY_CSV = 50
\ No newline at end of file
diff --git a/Inscription_mgt.py b/Inscription_mgt.py
index 2d9698f..6af2ed2 100644
--- a/Inscription_mgt.py
+++ b/Inscription_mgt.py
@@ -772,4 +772,174 @@ def DownloadParticipantsList(diction):
except Exception as e:
exc_type, exc_obj, exc_tb = sys.exc_info()
mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno))
- return False, "Impossible d'envoyer la confirmation d'inscription"
\ No newline at end of file
+ return False, "Impossible d'envoyer la confirmation d'inscription"
+
+
+""" Import des inscriptions en masse
+Avec l'import d'un fichier csv
+"""
+def AddStagiairetoClass_mass(file=None, Folder=None, diction=None):
+ try:
+
+ '''
+ # Verification que les champs reçus dans l'API sont bien dans la liste des champs autorisés
+ # Cela evite le cas ou une entité tierce ajouter les valeurs inconnu dans l'API
+ # Ici on doit mettre tous les champs possible (obligatoire ou non) de la BDD dans la liste
+ # field_list.
+ '''
+ field_list = ['token','session_id']
+ incom_keys = diction.keys()
+ for val in incom_keys:
+ if val not in field_list:
+ mycommon.myprint(str(inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas, Creation formation annulée")
+ return False, " Verifier votre API"
+
+ '''
+ Une fois qu'on a controlé que toutes les clés mise dans l'API sont correcte. etape precedente,
+ On controle que les champs obligatoires sont presents dans la liste
+ '''
+ field_list_obligatoire = ['token', 'session_id']
+
+ 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, " Verifier votre API"
+
+ my_token = ""
+ if ("token" in diction.keys()):
+ if diction['token']:
+ my_token = diction['token']
+
+ session_id = ""
+ if ("session_id" in diction.keys()):
+ if diction['session_id']:
+ session_id = diction['session_id']
+
+ if(len(str(session_id).strip()) <= 0 ):
+ mycommon.myprint(
+ str(inspect.stack()[0][3]) + " La session de formation est vide : Impossible d'importer la liste des participants ")
+ return False, "la session de formation est incorrecte. Impossible d'importer la liste des participants"
+
+
+ partner_recid = mycommon.get_parnter_recid_from_token(my_token)
+ if (partner_recid is False):
+ mycommon.myprint(str(inspect.stack()[0][3]) + " - partner_recid KO : Impossible d'importer la liste des participants ")
+ return False, "les information de connexion sont incorrectes. Impossible d'importer la liste des participants"
+
+ status, saved_file = mycommon.Upload_Save_CSV_File(file, Folder)
+ if (status == False):
+ return False, "Impossible d'importer la liste des participants, le nom du fichier est incorrect "
+
+ #" Lecture du fichier "
+ #print(" Lecture du fichier : "+saved_file)
+ nb_line = 0
+
+ df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';')
+
+ # Dictionnaire des champs utilisables
+ '''
+ # Verification que les noms des colonne sont bien corrects"
+ '''
+ field_list = ['prenom', 'nom', 'employeur', 'telephone', 'email', 'modefinancement',
+ 'opco', 'status', 'prix']
+
+
+ # Controle du nombre de lignes dans le fichier.
+ total_rows = len(df)
+ if( total_rows > MYSY_GV.MAX_PARTICIPANT_BY_CSV ):
+ mycommon.myprint(
+ str(inspect.stack()[0][3]) + " Le fichier comporte plus de "+str(MYSY_GV.MAX_PARTICIPANT_BY_CSV)+" lignes.")
+ return False, " Le fichier comporte plus de "+str(MYSY_GV.MAX_PARTICIPANT_BY_CSV)+" lignes."
+
+
+ #print(df.columns)
+ for val in df.columns:
+ if str(val).lower() not in field_list:
+ mycommon.myprint(
+ 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"
+
+ # Recuperation des info de la session.
+ session_data = MYSY_GV.dbname['session_formation'].find({'formation_session_id':str(session_id)})
+ if( session_data is None ):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + " La session de formation n'existe pas : Impossible d'importer la liste des participants ")
+ return False, "la session de formation n'existe pas. Impossible d'importer la liste des participants"
+
+
+ x = range(0, total_rows)
+ for n in x:
+ mydata = {}
+ mydata['prenom'] = str(df['prenom'].values[n])
+ mydata['nom'] = str(df['nom'].values[n])
+ mydata['employeur'] = str(df['employeur'].values[n])
+ mydata['telephone'] = str(df['telephone'].values[n])
+ mydata['email'] = str(df['email'].values[n])
+
+ modefinancement = ""
+ if ("modefinancement" in df.keys()):
+ if (str(df['modefinancement'].values[n])):
+ modefinancement = str(df['modefinancement'].values[n])
+ mydata['modefinancement'] = modefinancement
+
+
+ opco = ""
+ if ("opco" in df.keys()):
+ if (str(df['opco'].values[n])):
+ opco = str(df['opco'].values[n])
+ mydata['opco'] = opco
+
+
+ local_status = str(df['status'].values[n]).strip()
+ if( local_status != "0" and local_status != "1" and local_status != "2"):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + " Le champs 'status' de ligne "+str(n)+" est incorrecte. les valeurs acceptées sont : 0,1,2")
+ return False, " Le champs 'status' de ligne "+str(n)+" est incorrecte. les valeurs acceptées sont : 0,1,2"
+
+ mydata['status'] = float(local_status)
+
+ local_price = str(df['prix'].values[n]).strip()
+ local_status, new_price = mycommon.IsFloat(local_price)
+ if( local_status is False ):
+ mycommon.myprint(
+ str(inspect.stack()[0][ 3]) + " Le champs 'prix' de ligne " + str( n) + " est incorrecte.")
+ return False, " Le champs status de ligne " + str(n) + " est incorrecte. "
+
+ mydata['price'] = local_price
+
+
+ mydata['session_id'] = str(session_data['formation_session_id'])
+
+ tab_date_du = str(session_data['date_debut']).split(" ")
+ mydata['date_du'] = str(tab_date_du[0])
+
+ tab_date_au = str(session_data['date_fin']).split(" ")
+ mydata['date_au'] = str(tab_date_au[0])
+
+
+ mydata['ville'] = str(session_data['ville'])
+
+ mydata['code_postal'] = str(session_data['code_postal'])
+ mydata['adresse'] = str(session_data['adresse'])
+ mydata['class_internal_url'] = str(session_data['class_internal_url'])
+
+
+ clean_dict = {k: mydata[k] for k in mydata if ( str(mydata[k]) != "nan") }
+
+ print( "#### clean_dict ", clean_dict)
+ """status, retval = add_class(clean_dict)
+
+ if( status is False ):
+ return status, retval
+ """
+ print(str(total_rows)+" formations ont été inserées")
+
+ return True, str(total_rows)+" formations ont été inserées / Mises à jour"
+
+ except Exception as e:
+ exc_type, exc_obj, exc_tb = sys.exc_info()
+ mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno))
+ return False, "Impossible d'inserer les formation en masse "
+
diff --git a/Log/log_file.log b/Log/log_file.log
index 0a82967..af5b802 100644
--- a/Log/log_file.log
+++ b/Log/log_file.log
@@ -906763,3 +906763,3729 @@ INFO:werkzeug:127.0.0.1 - - [02/Dec/2022 13:13:07] "POST /myclass/api/get_all_ar
INFO:werkzeug:127.0.0.1 - - [02/Dec/2022 13:13:07] "POST /myclass/api/get_articles_avis/ HTTP/1.1" 200 -
INFO:root:2022-12-02 13:13:07.829744 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [02/Dec/2022 13:13:07] "POST /myclass/api/get_user_message/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:47:08.024353 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-06 16:47:08.025355 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-06 16:47:08.026355 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-06 16:47:08.026355 : ++ FLASK PORT 5001 ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-06 16:47:19.178343 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-06 16:47:19.178343 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-06 16:47:19.178343 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-06 16:47:19.178343 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-06 16:48:35.344693 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:35.346679 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:48:37.558432 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:37.560430 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:48:37.921511 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:48:38.239369 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:38.240372 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:38.242374 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:38.243371 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:38.245951 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:38.247975 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:48:38.566205 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:38.569223 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:48:38.584214 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:38.586216 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:38.588211 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:38.590222 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:48:38.881820 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:48:38.897814 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:48:38.920814 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:38.921812 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:48:38.926809 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:48:38.937815 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:48:39.192098 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:48:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:13.014100 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:13.015106 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:13.018105 : Le token partner est vide
+INFO:root:2022-12-06 16:51:13.020102 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:13.022099 : Le token du partenaire n'est pas valide
+INFO:root:2022-12-06 16:51:13.660221 : get_partner_class - Le token est vide
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:13.661219 : get_partner_account - Le token n'est pas valide
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:13.662213 : getRecodedImage - Impossible de recuperer le recid du user
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:22.779116 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:22.787989 : partner_login Connexion partnair billardman1@gmail.com : OK, Date : 2022-12-06 16:51:22.780113 , _id = 61e538fab80f67195de32dd2
+INFO:root:2022-12-06 16:51:22.795204 : partner_login Connexion partener_token : OK , _id = 6218ac277a813b77409aa7f6
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:22] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:23.108965 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:23.112961 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:23.115963 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:23] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:23.129979 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:23.512856 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:23] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:27.179524 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:27.182537 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:27.184536 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:27.190526 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:27.643712 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:29.894697 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:29.897087 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:29.900224 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:29] "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_MZplrIZfdYw75Y/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_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6C0TAbmaEugrFTvL0xZ8qm",\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": 1668944897,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6BxLAbmaEugrFT5pjLRnFF",\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": 1668944703,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6BvKAbmaEugrFTe0bEkiZG",\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": 1668944578,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_o8J9WKrQ3qpQKS message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:30] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:38.646226 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:38.650233 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:38.654240 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:38.659212 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:38] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:38] "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_MZplrIZfdYw75Y/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_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6C0TAbmaEugrFTvL0xZ8qm",\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": 1668944897,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6BxLAbmaEugrFT5pjLRnFF",\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": 1668944703,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6BvKAbmaEugrFTe0bEkiZG",\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": 1668944578,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_SnYSWTqALT4hp4 message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:39] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:39.176483 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:39.182516 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:39.359584 : 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_MZplrIZfdYw75Y&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_1MC3QlAbmaEugrFT29422LZG",\n "object": "subscription",\n "application": null,\n "application_fee_percent": null,\n "automatic_tax": {\n "enabled": false\n },\n "billing_cycle_anchor": 1670341899,\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": 1670341899,\n "currency": "eur",\n "current_period_end": 1673020299,\n "current_period_start": 1670341899,\n "customer": "cus_MZplrIZfdYw75Y",\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_MvvHPdS0rGqbdz",\n "object": "subscription_item",\n "billing_thresholds": null,\n "created": 1670341899,\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_1MC3QlAbmaEugrFT29422LZG",\n "tax_rates": []\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/subscription_items?subscription=sub_1MC3QlAbmaEugrFT29422LZG"\n },\n "latest_invoice": {\n "id": "in_1MC3QlAbmaEugrFTXgHrDk0y",\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": 1670341899,\n "currency": "eur",\n "custom_fields": null,\n "customer": "cus_MZplrIZfdYw75Y",\n "customer_address": {\n "city": "",\n "country": "",\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "customer_email": "billardman1@gmail.com",\n "customer_name": "MySy Test",\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_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9NdnZIcldpc3h4SVlEZ28wR0hmMnQ0ck1hbzVIRTBuLDYwODgyNzAw0200V9tV3VIB?s=ap",\n "invoice_pdf": "https://pay.stripe.com/invoice/acct_1LUUfAAbmaEugrFT/test_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9NdnZIcldpc3h4SVlEZ28wR0hmMnQ0ck1hbzVIRTBuLDYwODgyNzAw0200V9tV3VIB/pdf?s=ap",\n "last_finalization_error": null,\n "latest_revision": null,\n "lines": {\n "object": "list",\n "data": [\n {\n "id": "il_1MC3QlAbmaEugrFTKwEgVIxm",\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": 1673020299,\n "start": 1670341899\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_1MC3QlAbmaEugrFT29422LZG",\n "subscription_item": "si_MvvHPdS0rGqbdz",\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_1MC3QlAbmaEugrFTXgHrDk0y/lines"\n },\n "livemode": false,\n "metadata": {},\n "next_payment_attempt": null,\n "number": "E58073E6-0255",\n "on_behalf_of": null,\n "paid": false,\n "paid_out_of_band": false,\n "payment_intent": {\n "id": "pi_3MC3QlAbmaEugrFT1Qe11CHb",\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_3MC3QlAbmaEugrFT1Qe11CHb"\n },\n "client_secret": "pi_3MC3QlAbmaEugrFT1Qe11CHb_secret_WODuUbZSVhbkKLfCwsV6tcNgb",\n "confirmation_method": "automatic",\n "created": 1670341899,\n "currency": "eur",\n "customer": "cus_MZplrIZfdYw75Y",\n "description": "Subscription creation",\n "invoice": "in_1MC3QlAbmaEugrFTXgHrDk0y",\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": 1670341899,\n "period_start": 1670341899,\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": 1670341899,\n "marked_uncollectible_at": null,\n "paid_at": null,\n "voided_at": null\n },\n "subscription": "sub_1MC3QlAbmaEugrFT29422LZG",\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": 1670341899\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": 1670341899,\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_h0lUbM3qMOODXb message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:40] "POST /myclass/api/create-subscription/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:43.209220 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf:pisaDocument options:
+ src = '\n\n\n
\n\t\n\t\t

\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\tChérif Balde
\n\t\t\t\t\tsdsdds
\n\t\t\t\t\t77680 Roissy En Brie
\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_221200042\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\tDate de facture: 06/12/2022 | \n\t\t\t\t\t\tDate échéance : 06/12/2022 | \n\t\t\t\t\t
\n\n\t\t\t\t
\n\n\t\t\t\t
\n\t\t\t\t\tOrigine : MySy_00DHb0\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\tDescription | \n\t\t\t\t\t\t\tQuantité | \n\t\t\t\t\t\t\tPrix unitaire | \n\t\t\t\t\t\t\tMontant | \n\t\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tStandard | \n\t\t\t\t\t\t\t1 | \n\t\t\t\t\t\t\t350 | \n\t\t\t\t\t\t\t350.0 | \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
\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\tMontant HT: | \n\t\t\t\t\t350.0 | \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\tTVA 20% : | \n\t\t\t\t\t70.0 | \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\tMontant TTC : | \n\t\t\t\t\t420.0 | \n\t\t\t\t
\n\t\t\t
\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\n\n'
+ dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_221200042.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): 0x18be6b10
+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_221200042.pdf', 'wb')
+DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200042.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_221200042.pdf')
+INFO:root:2022-12-06 16:51:48.609263 : convertHtmlToPdf DEPLACEMENT DE ./Invoices/invoice_FACT_221200042.pdf VERS /var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200042.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-06 16:51:48.611279 : Impression facture N° FACT_221200042 OK
+INFO:root:2022-12-06 16:51:48.643027 : UpdataPartnerRankingClass - Le RANKING de 174 ont été mise à jour avec la valeur {'display_rank': '50', 'date_update': '2022-12-06 16:51:48.624625', 'isalaune': '1'}
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:48] "POST /myclass/api/createOrder/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:48.725625 : 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_3MC3QlAbmaEugrFT1Qe11CHb/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_3MC3QlAbmaEugrFT1Qe11CHb/confirm response_code=200
+DEBUG:stripe:body='{\n "id": "pi_3MC3QlAbmaEugrFT1Qe11CHb",\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_3MC3QlAbmaEugrFT1MjkHEzv",\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_3MC3QlAbmaEugrFT1K9KKhDk",\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": 1670341909,\n "currency": "eur",\n "customer": "cus_MZplrIZfdYw75Y",\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_1MC3QlAbmaEugrFTXgHrDk0y",\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": 54,\n "seller_message": "Payment complete.",\n "type": "authorized"\n },\n "paid": true,\n "payment_intent": "pi_3MC3QlAbmaEugrFT1Qe11CHb",\n "payment_method": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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/CAcaFwoVYWNjdF8xTFVVZkFBYm1hRXVnckZUKJbKvZwGMgaPhWbBZyA6LBYVi_v-2W1YhJEsC5TYbQOc6q2JIDyvidBNF0nC13znxsFmeJAYM1YtnLoA?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_3MC3QlAbmaEugrFT1MjkHEzv/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_3MC3QlAbmaEugrFT1Qe11CHb"\n },\n "client_secret": "pi_3MC3QlAbmaEugrFT1Qe11CHb_secret_WODuUbZSVhbkKLfCwsV6tcNgb",\n "confirmation_method": "automatic",\n "created": 1670341899,\n "currency": "eur",\n "customer": "cus_MZplrIZfdYw75Y",\n "description": "Subscription creation",\n "invoice": "in_1MC3QlAbmaEugrFTXgHrDk0y",\n "last_payment_error": null,\n "livemode": false,\n "metadata": {},\n "next_action": null,\n "on_behalf_of": null,\n "payment_method": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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_g63ZunQmmGUZG0 message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:51] "POST /myclass/api/confirm_payment/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:53.152271 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:53.155281 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:53.165138 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:53.171126 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:53.677046 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:53] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:51:56.434613 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:56.438619 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:51:56.442608 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51: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_MZplrIZfdYw75Y/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_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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": 1670341908,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6C0TAbmaEugrFTvL0xZ8qm",\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": 1668944897,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6BxLAbmaEugrFT5pjLRnFF",\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": 1668944703,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_gzOWErkXkyoYso message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:51:56] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:52:10.132186 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:52:10.136419 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:52:10.140442 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:52:10.144442 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:52:10] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:52:10] "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_MZplrIZfdYw75Y/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_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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": 1670341908,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6C0TAbmaEugrFTvL0xZ8qm",\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": 1668944897,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6BxLAbmaEugrFT5pjLRnFF",\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": 1668944703,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_GLYiaoXIGczvYs message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:52:10] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:52:10.665380 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:52:10.671394 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:52:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:52:10.679384 : 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_MZplrIZfdYw75Y&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_1MC3RGAbmaEugrFTGCWX7wO4",\n "object": "subscription",\n "application": null,\n "application_fee_percent": null,\n "automatic_tax": {\n "enabled": false\n },\n "billing_cycle_anchor": 1670341930,\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": 1670341930,\n "currency": "eur",\n "current_period_end": 1673020330,\n "current_period_start": 1670341930,\n "customer": "cus_MZplrIZfdYw75Y",\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_MvvHpxKi1yjoaZ",\n "object": "subscription_item",\n "billing_thresholds": null,\n "created": 1670341931,\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_1MC3RGAbmaEugrFTGCWX7wO4",\n "tax_rates": []\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/subscription_items?subscription=sub_1MC3RGAbmaEugrFTGCWX7wO4"\n },\n "latest_invoice": {\n "id": "in_1MC3RGAbmaEugrFTPlX0nJw1",\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": 1670341930,\n "currency": "eur",\n "custom_fields": null,\n "customer": "cus_MZplrIZfdYw75Y",\n "customer_address": {\n "city": "",\n "country": "",\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "customer_email": "billardman1@gmail.com",\n "customer_name": "MySy Test",\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_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9NdnZITEdIdkE2STc3QWFRbjR0dWFFMDdycGFnVkdILDYwODgyNzMx0200glERnho9?s=ap",\n "invoice_pdf": "https://pay.stripe.com/invoice/acct_1LUUfAAbmaEugrFT/test_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9NdnZITEdIdkE2STc3QWFRbjR0dWFFMDdycGFnVkdILDYwODgyNzMx0200glERnho9/pdf?s=ap",\n "last_finalization_error": null,\n "latest_revision": null,\n "lines": {\n "object": "list",\n "data": [\n {\n "id": "il_1MC3RGAbmaEugrFTX8iRiLA5",\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": 1673020330,\n "start": 1670341930\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_1MC3RGAbmaEugrFTGCWX7wO4",\n "subscription_item": "si_MvvHpxKi1yjoaZ",\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_1MC3RGAbmaEugrFTPlX0nJw1/lines"\n },\n "livemode": false,\n "metadata": {},\n "next_payment_attempt": null,\n "number": "E58073E6-0256",\n "on_behalf_of": null,\n "paid": false,\n "paid_out_of_band": false,\n "payment_intent": {\n "id": "pi_3MC3RHAbmaEugrFT0wF8nAHN",\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_3MC3RHAbmaEugrFT0wF8nAHN"\n },\n "client_secret": "pi_3MC3RHAbmaEugrFT0wF8nAHN_secret_jWV4TkBk2XQURFWRfEengvtrM",\n "confirmation_method": "automatic",\n "created": 1670341931,\n "currency": "eur",\n "customer": "cus_MZplrIZfdYw75Y",\n "description": "Subscription creation",\n "invoice": "in_1MC3RGAbmaEugrFTPlX0nJw1",\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": 1670341930,\n "period_start": 1670341930,\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": 1670341930,\n "marked_uncollectible_at": null,\n "paid_at": null,\n "voided_at": null\n },\n "subscription": "sub_1MC3RGAbmaEugrFTGCWX7wO4",\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": 1670341930\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": 1670341930,\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_SqLT5RI88itcLk message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:52:11] "POST /myclass/api/create-subscription/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:53:50.590145 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:53:50.592143 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:53:50.595143 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:53:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:53:50.601143 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:53:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:53:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:53:51.124818 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:53:51] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:53:54.694720 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:53:54.698211 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:53:54.702248 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:53: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_MZplrIZfdYw75Y/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_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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": 1670341908,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6C0TAbmaEugrFTvL0xZ8qm",\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": 1668944897,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6BxLAbmaEugrFT5pjLRnFF",\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": 1668944703,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_nbYudKU6qvR10u message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:53:55] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:59:50.887852 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:59:50.889897 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:59:50.893899 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:59: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_MZplrIZfdYw75Y/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_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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": 1670341908,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6C0TAbmaEugrFTvL0xZ8qm",\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": 1668944897,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6BxLAbmaEugrFT5pjLRnFF",\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": 1668944703,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_16m162tP7CKfKA message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:59:52] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:59:56.557823 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:59:56.561822 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 16:59:56.563825 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:59:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:59:56.570824 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:59:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:59:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 16:59:57.184844 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 16:59:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:00.272996 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:00:00.280107 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:00:00.285105 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:00] "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_MZplrIZfdYw75Y/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_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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": 1670341908,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6C0TAbmaEugrFTvL0xZ8qm",\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": 1668944897,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6BxLAbmaEugrFT5pjLRnFF",\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": 1668944703,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_i53tE83rBpLuH3 message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:01] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:06.086110 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:00:06.090345 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:00:06.092345 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:06] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:06.102342 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:06] "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_MZplrIZfdYw75Y/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_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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": 1670341908,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6C0TAbmaEugrFTvL0xZ8qm",\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": 1668944897,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6BxLAbmaEugrFT5pjLRnFF",\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": 1668944703,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_RexPoaU8g52LOC message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:07] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:07.987915 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:00:07.995085 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:08.133240 : 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_MZplrIZfdYw75Y&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_1MC3YyAbmaEugrFTI2ogFHJo",\n "object": "subscription",\n "application": null,\n "application_fee_percent": null,\n "automatic_tax": {\n "enabled": false\n },\n "billing_cycle_anchor": 1670342408,\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": 1670342408,\n "currency": "eur",\n "current_period_end": 1673020808,\n "current_period_start": 1670342408,\n "customer": "cus_MZplrIZfdYw75Y",\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_MvvP3c1a8CU3Wz",\n "object": "subscription_item",\n "billing_thresholds": null,\n "created": 1670342408,\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_1MC3YyAbmaEugrFTI2ogFHJo",\n "tax_rates": []\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/subscription_items?subscription=sub_1MC3YyAbmaEugrFTI2ogFHJo"\n },\n "latest_invoice": {\n "id": "in_1MC3YyAbmaEugrFTe5oMuOv6",\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": 1670342408,\n "currency": "eur",\n "custom_fields": null,\n "customer": "cus_MZplrIZfdYw75Y",\n "customer_address": {\n "city": "",\n "country": "",\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "customer_email": "billardman1@gmail.com",\n "customer_name": "MySy Test",\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_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9NdnZQNDB0REdTZm50THV5b011bUx1emMySzhuQUN0LDYwODgzMjA502006QLRUM1s?s=ap",\n "invoice_pdf": "https://pay.stripe.com/invoice/acct_1LUUfAAbmaEugrFT/test_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9NdnZQNDB0REdTZm50THV5b011bUx1emMySzhuQUN0LDYwODgzMjA502006QLRUM1s/pdf?s=ap",\n "last_finalization_error": null,\n "latest_revision": null,\n "lines": {\n "object": "list",\n "data": [\n {\n "id": "il_1MC3YyAbmaEugrFTKk2dqm7f",\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": 1673020808,\n "start": 1670342408\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_1MC3YyAbmaEugrFTI2ogFHJo",\n "subscription_item": "si_MvvP3c1a8CU3Wz",\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_1MC3YyAbmaEugrFTe5oMuOv6/lines"\n },\n "livemode": false,\n "metadata": {},\n "next_payment_attempt": null,\n "number": "E58073E6-0257",\n "on_behalf_of": null,\n "paid": false,\n "paid_out_of_band": false,\n "payment_intent": {\n "id": "pi_3MC3YyAbmaEugrFT1TeBfJNv",\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_3MC3YyAbmaEugrFT1TeBfJNv"\n },\n "client_secret": "pi_3MC3YyAbmaEugrFT1TeBfJNv_secret_1bsa85YYjPd8aS5jawzA0fddd",\n "confirmation_method": "automatic",\n "created": 1670342408,\n "currency": "eur",\n "customer": "cus_MZplrIZfdYw75Y",\n "description": "Subscription creation",\n "invoice": "in_1MC3YyAbmaEugrFTe5oMuOv6",\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": 1670342408,\n "period_start": 1670342408,\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": 1670342408,\n "marked_uncollectible_at": null,\n "paid_at": null,\n "voided_at": null\n },\n "subscription": "sub_1MC3YyAbmaEugrFTI2ogFHJo",\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": 1670342408\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": 1670342408,\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_5UlLTlctxCMt2M message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:10] "POST /myclass/api/create-subscription/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:15.370389 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf:pisaDocument options:
+ src = '\n\n\n\n\t\n\t\t

\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\tChérif Balde
\n\t\t\t\t\tsdsdds
\n\t\t\t\t\t77680 Roissy En Brie
\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_221200043\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\tDate de facture: 06/12/2022 | \n\t\t\t\t\t\tDate échéance : 06/12/2022 | \n\t\t\t\t\t
\n\n\t\t\t\t
\n\n\t\t\t\t
\n\t\t\t\t\tOrigine : MySy_00X4zU\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\tDescription | \n\t\t\t\t\t\t\tQuantité | \n\t\t\t\t\t\t\tPrix unitaire | \n\t\t\t\t\t\t\tMontant | \n\t\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tGold | \n\t\t\t\t\t\t\t1 | \n\t\t\t\t\t\t\t90 | \n\t\t\t\t\t\t\t90.0 | \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
\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\tMontant HT: | \n\t\t\t\t\t90.0 | \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\tTVA 20% : | \n\t\t\t\t\t18.0 | \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\tMontant TTC : | \n\t\t\t\t\t108.0 | \n\t\t\t\t
\n\t\t\t
\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\n\n'
+ dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_221200043.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): 0x18c568d0
+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_221200043.pdf', 'wb')
+DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200043.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_221200043.pdf')
+INFO:root:2022-12-06 17:00:24.424453 : convertHtmlToPdf DEPLACEMENT DE ./Invoices/invoice_FACT_221200043.pdf VERS /var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200043.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-06 17:00:24.425454 : Impression facture N° FACT_221200043 OK
+INFO:root:2022-12-06 17:00:24.459232 : UpdataPartnerRankingClass - Le RANKING de 174 ont été mise à jour avec la valeur {'display_rank': '50', 'date_update': '2022-12-06 17:00:24.439961', 'isalaune': '1'}
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:24] "POST /myclass/api/createOrder/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:24.576030 : 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_3MC3YyAbmaEugrFT1TeBfJNv/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_3MC3YyAbmaEugrFT1TeBfJNv/confirm response_code=200
+DEBUG:stripe:body='{\n "id": "pi_3MC3YyAbmaEugrFT1TeBfJNv",\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_3MC3YyAbmaEugrFT10oPkLev",\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_3MC3YyAbmaEugrFT1xYITJTl",\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": 1670342424,\n "currency": "eur",\n "customer": "cus_MZplrIZfdYw75Y",\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_1MC3YyAbmaEugrFTe5oMuOv6",\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": 31,\n "seller_message": "Payment complete.",\n "type": "authorized"\n },\n "paid": true,\n "payment_intent": "pi_3MC3YyAbmaEugrFT1TeBfJNv",\n "payment_method": "pm_1MC3ZEAbmaEugrFTToto64hi",\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/CAcaFwoVYWNjdF8xTFVVZkFBYm1hRXVnckZUKJrOvZwGMgZTkSKaOJ06LBZdb2csylVqkO9oFbuCtaVVLiVQWh_TrJiwVdP3TXRjbV7QBc4xVaelcbuw?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_3MC3YyAbmaEugrFT10oPkLev/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_3MC3YyAbmaEugrFT1TeBfJNv"\n },\n "client_secret": "pi_3MC3YyAbmaEugrFT1TeBfJNv_secret_1bsa85YYjPd8aS5jawzA0fddd",\n "confirmation_method": "automatic",\n "created": 1670342408,\n "currency": "eur",\n "customer": "cus_MZplrIZfdYw75Y",\n "description": "Subscription creation",\n "invoice": "in_1MC3YyAbmaEugrFTe5oMuOv6",\n "last_payment_error": null,\n "livemode": false,\n "metadata": {},\n "next_action": null,\n "on_behalf_of": null,\n "payment_method": "pm_1MC3ZEAbmaEugrFTToto64hi",\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_mXzpiYBKEBJRqR message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:27] "POST /myclass/api/confirm_payment/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:37.395371 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:00:37.398374 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:00:37.403360 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:37.414370 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:37.943357 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:37] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:41.193956 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:00:41.196963 : Security check : IP adresse '127.0.0.1' connected
+INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_MZplrIZfdYw75Y/payment_methods?type=card
+DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card
+INFO:root:2022-12-06 17:00:41.204947 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MC3ZEAbmaEugrFTToto64hi",\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": 1670342424,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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": 1670341908,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6C0TAbmaEugrFTvL0xZ8qm",\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": 1668944897,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_YTZRiIqUBma9vr message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:41] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:47.711177 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:00:47.714406 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:00:47.719442 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:00:47.723424 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:47] "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_MZplrIZfdYw75Y/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_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MC3ZEAbmaEugrFTToto64hi",\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": 1670342424,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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": 1670341908,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6C0TAbmaEugrFTvL0xZ8qm",\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": 1668944897,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_4tpGNc6S2GtlhL message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:49] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:49.263922 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:00:49.272140 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:49.393967 : 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_MZplrIZfdYw75Y&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_1MC3ZeAbmaEugrFT30Z9oDeq",\n "object": "subscription",\n "application": null,\n "application_fee_percent": null,\n "automatic_tax": {\n "enabled": false\n },\n "billing_cycle_anchor": 1670342450,\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": 1670342450,\n "currency": "eur",\n "current_period_end": 1673020850,\n "current_period_start": 1670342450,\n "customer": "cus_MZplrIZfdYw75Y",\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_MvvQbhhKEi73sP",\n "object": "subscription_item",\n "billing_thresholds": null,\n "created": 1670342450,\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_1MC3ZeAbmaEugrFT30Z9oDeq",\n "tax_rates": []\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/subscription_items?subscription=sub_1MC3ZeAbmaEugrFT30Z9oDeq"\n },\n "latest_invoice": {\n "id": "in_1MC3ZeAbmaEugrFTzQAsfDNU",\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": 1670342450,\n "currency": "eur",\n "custom_fields": null,\n "customer": "cus_MZplrIZfdYw75Y",\n "customer_address": {\n "city": "",\n "country": "",\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "customer_email": "billardman1@gmail.com",\n "customer_name": "MySy Test",\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_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9NdnZRa2wwM0REVjRpUXNnNVBSaXJoeDdpbjNYOWYxLDYwODgzMjUx0200MJPhYjlq?s=ap",\n "invoice_pdf": "https://pay.stripe.com/invoice/acct_1LUUfAAbmaEugrFT/test_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9NdnZRa2wwM0REVjRpUXNnNVBSaXJoeDdpbjNYOWYxLDYwODgzMjUx0200MJPhYjlq/pdf?s=ap",\n "last_finalization_error": null,\n "latest_revision": null,\n "lines": {\n "object": "list",\n "data": [\n {\n "id": "il_1MC3ZeAbmaEugrFTHWSWwZsn",\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": 1673020850,\n "start": 1670342450\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_1MC3ZeAbmaEugrFT30Z9oDeq",\n "subscription_item": "si_MvvQbhhKEi73sP",\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_1MC3ZeAbmaEugrFTzQAsfDNU/lines"\n },\n "livemode": false,\n "metadata": {},\n "next_payment_attempt": null,\n "number": "E58073E6-0258",\n "on_behalf_of": null,\n "paid": false,\n "paid_out_of_band": false,\n "payment_intent": {\n "id": "pi_3MC3ZeAbmaEugrFT1ArLgUXK",\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_3MC3ZeAbmaEugrFT1ArLgUXK"\n },\n "client_secret": "pi_3MC3ZeAbmaEugrFT1ArLgUXK_secret_0gAxuqbWFKlnd4g2h2I0YXnZA",\n "confirmation_method": "automatic",\n "created": 1670342450,\n "currency": "eur",\n "customer": "cus_MZplrIZfdYw75Y",\n "description": "Subscription creation",\n "invoice": "in_1MC3ZeAbmaEugrFTzQAsfDNU",\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": 1670342450,\n "period_start": 1670342450,\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": 1670342450,\n "marked_uncollectible_at": null,\n "paid_at": null,\n "voided_at": null\n },\n "subscription": "sub_1MC3ZeAbmaEugrFT30Z9oDeq",\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": 1670342450\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": 1670342450,\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_gA3NVxs1W9MK6X message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:00:52] "POST /myclass/api/create-subscription/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:00:58.827933 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf:pisaDocument options:
+ src = '\n\n\n\n\t\n\t\t

\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\tChérif Balde
\n\t\t\t\t\tsdsdds
\n\t\t\t\t\t77680 Roissy En Brie
\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_221200044\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\tDate de facture: 06/12/2022 | \n\t\t\t\t\t\tDate échéance : 06/12/2022 | \n\t\t\t\t\t
\n\n\t\t\t\t
\n\n\t\t\t\t
\n\t\t\t\t\tOrigine : MySy_00jPPc\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\tDescription | \n\t\t\t\t\t\t\tQuantité | \n\t\t\t\t\t\t\tPrix unitaire | \n\t\t\t\t\t\t\tMontant | \n\t\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tStandard | \n\t\t\t\t\t\t\t1 | \n\t\t\t\t\t\t\t50 | \n\t\t\t\t\t\t\t50.0 | \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
\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\tMontant HT: | \n\t\t\t\t\t50.0 | \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\tTVA 20% : | \n\t\t\t\t\t10.0 | \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\tMontant TTC : | \n\t\t\t\t\t60.0 | \n\t\t\t\t
\n\t\t\t
\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\n\n'
+ dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_221200044.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): 0x18be7650
+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_221200044.pdf', 'wb')
+DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200044.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_221200044.pdf')
+INFO:root:2022-12-06 17:01:08.223905 : convertHtmlToPdf DEPLACEMENT DE ./Invoices/invoice_FACT_221200044.pdf VERS /var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200044.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-06 17:01:08.226891 : Impression facture N° FACT_221200044 OK
+INFO:root:2022-12-06 17:01:09.805177 : UpdataPartnerRankingClass - Le RANKING de 174 ont été mise à jour avec la valeur {'display_rank': '50', 'date_update': '2022-12-06 17:01:08.385089', 'isalaune': '1'}
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:09] "POST /myclass/api/createOrder/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:01:10.023801 : 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_3MC3ZeAbmaEugrFT1ArLgUXK/confirm
+DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=payment_method=pm_card_visa
+INFO:root:2022-12-06 17:01:12.249489 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:01:12.303737 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:12] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:01:13.486999 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:01:13.489516 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:01:13.492514 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:13] "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_MZplrIZfdYw75Y/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/payment_intents/pi_3MC3ZeAbmaEugrFT1ArLgUXK/confirm response_code=200
+DEBUG:stripe:body='{\n "id": "pi_3MC3ZeAbmaEugrFT1ArLgUXK",\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_3MC3ZeAbmaEugrFT1vScqBmK",\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_3MC3ZeAbmaEugrFT1HWkIkrV",\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": 1670342471,\n "currency": "eur",\n "customer": "cus_MZplrIZfdYw75Y",\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_1MC3ZeAbmaEugrFTzQAsfDNU",\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": 6,\n "seller_message": "Payment complete.",\n "type": "authorized"\n },\n "paid": true,\n "payment_intent": "pi_3MC3ZeAbmaEugrFT1ArLgUXK",\n "payment_method": "pm_1MC3ZzAbmaEugrFTHOYIgDoT",\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/CAcaFwoVYWNjdF8xTFVVZkFBYm1hRXVnckZUKMnOvZwGMgYEJoR73cE6LBYNKE-bLxoRZxh2YkFEhhHqQCAD4dUi-S2vVpxdEY1a21TJe0yfJOr80PBB?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_3MC3ZeAbmaEugrFT1vScqBmK/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_3MC3ZeAbmaEugrFT1ArLgUXK"\n },\n "client_secret": "pi_3MC3ZeAbmaEugrFT1ArLgUXK_secret_0gAxuqbWFKlnd4g2h2I0YXnZA",\n "confirmation_method": "automatic",\n "created": 1670342450,\n "currency": "eur",\n "customer": "cus_MZplrIZfdYw75Y",\n "description": "Subscription creation",\n "invoice": "in_1MC3ZeAbmaEugrFTzQAsfDNU",\n "last_payment_error": null,\n "livemode": false,\n "metadata": {},\n "next_action": null,\n "on_behalf_of": null,\n "payment_method": "pm_1MC3ZzAbmaEugrFTHOYIgDoT",\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_jUIIdJkZIlpUIs message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:14] "POST /myclass/api/confirm_payment/ HTTP/1.1" 200 -
+INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MC3ZzAbmaEugrFTHOYIgDoT",\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": 1670342471,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1MC3ZEAbmaEugrFTToto64hi",\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": 1670342424,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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": 1670341908,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_fq1s7m0HkbVg1e message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:14] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:01:17.193425 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:01:17.199431 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:01:17.203422 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:01:17.207420 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:17] "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_MZplrIZfdYw75Y/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_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MC3ZzAbmaEugrFTHOYIgDoT",\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": 1670342471,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1MC3ZEAbmaEugrFTToto64hi",\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": 1670342424,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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": 1670341908,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_wkbzWtD9IaZqi3 message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:18] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:01:18.556328 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:01:18.562328 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:01:18.641932 : 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_MZplrIZfdYw75Y&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_1MC3a7AbmaEugrFThpLUQ7sb",\n "object": "subscription",\n "application": null,\n "application_fee_percent": null,\n "automatic_tax": {\n "enabled": false\n },\n "billing_cycle_anchor": 1670342479,\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": 1670342479,\n "currency": "eur",\n "current_period_end": 1673020879,\n "current_period_start": 1670342479,\n "customer": "cus_MZplrIZfdYw75Y",\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_MvvQqVndCj26i0",\n "object": "subscription_item",\n "billing_thresholds": null,\n "created": 1670342479,\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_1MC3a7AbmaEugrFThpLUQ7sb",\n "tax_rates": []\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/subscription_items?subscription=sub_1MC3a7AbmaEugrFThpLUQ7sb"\n },\n "latest_invoice": {\n "id": "in_1MC3a7AbmaEugrFTphMa6X6a",\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": 1670342479,\n "currency": "eur",\n "custom_fields": null,\n "customer": "cus_MZplrIZfdYw75Y",\n "customer_address": {\n "city": "",\n "country": "",\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "customer_email": "billardman1@gmail.com",\n "customer_name": "MySy Test",\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_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9NdnZRMXhXVHhSc2VKNVdzWWRaMnNCcTQzT0laZmxZLDYwODgzMjgw0200vY4isR0A?s=ap",\n "invoice_pdf": "https://pay.stripe.com/invoice/acct_1LUUfAAbmaEugrFT/test_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9NdnZRMXhXVHhSc2VKNVdzWWRaMnNCcTQzT0laZmxZLDYwODgzMjgw0200vY4isR0A/pdf?s=ap",\n "last_finalization_error": null,\n "latest_revision": null,\n "lines": {\n "object": "list",\n "data": [\n {\n "id": "il_1MC3a7AbmaEugrFT4CIGecI8",\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": 1673020879,\n "start": 1670342479\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_1MC3a7AbmaEugrFThpLUQ7sb",\n "subscription_item": "si_MvvQqVndCj26i0",\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_1MC3a7AbmaEugrFTphMa6X6a/lines"\n },\n "livemode": false,\n "metadata": {},\n "next_payment_attempt": null,\n "number": "E58073E6-0259",\n "on_behalf_of": null,\n "paid": false,\n "paid_out_of_band": false,\n "payment_intent": {\n "id": "pi_3MC3a7AbmaEugrFT0kFPwIua",\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_3MC3a7AbmaEugrFT0kFPwIua"\n },\n "client_secret": "pi_3MC3a7AbmaEugrFT0kFPwIua_secret_JIcPSI2A6HhBXDSqCgKNZ2XtJ",\n "confirmation_method": "automatic",\n "created": 1670342479,\n "currency": "eur",\n "customer": "cus_MZplrIZfdYw75Y",\n "description": "Subscription creation",\n "invoice": "in_1MC3a7AbmaEugrFTphMa6X6a",\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": 1670342479,\n "period_start": 1670342479,\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": 1670342479,\n "marked_uncollectible_at": null,\n "paid_at": null,\n "voided_at": null\n },\n "subscription": "sub_1MC3a7AbmaEugrFThpLUQ7sb",\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": 1670342479\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": 1670342479,\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_FZg8C5hT9YyaJU message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:21] "POST /myclass/api/create-subscription/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:01:21.521927 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:01:23.027365 : UpdataPartnerRankingClass - Le RANKING de 174 ont été mise à jour avec la valeur {'display_rank': '50', 'date_update': '2022-12-06 17:01:23.015335', 'isalaune': '1'}
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:23] "POST /myclass/api/createOrder/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:01:27.475088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:01:27.477088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:01:27.483658 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:01:27.487685 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:01:27.500246 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:01:27.507252 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:root:2022-12-06 17:01:27.507252 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:27] "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_MZplrIZfdYw75Y/payment_methods?type=card
+DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card
+INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_MZplrIZfdYw75Y/payment_methods?type=card
+DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:27] "POST /myclass/api/get_invoice_by_customer/ HTTP/1.1" 200 -
+INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_MZplrIZfdYw75Y/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MC3ZzAbmaEugrFTHOYIgDoT",\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": 1670342471,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1MC3ZEAbmaEugrFTToto64hi",\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": 1670342424,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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": 1670341908,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1MC3ZzAbmaEugrFTHOYIgDoT",\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": 1670342471,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1MC3ZEAbmaEugrFTToto64hi",\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": 1670342424,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1MC3QuAbmaEugrFTnTryqbnc",\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": 1670341908,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M7NaAAbmaEugrFTk4H2nWqy",\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": 1669227722,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6ChLAbmaEugrFTQoa98s8Y",\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": 1668947555,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CftAbmaEugrFTLfSHV7sD",\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": 1668947465,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CO3AbmaEugrFTa9Y2vg7A",\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": 1668946359,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CMLAbmaEugrFTU5Au16PQ",\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": 1668946253,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CDHAbmaEugrFTRdqW4RsY",\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": 1668945691,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n },\n {\n "id": "pm_1M6CAPAbmaEugrFTeFQMGJCt",\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": 1668945513,\n "customer": "cus_MZplrIZfdYw75Y",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": true,\n "url": "/v1/customers/cus_MZplrIZfdYw75Y/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_ExgIhlOkRy5qLD message='Dashboard link for request'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_CoOv3SqTp2dlHX message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:29] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:29] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:01:58.470440 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:paramiko.transport:starting thread (client mode): 0x18bfbcd0
+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] stat(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/')
+DEBUG:paramiko.transport.sftp:[chan 0] normalize(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/')
+DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200043.pdf')
+DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200043.pdf', 'rb')
+DEBUG:paramiko.transport.sftp:[chan 0] open(b'/var/www/html/sftp_iexercice/mysy_invoices_dev/invoice_FACT_221200043.pdf', 'rb') -> 00000000
+DEBUG:paramiko.transport.sftp:[chan 0] close(00000000)
+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:werkzeug:127.0.0.1 - - [06/Dec/2022 17:01:59] "GET /myclass/api/GetCustomerInvoice/cherif/FACT_221200043 HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:35.967449 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:16:35.969466 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:36] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:37.235127 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:16:37.241127 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:37.586854 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:37.902095 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:16:37.903081 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:16:37.904095 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:16:37.907080 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:16:37.908081 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:16:37.917085 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:38.249013 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:16:38.253055 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:38.262046 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:38.267039 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:38.276078 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:38.282064 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:38.575925 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:38.585564 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:16:38.587559 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:16:38.589076 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-06 17:16:38.597087 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:38.604095 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-06 17:16:38.893098 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Dec/2022 17:16:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:50:03.363251 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-07 15:50:03.364267 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-07 15:50:03.364267 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-07 15:50:03.364267 : ++ FLASK PORT 5001 ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-07 15:50:14.917024 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-07 15:50:14.917024 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-07 15:50:14.917024 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-07 15:50:14.917024 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-07 15:50:25.565427 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:50:25.567428 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:50:25] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:50:25] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:51:47.132944 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:51:47.133945 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:51:47] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:51:47] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:06.210737 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:52:06.212783 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:06] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:06] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:07.377754 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:52:07.381288 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:07] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.006673 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:52:08.009187 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:52:08.012202 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:52:08.014725 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.018728 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.024253 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.028261 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.031793 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.035306 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:52:08.039320 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.044326 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.052846 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:52:08.054845 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.061074 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.065070 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.071605 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.075029 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.080569 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.084567 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:08.090565 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:32.582282 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:52:33.165392 : partner_login Connexion partnair mysytraining@gmail.com : OK, Date : 2022-12-07 15:52:32.583811 , _id = 638139d0934a818b1f6f85f7
+INFO:root:2022-12-07 15:52:33.172372 : partner_login Connexion partener_token : OK , _id = 63813a72b4c6b1dce20a0481
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:33] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:33.294119 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:52:33.296113 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:33.299669 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:52:33.304211 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:52:33.443201 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:52:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:53:19.733595 : 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-07 15:53:22.662420 : external_code = 3IL_10006 ==> Prise de Parole en Public
+INFO:root:2022-12-07 15:53:23.337508 : La formation indexée (champ title) =6390a8e20950c9e042bb1020
+INFO:root:2022-12-07 15:53:23.337508 : 1 ont été indexes => title
+INFO:root:2022-12-07 15:53:23.342020 : 0 ont été indexes ==> keyword
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:53:23] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:53:32.976142 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:53:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:53:33.037866 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:53:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:53:42.355042 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:53:42.358036 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:53:42] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:53:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:30.342465 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:30.344470 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:30] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:30] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:30.889827 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:30.890839 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:30] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:31.546740 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:31.546740 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:31.548476 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:31.549490 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:31.550487 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:31.554489 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:31.872778 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:31.872778 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:31.873775 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:31.875795 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:31.875795 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:31.878314 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:31] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:32.199816 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:32.200827 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:32.201826 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:32.201826 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:32.202825 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:32.204834 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:32.523026 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:32.525033 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:35.202127 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:35.695985 : pour phrase : #Parole#, voici la liste des formations
+INFO:root:2022-12-07 15:54:35.695985 : ['268', '1079', '5933', '6364', '34000_V2', '8522', '3051', '34000', '6365', '1266', 'AF_0000032757', '1652173925889218', '1654586278162055', '1654586306959175', '8442', '3IL_10006', '1652173858248007', 'WEB10', '165458626980228', '1652085857884008', '1652174377661954']
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:35] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:35.836174 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:36.146098 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:36.146098 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:36.147099 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:36.148104 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:36.148620 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:36.153632 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:36.468361 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:36.469358 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:36.469358 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:36.470030 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:36.475431 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:36.478371 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:36.797579 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:36.798582 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:36.799088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:36.799088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:36.800095 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:36.805674 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:37.122861 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:54:48.006335 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:54:48.007332 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:48] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:54:48] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:57:09.660190 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:57:09.661190 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:57:09] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:57:09] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:57:45.354558 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 15:57:45.376903 : Ajout Token OK, _id = 63682a655d6fdfcaccb17839
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:57:45] "POST /myclass/api/login/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:57:45.610140 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:57:45] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 15:57:45.823648 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 15:57:45] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:01:37.251342 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:37.253348 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:37] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:37] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:01:37.662817 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:37.663828 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:01:38.269668 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:38.269668 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:38.270671 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:38.271666 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:38.274656 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:01:38.278661 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:01:38.596327 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:38.597326 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:38.598314 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:38.599822 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:01:38.601840 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:01:38.604843 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:01:38.922766 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:38.923765 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:38.925292 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:38.926312 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:01:38.932307 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:01:38.938827 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:01:39.247316 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:01:39.248322 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:01:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:02.068792 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:02.517741 : pour phrase : #Parole#, voici la liste des formations
+INFO:root:2022-12-07 16:02:02.517741 : ['268', '1079', '5933', '6364', '8522', '3051', '1266', '6365', 'AF_0000032757', '1652173925889218', '1654586278162055', '1654586306959175', '8442', '3IL_10006', '1652173858248007', 'WEB10', '1652085857884008', '165458626980228', '1652174377661954']
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:02] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:02.659529 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:02.966005 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:02.967008 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:02.967008 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:02.968608 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:02.972537 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:02.976072 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:03.280952 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:03.288950 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:03.289953 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:03.289953 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:03.290950 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:03.290950 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:03.594493 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:03.601016 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:03.608019 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:03.609018 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:03.610546 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:03.611573 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:03.902798 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:08.149357 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:08.150357 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:08] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:08] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:39.355008 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:39.657814 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:40.420871 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:40.421870 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:40] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:40.686010 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:40.889760 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:40.891293 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:40.892305 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:40.892446 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:40.897471 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:41.013657 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:41.218610 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:41.219599 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:41.220601 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:41.220601 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:41.222107 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:41.324242 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:41.547210 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:41.548218 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:41.548218 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:02:41.551217 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:41.556526 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:41.636942 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:02:41.870844 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:02:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:05:12.666979 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:12.696395 : update_class - La formation a bin ete mise à jour =6390a8e20950c9e042bb1020
+INFO:root:2022-12-07 16:05:12.700392 : external_code = 3IL_10006 ==> Prise de Parole en Public
+INFO:root:2022-12-07 16:05:13.017356 : La formation indexée (champ title) =6390a8e20950c9e042bb1020
+INFO:root:2022-12-07 16:05:13.017356 : 1 ont été indexes => title
+INFO:root:2022-12-07 16:05:13.020875 : external_code = 3IL_10006 ==> Prise de Parole en Public
+INFO:root:2022-12-07 16:05:13.286043 : documents must be a non-empty list
+INFO:root:2022-12-07 16:05:13.291266 : La formation indexée (champs objectif) =6390a8e20950c9e042bb1020
+INFO:root:2022-12-07 16:05:13.291266 : 1 ont été indexes ==> keyword
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:13] "POST /myclass/api/update_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:05:44.038808 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:44.039811 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:05:44.596062 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:44.597053 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:44] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:05:45.205269 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:45.205269 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:45.206264 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:45.207794 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:45.209813 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:05:45.216806 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:05:45.533336 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:45.533336 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:45.534333 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:45.535327 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:05:45.541861 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:05:45.545398 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:05:45.861428 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:45.862440 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:45.864449 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:05:45.871452 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:45.873443 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:45.876186 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:05:46.183163 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:46.184165 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:05:52.055921 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:05:52.057959 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:52] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:05:52] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:06:12.839555 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:06:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:06:13.142578 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:06:13] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:06:15.331859 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:06:15.332857 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:06:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:06:15] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:14:22.161670 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:14:22.163685 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:14:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:14:22.171738 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:14:22.171738 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:14:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:14:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:14:22.805435 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:14:22] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:14:33.127860 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:14:33.290597 : external_code = 3IL_10006 ==> Prise de Parole en Public
+INFO:root:2022-12-07 16:14:33.585835 : La formation indexée (champ title) =6390add90950c9e042bb1893
+INFO:root:2022-12-07 16:14:33.585835 : 1 ont été indexes => title
+INFO:root:2022-12-07 16:14:33.589374 : 0 ont été indexes ==> keyword
+INFO:root:2022-12-07 16:14:33.627397 : add_class - La valeur 'trainer' n'est pas presente dans liste
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:14:33] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:15:37.405469 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:15:37.538594 : external_code = 3IL_10006 ==> Prise de Parole en Public
+INFO:root:2022-12-07 16:15:37.834610 : La formation indexée (champ title) =6390add90950c9e042bb1893
+INFO:root:2022-12-07 16:15:37.834610 : 1 ont été indexes => title
+INFO:root:2022-12-07 16:15:37.839607 : 0 ont été indexes ==> keyword
+INFO:root:2022-12-07 16:15:37.932672 : external_code = 3IL_10007 ==> Préparer ses Entretiens Professionnels Développer Son Intelligence Émotionnelle
+INFO:root:2022-12-07 16:15:38.258139 : La formation indexée (champ title) =6390ae190950c9e042bb1918
+INFO:root:2022-12-07 16:15:38.259446 : 1 ont été indexes => title
+INFO:root:2022-12-07 16:15:38.263149 : 0 ont été indexes ==> keyword
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:15:38] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:15:43.078062 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:15:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:15:43.244583 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:15:43] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:16:00.206215 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:00.207216 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:00] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:00] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:16:00.796755 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:00.797774 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:00] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:16:01.424392 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:01.425402 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:01.425402 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:01.425402 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:01.428959 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:16:01.431945 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:16:01.755027 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:01.756029 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:01.756029 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:01.758028 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:01.760576 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:16:01.763967 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:16:02.073235 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:02.074901 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:02.078454 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:16:02.085005 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:16:02.089000 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:02.092003 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:16:02.400800 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:02.402823 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:16:11.373815 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:16:11.374811 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:11] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:16:11] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:05.682683 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:32:05.700753 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:05] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:05] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:10.516504 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:32:10.519029 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:10] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:11.954729 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:32:11.955728 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.350291 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:32:12.353296 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.357304 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.360293 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.365267 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.369285 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:32:12.372470 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.376492 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.380483 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.383478 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:32:12.386474 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.390004 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.393531 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:32:12.395536 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.404535 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.411068 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:32:12.413602 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.415610 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:32:12.419627 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:32:12.422618 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:32:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 16:35:01.296845 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 16:35:01.298847 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:35:01] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 16:35:01] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:04:22.332734 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-07 21:04:22.333731 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-07 21:04:22.333731 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-07 21:04:22.333731 : ++ FLASK PORT 5001 ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-07 21:04:34.608874 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-07 21:04:34.608874 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-07 21:04:34.608874 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-07 21:04:34.608874 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-07 21:04:34.896045 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:34.897059 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:34.899598 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:34.901599 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:04:35.598369 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:35.599383 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:35.600378 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:35.601387 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:35.602367 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:35.607372 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:04:35.927168 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:35.927168 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:35.928257 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:35.929349 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:35.930368 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:35.930368 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:04:36.262509 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:36.263511 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:36.264525 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:36.266514 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:04:36.272523 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:04:36.275511 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:04:36.595205 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:04:36.597935 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:04:36] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:43.260219 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:08:43.262239 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:08:43.263764 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:08:43.269760 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:43] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:43] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:43] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:57.290788 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:08:57.292781 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:58.789490 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:08:58.790493 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:58] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.602319 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:08:59.607320 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.610323 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:08:59.615320 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.619325 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.625319 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.630320 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.637342 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.644340 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.649334 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:08:59.653117 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.657183 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.662187 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.674203 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.680205 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:08:59.682723 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.689751 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.697741 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.703745 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:08:59.708747 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:08:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:09:37.812354 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:09:38.553232 : partner_login Connexion partnair mysytraining@gmail.com : OK, Date : 2022-12-07 21:09:37.814703 , _id = 638139d0934a818b1f6f85f7
+INFO:root:2022-12-07 21:09:38.560228 : partner_login Connexion partener_token : OK , _id = 63813a72b4c6b1dce20a0481
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:09:38] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:09:38.820342 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:09:38.824356 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:09:38.828384 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:09:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:09:38.836367 : Connexion du partner recid = 57c241ea55744b884d1f6c974e90fd1f905556bb1c80677d7d OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:09:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:09:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:09:39.199381 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:09:39] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:09:49.515218 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:09:49.519231 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:09:49] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:09:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:11:36.775845 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:11:36.799769 : update_class - La formation a bin ete mise à jour =6390ae190950c9e042bb1918
+INFO:root:2022-12-07 21:11:36.805779 : external_code = 3IL_10007 ==> Préparer ses Entretiens Professionnels Développer Son Intelligence Émotionnelle
+INFO:root:2022-12-07 21:11:37.729396 : La formation indexée (champ title) =6390ae190950c9e042bb1918
+INFO:root:2022-12-07 21:11:37.729396 : 1 ont été indexes => title
+INFO:root:2022-12-07 21:11:37.734406 : external_code = 3IL_10007 ==> Préparer ses Entretiens Professionnels Développer Son Intelligence Émotionnelle
+INFO:root:2022-12-07 21:11:38.025006 : documents must be a non-empty list
+INFO:root:2022-12-07 21:11:38.031017 : La formation indexée (champs objectif) =6390ae190950c9e042bb1918
+INFO:root:2022-12-07 21:11:38.031017 : 1 ont été indexes ==> keyword
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:11:38] "POST /myclass/api/update_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:11:49.946189 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:11:49.950189 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:11:49] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:11:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:12:59.879459 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:12:59.914636 : update_class - La formation a bin ete mise à jour =6390add90950c9e042bb1893
+INFO:root:2022-12-07 21:12:59.920627 : external_code = 3IL_10006 ==> Prise de Parole en Public
+INFO:root:2022-12-07 21:13:00.290814 : La formation indexée (champ title) =6390add90950c9e042bb1893
+INFO:root:2022-12-07 21:13:00.290814 : 1 ont été indexes => title
+INFO:root:2022-12-07 21:13:00.295842 : external_code = 3IL_10006 ==> Prise de Parole en Public
+INFO:root:2022-12-07 21:13:00.586706 : documents must be a non-empty list
+INFO:root:2022-12-07 21:13:00.592701 : La formation indexée (champs objectif) =6390add90950c9e042bb1893
+INFO:root:2022-12-07 21:13:00.593680 : 1 ont été indexes ==> keyword
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:13:00] "POST /myclass/api/update_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:13:08.908583 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:13:08.910579 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:13:08.911578 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:13:08.912580 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:13:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:13:08] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:13:08] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:13:08] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:13:31.312066 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:13:31.314067 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:13:31] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:13:31] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:13:48.324947 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:13:48.326953 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:13:48] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:13:48] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:14:40.973918 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:40.973918 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:41] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:41] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:14:41.488221 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:41.489226 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:41] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:14:42.185940 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.187938 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.188940 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.189941 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.190952 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.192948 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:14:42.525280 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.526275 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.528288 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.529286 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.530297 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.532297 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:14:42.870044 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.871044 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.872042 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.873042 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:42.876043 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:14:42.885045 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:42] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:14:43.211362 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:14:43.215906 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:14:43] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:15:58.907099 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:15:58.909097 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:15:58] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:15:59] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:16:13.401785 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:13] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:16:13.721423 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:13] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:16:15.104120 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:15.108126 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:15] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:16:15.658180 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:16:15.977592 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:15.978590 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:15.979594 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:15.980592 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:15.981590 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:15.982594 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:16:16.322092 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:16.324095 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:16.325095 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:16.327099 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:16.336127 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:16:16.352677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:16:16.671072 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:16.674084 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:16.676082 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:16.677101 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:16:16.678067 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:16:16.710092 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:16:16.996483 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:16:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:17:10.460943 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:10.460943 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:10] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:17:11.365971 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:11.367988 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:11] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:17:12.022529 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.022529 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.023531 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.024535 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:17:12.028532 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.032527 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:17:12.349039 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.350043 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.351044 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.351044 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.352051 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.353032 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:17:12.691477 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.692484 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.692484 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.693482 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:12.694489 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:17:12.705506 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:12] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:17:13.016867 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:17:13.017853 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:17:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:18:03.122103 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:18:03.123627 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:18:03.123627 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:18:03.129643 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:18:03.135643 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:18:03.141646 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:18:03.446345 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:18:03.464406 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:18:03.466409 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:18:03.467392 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:18:03.469402 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:18:03.471404 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:18:03.779941 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:18:03.788961 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:18:03.790962 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:18:03.792660 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:18:03.794834 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:18:03.796984 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:18:04.093034 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:18:04.124593 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:18:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:19:26.501907 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:26.502916 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:26] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:26] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:19:27.119104 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:27.120105 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:27] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:19:27.792127 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:27.793135 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:27.793135 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:27.794339 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:27.795133 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:27.798127 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:27] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:19:28.118192 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:28.119199 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:28.120198 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:28.121205 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:28.121205 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:28.122203 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:19:28.446787 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:28.447773 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:28.447773 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:28.448798 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:28.450785 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:28.452787 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:19:28.783341 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:19:28.786349 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:19:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:14.343134 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:14.344181 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:14] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:14] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:14.888999 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:14.890009 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:14] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:15.544018 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:15.545020 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:15.546020 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:15.549024 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:15.558011 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:15.564019 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:15.872251 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:15.873263 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:15.875257 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:15.877267 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:15.878256 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:15.881248 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:16.215685 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:16.216693 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:16.217698 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:16.218693 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:16.219693 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:16.220684 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:16.555781 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:16.556792 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:16] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:18.333913 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:18] "POST /myclass/api/get_class_by_metier/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:18.588776 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:18.798427 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:18.799445 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:18.800429 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:18.801433 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:18.802432 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:18.895025 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:18] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:19.113024 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:19.120050 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:19.120050 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:19.121046 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:19.122059 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:19.209400 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:19.444557 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:19.445555 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:19.446556 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:19.453553 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:19.457138 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:19.519580 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:19.770741 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:26.881345 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:26.882348 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:26] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:27] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:27.583578 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:27.585576 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:27] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:28.332741 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.333757 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.334753 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.334753 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.336762 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:28.341753 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:28.663128 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.664226 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.665296 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.665296 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.666418 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.667438 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:28.987510 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.988524 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.989545 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.989545 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.992723 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:28.997038 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:28] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:20:29.313147 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:20:29.315135 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:20:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:21:20.417368 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:21:20.419363 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-07 21:21:20.425356 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:21:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:21:20.429882 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:21:20] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:21:20] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:21:20] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-07 21:22:34.933553 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Dec/2022 21:22:38] "POST /myclass/api/RenseignementClass/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:35.444338 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-08 19:22:35.445329 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-08 19:22:35.445329 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-08 19:22:35.445329 : ++ FLASK PORT 5001 ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-08 19:22:44.257735 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-08 19:22:44.258733 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-08 19:22:44.258733 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-08 19:22:44.258733 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-08 19:22:44.460940 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:44.462940 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:44.463953 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:44.465942 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:44] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:44.854274 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:44.856286 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:45.873829 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:45.874829 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:45] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:46.331919 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:46.334913 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:46.337926 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:46.340923 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:46.345927 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:46.351452 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:46.354454 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:46.357462 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:46.359476 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:46.364453 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:46.369464 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:46.371457 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:46.374452 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:46.378451 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:46.386462 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:22:46.388459 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:46.392455 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:46.397460 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:46.403461 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:22:46.405465 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:22:46] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:06.165179 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:06.169198 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:06] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:06] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:31.349707 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:32.357657 : pour phrase : #intelligent#, voici la liste des formations
+INFO:root:2022-12-08 19:23:32.357657 : ['1653050339505165', '1652439818530913', '1653050338526082', 'CAO01', '1652085587215008', '165458630148208', '1652439810643705', '1652174289472018', '1653050339489207', 'BUR06', '1652085830870951', '1652085763886884', 'EXC15', '1652439817644014', '1651922076127637', '1652085621914999', '1652439817530255', '1652439818514744', 'PAO04', '1653050331946706', '1653050331993279', '1652439810612731', '1653050338636324']
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.715892 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:32.720414 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.723428 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.728431 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:32.732431 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.737430 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.740428 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:32.745433 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.749426 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:32.753436 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.757434 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.760432 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:32.765429 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.771425 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.774439 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.783435 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.788434 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.791434 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.795426 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:32.800441 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:43.383986 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:44.206300 : pour phrase : #intelligence#, voici la liste des formations
+INFO:root:2022-12-08 19:23:44.206300 : ['1652439817544911', '1652439817468594', '1653050338459149', '1653050338540065', '9134', '1653050338474286', '1653050338504143', '1652439817499844', '1652439817515031', '8225', '1654586263270951', '1652173815329764', '9137', '1654586275814279', '1652439808757232', '1653050330224111', '1652439808789149', '1653050336844553', '1653050330208153', '1652439815698139', '1652439808821062', '1653050330255063', '1653050336909381', '6198', '6667', '53064', '2201', '55384', '53037', '9283', '8819', '9233', '1652439817530255', '1652439818530913', '1653050337482892', '1653050339505165', '1654586304115903', '165217436265849', '1652439816412853', '1653050338526082', '1653050338756399', '1652439816552482', '1652439817778699', '165237910219359', '1653050337603335', '1652173903696071', '1653050339489207', '1653050340611777', '1652439818514744', '1652379102093856']
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.484746 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.490743 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:44.493744 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:44.497743 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.501744 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.507743 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.512740 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.516742 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:44.521746 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:44.524763 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.535766 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.542307 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.552304 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.558353 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.565345 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:44.567337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:44.571744 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.575778 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:23:44.580782 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:23:44.585786 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:23:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:29.326981 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:27:29.950402 : pour phrase : #entretien#, voici la liste des formations
+INFO:root:2022-12-08 19:27:29.950402 : ['3IL_10007', 'POT_191216', 'POT_191227', '2200', '1652085920414885', 'MAN08', '1652085915680793', 'MAN06', '240', '9198', '9197', '9199', '7924', '95', '6984', '9227', '7967', '8379', '7608', '1654586274235196', '1654586321968579', '\nselectionnez-les-meilleurs-candidats\n-8', '85', '96', '1387', '5683', '8222', '7269', '1652174475646437', '1652174357057999', '1652173893180227', '\nles-fondamentaux-des-marches-publics---cours-a-jour-du-code\n-8', 'MAN07', '5934', '1653050329889322', '239', '1652439819526594', '2948', '1654586303068095', '1652173889708319', '1652439808383176', '6783', '6577', 'MAN04', 'MAN10', '1652085910806554', '9413', '1388', '8142', '1652174062616855']
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:29] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.195583 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:27:30.200580 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.206580 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.216581 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:27:30.220579 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.225584 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.230582 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.238607 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:27:30.240611 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:27:30.246122 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.250165 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.257143 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.262153 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:27:30.266155 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.271161 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.275161 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.283175 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.288729 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.293717 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:30.298277 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:44.030911 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:27:44.033277 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:44] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.009255 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:27:45.010262 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.460290 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:27:45.463295 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.467286 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.470809 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.474827 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.477839 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:27:45.479831 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.484829 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.488837 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.492833 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.496826 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.501833 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:27:45.502835 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.507844 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.516835 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.518827 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:27:45.523822 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.527836 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.531834 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:27:45.536834 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:27:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:14.926609 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:15.543148 : pour phrase : #entretien#, voici la liste des formations
+INFO:root:2022-12-08 19:37:15.543148 : ['3IL_10007', 'POT_191216', 'POT_191227', '2200', '1652085915680793', 'MAN08', 'MAN06', '1652085920414885', '240', '9198', '9197', '9199', '7924', '7608', '7967', '6984', '9227', '8379', '95', '1654586274235196', '1654586321968579', '\nselectionnez-les-meilleurs-candidats\n-8', '96', '8222', '7269', '85', '5683', '1387', '1652174357057999', '1652173893180227', '1652174475646437', '1654586296956808', '6577', '1654586290533674', '239', 'MAN10', '1652085927099856', '\nelaborez-un-plan-de-recrutement\n-6', '\nles-fondamentaux-des-marches-publics---cours-a-jour-du-code\n-8', '2948', 'MAN04', '9248', '1652173889708319', '1654586322660719', '178', '1652085910806554', 'MAN01', '165208588341041', '165243980900997', '1653050330410781']
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:15.810261 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:15.814276 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:15.818280 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:15.825297 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:15.831302 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:15.837326 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:15.843833 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:15.845821 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:15.853354 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:15.857361 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:15.865392 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:15.867375 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:15.872381 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:15.880006 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:15.884002 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:15.889009 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:15.897999 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:15.900010 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:15.906025 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:15.912027 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:28.694034 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:29.326011 : pour phrase : #faire un entretien#, voici la liste des formations
+INFO:root:2022-12-08 19:37:29.326011 : ['3IL_10007', 'POT_191216', 'POT_191227', '2200', '1652085915680793', 'MAN08', 'MAN06', '1652085920414885', '240', '9198', '9197', '9199', '7924', '7608', '7967', '6984', '9227', '8379', '95', '1654586274235196', '1654586321968579', '\nselectionnez-les-meilleurs-candidats\n-8', '5683', '8222', '7269', '85', '96', '1387', '1652174357057999', '1652173893180227', '1652174475646437', '1654586296956808', '6577', '1654586290533674', '239', 'MAN10', '1652085927099856', '\nelaborez-un-plan-de-recrutement\n-6', '\nles-fondamentaux-des-marches-publics---cours-a-jour-du-code\n-8', '2948', 'MAN04', '9248', '1652173889708319', '1654586322660719', '178', '1652085910806554', 'MAN01', '165208588341041', '165243980900997', '1653050330410781']
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:29.557977 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:29.562974 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:29.567993 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:29.571987 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:29.579977 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:29.583996 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:29.589010 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:29.592996 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:29.601520 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:29.603528 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:29.609520 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:29.615524 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:29.619516 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:29.623516 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:29.630536 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:29.634540 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:29.643077 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:29.646096 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-08 19:37:29.649108 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-08 19:37:29.653651 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Dec/2022 19:37:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:06:48.976944 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 10:06:48.978941 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 10:06:48.978941 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 10:06:48.978941 : ++ FLASK PORT 5001 ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-09 10:07:00.418050 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 10:07:00.418050 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 10:07:00.418050 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 10:07:00.418050 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 10:07:00.598302 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:00.600304 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:00.602315 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:00.604326 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:00] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:00] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:00] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:01.266887 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.267987 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.269109 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.270526 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.272019 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.273120 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:01.605180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.605180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.606178 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.607188 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.609169 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:01.614175 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:01.926192 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.927189 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.928193 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.928193 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.928193 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:01.932720 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:02.245256 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:02.250247 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:33.629813 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:33.644818 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:33] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:33] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:34.300433 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:34.302430 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:34] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:34.980630 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:34.985625 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:34] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:34.991627 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:34.995169 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:35.003167 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:35.006158 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:35.011163 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:35.018161 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:35.020162 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:35.025165 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:35.032160 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:35.038165 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:35.042161 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:35.048174 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:35.053159 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:35.064168 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:35.067161 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:35.071159 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:35.077165 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:35.081179 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:56.861960 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:57.518739 : pour phrase : #entretien#, voici la liste des formations
+INFO:root:2022-12-09 10:07:57.518739 : ['3IL_10007', 'POT_191227', 'POT_191216', '2200', '1652085920414885', 'MAN06', 'MAN08', '1652085915680793', '240', '9199', '9198', '9197', '7924', '7967', '9227', '8379', '7608', '6984', '95', '1654586274235196', '1654586321968579', '\nselectionnez-les-meilleurs-candidats\n-8', '1387', '8222', '85', '5683', '96', '7269', '1652173893180227', '1652174475646437', '1652174357057999', '5934', '178', '1654586273473577', '1654586303068095', '5881', '165243980900997', 'MAN07', '239', '1653050330410781', '1652085910806554', '1388', 'MAN10', '\nles-fondamentaux-des-marches-publics---cours-a-jour-du-code\n-8', '6783', '1652174483678995', '6577', '1653050329889322', '1654586290533674', '2948']
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:57.703000 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:57.706006 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:57.709020 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:57.715018 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:57.717016 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:57.719022 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:57.722541 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:57.728541 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:57.730541 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:57.734542 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:57.737543 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:57.740545 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:57.744550 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:57.746545 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:57.752542 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:57.755542 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:57.758544 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:57.762541 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:07:57.765538 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:07:57.768547 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:07:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:22.673900 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:23.193014 : pour phrase : #professionn#, voici la liste des formations
+INFO:root:2022-12-09 10:08:23.193014 : ['665', '1388', '4753', '1654586289994387', '1652174056093218']
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:23] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:23.295892 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:23.299892 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:23.302890 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:23.305890 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:23.308888 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:23.312891 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:23.315897 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:23.318893 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:34.832486 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:34.834483 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:34] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:34] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.318856 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:35.319876 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.609175 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:35.611175 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:35.613173 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.618174 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:35.620180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:35.622180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:35.626174 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.629181 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.632177 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.637182 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.642181 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.644184 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.647186 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.650187 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:35.652185 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.658184 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:35.661628 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.668088 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.673104 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:35.677105 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:49.822834 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:50.573489 : pour phrase : #prise de parole#, voici la liste des formations
+INFO:root:2022-12-09 10:08:50.573489 : ['3IL_10006', '1653050332676409', '1653050332630533', '1653050332614573', '1652439811359111', '1652439811298275', '1652439811282354', 'zkWA_orY6Lc', '6364', '5933', '268', '6476', '1652379097598819', '1652379097544387', '1652379097553533', '1652379097583097', '1266', '8522', '3051', '6365', '1077', '1654586287590111', '1652379097614426', '1652174021674569', '1652379097568828', '1079', '7327', '1652439806767098', '1653050329107647', '1652173858248007', '51020_V2', '9261', '1652174377661954', '7328', '6589', '53185', '1653050332691394', '9030', '15', '9231', '1653050336329204', '9034', '165458626980228', 'AF_0000032757', '1654586306959175', '2974', '51020', '7833', '1653050332318511', '165305032963975']
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.768124 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:50.771119 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.776127 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:50.779125 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.782122 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:50.785125 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.789136 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.793140 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.797145 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:50.799141 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.803142 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.807138 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.810675 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:50.813672 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.816687 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.819685 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.823671 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:50.825676 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:08:50.827670 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:08:50.830670 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:08:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:01.345658 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:09:01.786837 : pour phrase : #parole#, voici la liste des formations
+INFO:root:2022-12-09 10:09:01.786837 : ['3IL_10006', '268', '1079', '5933', '6364', 'AF_0000032757', '3051', '6365', '1266', '8522', '1652173925889218', '1654586278162055', '1654586306959175', '165458626980228', 'WEB10', '1652085857884008', '1652173858248007', '8442', '1652174377661954']
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:01] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:01.970090 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:09:01.973087 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:01.976085 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:01.981085 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:01.983088 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:01.986183 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:09:01.989606 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:01.994602 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:09:01.996608 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:02.000605 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:02.005126 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:02.007127 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:09:02.010129 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:02.014135 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:09:02.016138 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:02.019136 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:09:02.021135 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:02.026292 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:09:02.027807 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:09:02.032337 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:09:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:03.022491 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:03.024005 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:03] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:03] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:03.689224 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:03.691221 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.096163 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:04.099167 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.103334 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.105342 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.110349 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.113888 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.117893 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.120882 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:04.124111 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.127631 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.131638 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:04.135169 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.136681 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.142217 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:04.144216 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.150312 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.154822 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.160691 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.166744 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:04.168746 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:24.759656 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:25.323901 : pour phrase : #entretien#, voici la liste des formations
+INFO:root:2022-12-09 10:46:25.323901 : ['3IL_10007', 'POT_191227', 'POT_191216', '2200', 'MAN06', 'MAN08', '1652085920414885', '1652085915680793', '240', '9199', '9197', '9198', '7924', '7608', '8379', '9227', '6984', '7967', '95', '1654586274235196', '1654586321968579', '\nselectionnez-les-meilleurs-candidats\n-8', '7269', '1387', '5683', '96', '85', '8222', '1652174357057999', '1652174475646437', '1652173893180227', 'MAN10', '1652174110872228', 'MAN01', '1652173889708319', 'MAN04', '1652085910806554', '2948', '\nelaborez-un-plan-de-recrutement\n-6', '\nles-fondamentaux-des-marches-publics---cours-a-jour-du-code\n-8', '239', '1654586296956808', '1654586290533674', '1653050329889322', '9413', '1652085927099856', '1653050340485322', '6577', '165208588341041', 'MAN07']
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/recherche_text_simple/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.523506 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:25.526514 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.531519 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:25.535449 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.538463 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.544034 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.549037 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:25.551030 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.555589 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.560594 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.568105 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:25.570222 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.575785 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.581781 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.584777 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:25.586313 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.589303 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.594311 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:25.597408 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:25.601404 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:31.497808 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:31.500808 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:31] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:31] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 10:46:48.964195 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 10:46:48.967722 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 10:46:48] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:42:17.271655 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 13:42:17.272652 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 13:42:17.272652 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 13:42:17.272652 : ++ FLASK PORT 5001 ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-09 13:42:26.319437 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 13:42:26.319437 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 13:42:26.320442 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 13:42:26.320442 : ++ 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-09 13:53:20.541849 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 13:53:20.542849 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 13:53:20.542849 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 13:53:20.542849 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 13:53:28.775545 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:28.776538 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:28] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:28] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:29.042342 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:29.044333 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:29.321732 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:29.635603 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:29.635603 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:29.636603 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:29.637603 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:29.638603 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:29.645609 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:29.966082 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:29.967100 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:29.968094 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:29.969084 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:29.975404 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:29.981392 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:30.288421 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:30.294425 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:30.298438 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:30.301441 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:30.306438 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:30.312994 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:30] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:30.607682 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:53:35.808944 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:35.810931 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:35.812927 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:53:35.814066 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:35] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:35] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:53:35] "POST /myclass/api/get_associated_class_of_partnair/ 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-09 13:55:55.748881 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 13:55:55.748881 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 13:55:55.748881 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 13:55:55.748881 : ++ 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-09 13:56:28.589704 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 13:56:28.590707 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 13:56:28.590707 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 13:56:28.590707 : ++ 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-09 13:56:46.934588 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 13:56:46.934588 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 13:56:46.934588 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 13:56:46.934588 : ++ 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-09 13:57:18.845630 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 13:57:18.846633 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 13:57:18.846633 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 13:57:18.846633 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 13:57:45.176058 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:57:45.178933 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:57:45.179940 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 13:57:45.184445 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:57:45] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:57:45] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:57:45] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 13:57:45.840548 : GetActiveSessionFormation_List -'method_descriptor' object has no attribute 'today' - ERRORRRR AT Line : 269
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 13:57:45] "POST /myclass/api/GetActiveSessionFormation_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-09 13:59:26.678393 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 13:59:26.678393 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 13:59:26.678393 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 13:59:26.678393 : ++ 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-09 14:00:07.867554 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:00:07.868554 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:00:07.868554 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:00:07.868554 : ++ 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-09 14:04:09.269329 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:04:09.269329 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:04:09.269329 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:04:09.269329 : ++ FLASK PORT 5001 ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-09 14:04:20.207149 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:04:20.207149 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:04:20.207149 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:04:20.207149 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 14:04:23.545879 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:04:23.545879 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:04:23.546882 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:04:23.550879 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:04:23] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:04:23] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:04:23] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 14:04:24.199335 : GetActiveSessionFormation_List -'str' object has no attribute 'strftime' - ERRORRRR AT Line : 270
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:04:24] "POST /myclass/api/GetActiveSessionFormation_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-09 14:04:55.900954 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:04:55.901957 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:04:55.901957 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:04:55.901957 : ++ 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-09 14:05:17.653482 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:05:17.654486 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:05:17.654486 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:05:17.654486 : ++ 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-09 14:05:52.218551 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:05:52.218551 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:05:52.218551 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:05:52.218551 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 14:06:27.574532 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:06:27.576534 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:06:27.577535 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:06:27.578534 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:06:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:06:27] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:06:27] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:06:27] "POST /myclass/api/get_associated_class_of_partnair/ 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-09 14:12:23.674940 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:12:23.675939 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:12:23.675939 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:12:23.675939 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 14:12:30.774386 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:12:30.776382 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:12:30.777389 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:12:30.782385 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:12:30] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:12:30] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:12:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:12:30] "POST /myclass/api/get_associated_class_of_partnair/ 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-09 14:13:02.606249 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:13:02.606249 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:13:02.606249 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:13:02.606249 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 14:13:02.794737 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:13:02.798753 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:13:02.800753 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:13:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 14:13:02.805759 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:13:02] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:13:02] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:13:02] "POST /myclass/api/get_associated_class_of_partnair/ 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-09 14:13:55.270411 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:13:55.271412 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:13:55.271412 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:13:55.271412 : ++ 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-09 14:17:01.020906 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:17:01.021906 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:17:01.021906 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:17:01.021906 : ++ FLASK PORT 5001 ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-09 14:17:10.531177 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:17:10.531177 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:17:10.531177 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:17:10.531177 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 14:17:10.715469 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:17:10.717452 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:17:10.719465 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:17:10.723465 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:17:10] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:17:10] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:17:10] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 14:17:11.572238 : GetActiveSessionFormation_List -filter must be an instance of dict, bson.son.SON, or any other type that inherits from collections.Mapping - ERRORRRR AT Line : 277
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:17:11] "POST /myclass/api/GetActiveSessionFormation_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-09 14:19:42.772406 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:19:42.772406 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:19:42.772406 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:19:42.772406 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 14:19:47.749001 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:19:47.749001 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:19:47.752005 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:19:47.756003 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:19:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:19:47] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:19:47] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:19:47] "POST /myclass/api/get_associated_class_of_partnair/ 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-09 14:58:32.883992 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:58:32.883992 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:58:32.883992 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:58:32.883992 : ++ 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-09 14:58:46.608044 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:58:46.608044 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:58:46.608044 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:58:46.609044 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 14:58:50.777185 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:58:50.778180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:58:50.785174 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:58:50] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 14:58:50.793175 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:58:50] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:58:50] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 14:58:51.387133 : GetActiveSessionFormation_List -'local_tmp' - ERRORRRR AT Line : 284
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:58:51] "POST /myclass/api/GetActiveSessionFormation_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-09 14:59:20.020993 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 14:59:20.020993 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 14:59:20.020993 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 14:59:20.020993 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 14:59:25.773923 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:59:25.774936 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:59:25.779955 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 14:59:25.781946 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:59:25] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:59:25] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:59:25] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 14:59:26.453249 : GetActiveSessionFormation_List -Object of type datetime is not JSON serializable - ERRORRRR AT Line : 288
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 14:59:26] "POST /myclass/api/GetActiveSessionFormation_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-09 15:02:31.162512 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 15:02:31.162512 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 15:02:31.162512 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 15:02:31.162512 : ++ FLASK PORT 5001 ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-09 15:02:44.193457 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 15:02:44.193457 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 15:02:44.193457 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 15:02:44.193457 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 15:02:53.646471 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:02:53.648465 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:02:53.650468 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:02:53.652478 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:02:53] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:02:53] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:02:53] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 15:02:54.515400 : GetActiveSessionFormation_List -unconverted data remains: 14:30:00 - ERRORRRR AT Line : 284
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:02:54] "POST /myclass/api/GetActiveSessionFormation_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-09 15:06:57.351210 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 15:06:57.352213 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 15:06:57.352213 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 15:06:57.352213 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 15:06:59.896970 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:06:59.897965 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:06:59.903966 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:06:59.908971 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:06:59] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:06:59] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:06:59] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 15:07:00.713745 : GetActiveSessionFormation_List -unconverted data remains: 14:30:00 - ERRORRRR AT Line : 286
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:07:00] "POST /myclass/api/GetActiveSessionFormation_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-09 15:08:02.771967 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 15:08:02.771967 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 15:08:02.772969 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 15:08:02.772969 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 15:08:05.495736 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:08:05.496731 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:08:05.497478 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:08:05.503515 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:08:05] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:08:05] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:08:05] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 15:08:06.134874 : GetActiveSessionFormation_List -unconverted data remains: 14:30:00 - ERRORRRR AT Line : 287
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:08:06] "POST /myclass/api/GetActiveSessionFormation_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-09 15:08:41.663735 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 15:08:41.663735 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 15:08:41.663735 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 15:08:41.663735 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 15:08:52.301041 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:08:52.303036 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:08:52.304038 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:08:52.305033 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:08:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:08:52] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:08:52] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:08:52] "POST /myclass/api/get_associated_class_of_partnair/ 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-09 15:10:40.813299 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 15:10:40.814331 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 15:10:40.814331 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 15:10:40.814331 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 15:10:40.994276 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:10:40.997262 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:10:40.999257 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:10:41.002263 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:10:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:10:41] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:10:41] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:10:41] "POST /myclass/api/get_associated_class_of_partnair/ 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-09 15:14:03.130598 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 15:14:03.130598 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 15:14:03.130598 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 15:14:03.130598 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 15:14:03.317485 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:14:03.320502 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:14:03.323213 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:14:03.326031 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:14:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:14:03] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:14:03] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:14:03] "POST /myclass/api/get_associated_class_of_partnair/ 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-09 15:15:01.156303 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 15:15:01.157303 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 15:15:01.157303 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 15:15:01.157303 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 15:15:01.400399 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:15:01.402391 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:15:01.405407 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:15:01.406392 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:15:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:15:01] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:15:01] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:15:01] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 15:16:06.453262 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:16:06.454279 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:16:06.455268 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:16:06.462808 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:16:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:16:06] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:16:06] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:16:06] "POST /myclass/api/get_associated_class_of_partnair/ 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-09 15:16:54.361349 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 15:16:54.362349 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 15:16:54.362349 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 15:16:54.362349 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 15:16:54.567026 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:16:54.570039 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:16:54.572031 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:16:54.575038 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:16:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:16:54] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:16:54] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:16:54] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 15:17:19.936629 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:17:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 15:17:20.245485 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:17:20.248495 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:17:20.253489 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:17:20] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:17:20] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:17:20] "POST /myclass/api/get_associated_class_of_partnair/ 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-09 15:18:14.444680 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 15:18:14.445680 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 15:18:14.445680 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 15:18:14.445680 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 15:18:14.641646 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:18:14.644704 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:18:14.647963 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:18:14.650127 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:18:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:18:14] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:18:14] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:18:14] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 15:29:20.352556 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:29:20.353565 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:29:20.354578 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 15:29:20.355578 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:29:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:29:20] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:29:20] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 15:29:20] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:43:04.008592 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 16:43:04.009588 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 16:43:04.009588 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 16:43:04.009588 : ++ FLASK PORT 5001 ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-09 16:43:13.706892 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 16:43:13.706892 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 16:43:13.706892 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 16:43:13.706892 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 16:43:13.908882 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:13.909877 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:13.911879 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:13.912891 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:13] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:43:14.560364 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:14.560364 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:14.562369 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:14.562369 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:14.564382 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:43:14.569396 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:43:14.886957 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:14.889956 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:14.891954 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:14.893955 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:14.894958 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:43:14.901956 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:43:15.230133 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:15.231146 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:15.232137 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:15.233153 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:43:15.242145 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:43:15.252139 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:43:15.566571 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:43:15.567560 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:43:15] "POST /myclass/api/getRecodedClassImage_from_front/ 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-09 16:46:16.605985 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 16:46:16.605985 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 16:46:16.605985 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 16:46:16.605985 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 16:46:20.158617 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:20.159614 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:20] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:20] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:46:20.705756 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:20.706760 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:20] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:46:21.335159 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:21.335159 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:21.336250 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:21.337159 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:21.337159 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:46:21.341677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:46:21.657236 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:21.658239 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:21.659242 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:21.663234 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:46:21.665229 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:46:21.668861 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:46:21.986754 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:21.986754 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:21.987749 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:21.989747 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:46:21.995741 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:46:22.000741 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 16:46:22.312525 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 16:46:22.314515 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:22] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 16:46:22] "POST /myclass/api/GetActiveSessionFormation_List/ 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-09 16:54:19.688523 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 16:54:19.688523 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 16:54:19.688523 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 16:54:19.688523 : ++ 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-09 16:55:34.707176 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 16:55:34.707176 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 16:55:34.707176 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 16:55:34.707176 : ++ 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-09 16:55:58.496257 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 16:55:58.497259 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 16:55:58.497259 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 16:55:58.497259 : ++ 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-09 17:00:40.877722 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:00:40.877722 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:00:40.877722 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:00:40.877722 : ++ 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-09 17:27:49.968499 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:27:49.968499 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:27:49.969036 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:27:49.969036 : ++ 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-09 17:28:12.186029 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:28:12.187008 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:28:12.187008 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:28:12.187008 : ++ 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-09 17:29:52.365812 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:29:52.365812 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:29:52.366817 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:29:52.366817 : ++ 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-09 17:30:22.659897 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:30:22.659897 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:30:22.659897 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:30:22.659897 : ++ 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-09 17:30:37.555560 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:30:37.555560 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:30:37.555560 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:30:37.555560 : ++ 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-09 17:30:50.644085 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:30:50.644085 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:30:50.644085 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:30:50.644085 : ++ 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-09 17:31:06.531644 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:31:06.531644 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:31:06.531644 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:31:06.531644 : ++ 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-09 17:31:19.355506 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:31:19.355506 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:31:19.355506 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:31:19.355506 : ++ 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-09 17:32:24.786274 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:32:24.786274 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:32:24.786274 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:32:24.786274 : ++ 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-09 17:33:17.013559 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:33:17.013559 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:33:17.013559 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:33:17.013559 : ++ 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-09 17:33:43.382986 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:33:43.382986 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:33:43.382986 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:33:43.382986 : ++ 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-09 17:37:48.086266 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:37:48.087266 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:37:48.087266 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:37:48.087266 : ++ 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-09 17:38:02.267559 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:38:02.267559 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:38:02.267559 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:38:02.267559 : ++ 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-09 17:38:15.383272 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:38:15.383272 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:38:15.383272 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:38:15.383272 : ++ 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-09 17:38:33.708502 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:38:33.708502 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:38:33.708502 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:38:33.708502 : ++ 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-09 17:38:48.292257 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:38:48.292257 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:38:48.292257 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:38:48.292257 : ++ 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-09 17:39:05.588303 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:39:05.588303 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:39:05.588303 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:39:05.588303 : ++ 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-09 17:39:19.938851 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:39:19.938851 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:39:19.939850 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:39:19.939850 : ++ 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-09 17:39:36.970980 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:39:36.971981 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:39:36.971981 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:39:36.971981 : ++ 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-09 17:40:13.478461 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:40:13.478461 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:40:13.478461 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:40:13.478461 : ++ 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-09 17:40:45.753113 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:40:45.753113 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:40:45.753113 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:40:45.753113 : ++ 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-09 17:43:04.899958 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:43:04.899958 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:43:04.900479 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:43:04.900479 : ++ 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-09 17:48:41.520684 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:48:41.520684 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:48:41.520684 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:48:41.520684 : ++ 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-09 17:50:09.208417 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:50:09.208417 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:50:09.209418 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:50:09.209418 : ++ 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\\prj_common.py', reloading
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-09 17:52:22.311494 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:52:22.312496 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:52:22.312496 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:52:22.312496 : ++ 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-09 17:53:57.882331 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:53:57.882331 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:53:57.882331 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:53:57.882331 : ++ 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-09 17:57:49.954022 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 17:57:49.955028 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 17:57:49.955028 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 17:57:49.955028 : ++ 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-09 18:00:07.675838 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 18:00:07.678827 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 18:00:07.678827 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 18:00:07.678827 : ++ 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\\class_mgt.py', reloading
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-09 18:10:13.059024 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 18:10:13.059024 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 18:10:13.059024 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 18:10:13.059024 : ++ 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\\main.py', reloading
+INFO:werkzeug: * Restarting with stat
+INFO:root:2022-12-09 18:12:53.346682 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2022-12-09 18:12:53.347684 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
+INFO:root:2022-12-09 18:12:53.347684 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
+INFO:root:2022-12-09 18:12:53.347684 : ++ FLASK PORT 5001 ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 127-713-359
+INFO:root:2022-12-09 18:13:39.455264 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:13:39.456262 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:39] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:39] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.365800 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:13:40.366796 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.819248 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:13:40.821250 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:13:40.825245 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.831249 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:13:40.834257 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.839253 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.844244 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.848264 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.852463 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.858246 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.860259 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.865262 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.869254 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.873281 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.882290 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:13:40.884292 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:13:40.888826 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.892814 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.894821 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:40.903831 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:48.911687 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:13:49.640139 : partner_login Connexion partnair billardman1@gmail.com : OK, Date : 2022-12-09 18:13:48.912711 , _id = 61e538fab80f67195de32dd2
+INFO:root:2022-12-09 18:13:49.646137 : partner_login Connexion partener_token : OK , _id = 6218ac277a813b77409aa7f6
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:49] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:49.811419 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:13:49.815440 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:13:49.818509 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:49.831509 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:49.997965 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:50] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:13:57.940607 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:13:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:17:46.547351 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:17:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:18:08.414810 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:18:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:19:05.467776 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:19:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:22:28.860989 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:22:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:23:50.947636 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:23:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:24:22.157751 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:24:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:24:26.144038 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:24:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:25:21.589949 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:25:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:29:36.667064 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:29:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:29:41.732468 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:29:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:29:52.874134 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:29:52.878134 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:29:52.882150 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:29:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:29:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:29:52.891148 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:29:52] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:29:52] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:32:03.879970 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:32:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:37:22.804482 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:37:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:37:28.272791 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:37:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:37:31.772617 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:37:31.777907 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:37:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:37:31.781911 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:37:31.784917 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:37:31] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:37:31] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:37:31] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:38:22.670587 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:38:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:39:43.776350 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:39:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:41:47.870797 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:41:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:41:52.228319 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:41:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:41:59.476510 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:41:59.480782 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:41:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:41:59.485807 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:41:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:41:59.488813 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:41:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:41:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:43:11.834471 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:43:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:43:27.817663 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:43:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:43:33.379812 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:43:33.380993 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:43:33.386054 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:43:33] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:43:33.391054 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:43:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:43:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:43:33] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:45:04.368245 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:45:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:45:08.871535 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:45:08.876526 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:45:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:45:08.881526 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:45:08] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:45:08.886533 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:45:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:45:08] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:46:58.692380 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:46:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:49:47.385408 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:49:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:49:51.385078 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:49:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:49:59.483677 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:49:59.487819 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:49:59.491822 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:49:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:49:59.499828 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:49:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:49:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:49:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:54:35.902111 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:54:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:54:45.201436 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:54:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:54:49.015008 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:54:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:54:53.101552 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:54:53.104664 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:54:53.110661 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:54:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:54:53.115664 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:54:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:54:53] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:54:53] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:57:09.783112 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:57:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:57:14.154241 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:57:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:57:19.152007 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:57:19.156039 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:57:19.161050 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:57:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:57:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:57:19.169053 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:57:19] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:57:19] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:58:30.810897 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:58:30.814910 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:58:30.819917 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:58:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:58:30.826427 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:58:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:58:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:58:30.946661 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:58:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:58:41.759771 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:58:41.763576 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2022-12-09 18:58:41.765554 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:58:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2022-12-09 18:58:41.774090 : Connexion du partner recid = 1ba5aacb6f00d37cf9017858118d281ab8776dbd7916ae1899 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:58:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Dec/2022 18:58:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
diff --git a/Session_Formation.py b/Session_Formation.py
index dcf45be..fa96e65 100644
--- a/Session_Formation.py
+++ b/Session_Formation.py
@@ -19,6 +19,7 @@ import GlobalVariable as MYSY_GV
from math import isnan
import GlobalVariable as MYSY_GV
from datetime import timedelta
+from datetime import timedelta
"""
@@ -266,14 +267,27 @@ def GetActiveSessionFormation_List(diction):
myquery['class_internal_url'] = class_internal_url
myquery['valide'] = "1"
myquery['session_status'] = "true"
-
-
- #print(" ##### myquery = "+str(myquery))
RetObject = []
for retval in coll_session.find(myquery):
- #print(" ##### retval = " + str(retval))
- RetObject.append(mycommon.JSONEncoder().encode(retval))
+
+ local_tmp = retval
+ ## Verification des conditions supplementaires :
+ # en realité c'est parce que c'est chaud de le faire avec pymongo
+ tmp_debut_inscritp = str(local_tmp['date_debut_inscription']).strip().split(" ")
+ tmp_fin_inscritp = str(local_tmp['date_fin_inscription']).strip().split(" ")
+
+ debut_inscr = datetime.strptime(str(tmp_debut_inscritp[0]).strip(), '%d/%m/%Y')
+ fin_inscr = datetime.strptime(str(tmp_fin_inscritp[0]).strip(), '%d/%m/%Y')
+
+ #print(" #### date_debut_inscription = ", debut_inscr, " date_fin_inscription = ", fin_inscr, " NOW = ",datetime.now())
+ if(debut_inscr <= datetime.now() and fin_inscr >= datetime.now()):
+ RetObject.append(mycommon.JSONEncoder().encode(retval))
+
+
+
+
+
#print("####RetObject = "+str(RetObject))
return True, RetObject
diff --git a/class_mgt.py b/class_mgt.py
index bdd7c63..6ee5683 100644
--- a/class_mgt.py
+++ b/class_mgt.py
@@ -2486,18 +2486,83 @@ def add_class_mass(file=None, Folder=None, diction=None):
mydata['title'] = str(df['titre'].values[n])
mydata['domaine'] = str(df['domaine'].values[n])
mydata['description'] = str(df['description'].values[n])
- mydata['trainer'] = str(df['formateur'].values[n])
- mydata['institut_formation'] = str(df['institut_formation'].values[n])
- #mydata['distantiel'] = str(df['presentiel'].values[n])
- mydata['url'] = str(df['url'].values[n])
- mydata['duration'] = float(str(df['duree'].values[n]))
- mydata['plus_produit'] = str(df['plus_produit'].values[n])
- mydata['mots_cle'] = str(df['mots_cle'].values[n])
- mydata['presentiel'] = str(df['presentiel'].values[n])
- mydata['distantiel'] = str(df['distantiel'].values[n])
- mydata['price'] = str(df['prix'].values[n])
- mydata['metier'] = str(df['metier'].values[n])
- mydata['published'] = str(df['publie'].values[n])
+
+
+ formateur = ""
+ if ("formateur" in df.keys()):
+ if (str(df['formateur'].values[n])):
+ formateur = str(df['formateur'].values[n])
+ mydata['trainer'] = formateur
+
+
+ institut_formation = ""
+ if ("institut_formation" in df.keys()):
+ if (str(df['institut_formation'].values[n])):
+ institut_formation = str(df['institut_formation'].values[n])
+ mydata['institut_formation'] = institut_formation
+
+
+ #mydata['duration'] = float(str(df['duree'].values[n]))
+
+ url = ""
+ if ("url" in df.keys()):
+ if (str(df['url'].values[n])):
+ url = str(df['url'].values[n])
+ mydata['url'] = url
+
+ duration = 0
+ if ("duree" in df.keys()):
+ if (str(df['duree'].values[n])):
+ plus_produit = str(df['duree'].values[n])
+ mydata['duration'] = duration
+
+
+ plus_produit = ""
+ if ("plus_produit" in df.keys()):
+ if (str(df['plus_produit'].values[n])):
+ plus_produit = str(df['plus_produit'].values[n])
+ mydata['plus_produit'] = plus_produit
+
+ mots_cle = ""
+ if ("mots_cle" in df.keys()):
+ if (str(df['mots_cle'].values[n])):
+ presentiel = str(df['mots_cle'].values[n])
+ mydata['mots_cle'] = mots_cle
+
+
+ presentiel = "0"
+ if ("presentiel" in df.keys()):
+ if (str(df['presentiel'].values[n])):
+ presentiel = str(df['presentiel'].values[n])
+ mydata['presentiel'] = presentiel
+
+ distantiel = "0"
+ if ("distantiel" in df.keys()):
+ if (str(df['distantiel'].values[n])):
+ distantiel = str(df['distantiel'].values[n])
+ mydata['distantiel'] = distantiel
+
+
+ price = "0"
+ if ("prix" in df.keys()):
+ if (str(df['prix'].values[n])):
+ price = str(df['prix'].values[n])
+ mydata['price'] = price
+
+
+
+ metier = "1"
+ if ("metier" in df.keys()):
+ if (str(df['metier'].values[n])):
+ metier = str(df['metier'].values[n])
+ mydata['metier'] = metier
+
+ published = "1"
+ if ("published" in df.keys()):
+ if (str(df['published'].values[n])):
+ published = str(df['published'].values[n])
+ mydata['published'] = published
+
if ("cpf" in df.keys()):
if (str(df['cpf'].values[n])):
@@ -2608,6 +2673,7 @@ def add_class_mass(file=None, Folder=None, diction=None):
return False, "Impossible d'inserer les formation en masse "
+
'''
Cette fonction retourne les formation par metier
- la thématique est defini par un nouveau champ appelé "metier"
diff --git a/data_indexees.csv b/data_indexees.csv
index 0c9710c..bf61def 100644
--- a/data_indexees.csv
+++ b/data_indexees.csv
@@ -1,5 +1,4 @@
,index,mots,occurence,moyenne,id_formation,source_field
-0,0,framework,1,0.25,3IL_10004,keyword
-1,1,php,1,0.25,3IL_10004,keyword
-2,2,mobile,1,0.25,3IL_10004,keyword
-3,3,p,1,0.25,3IL_10004,keyword
+0,0,prise,1,0.33,3IL_10006,title
+1,1,parole,1,0.33,3IL_10006,title
+2,2,public,1,0.33,3IL_10006,title
diff --git a/ela_output_test_file_pandas_2.txt b/ela_output_test_file_pandas_2.txt
index 936a285..c3d2f7d 100644
--- a/ela_output_test_file_pandas_2.txt
+++ b/ela_output_test_file_pandas_2.txt
@@ -1,5 +1,3 @@
- mots occurence moyenne id_formation source_field
-0 framework 1 0.25 3IL_10004 keyword
-1 php 1 0.25 3IL_10004 keyword
-2 mobile 1 0.25 3IL_10004 keyword
-3 p 1 0.25 3IL_10004 keyword
\ 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 0e4d77c..96e4378 100644
--- a/main.py
+++ b/main.py
@@ -2077,6 +2077,19 @@ def DownloadParticipantsList(sessionid, token):
return local_file
+"""
+API d'import des stagaires en masse avec un fichier csv
+"""
+
+@app.route('/myclass/api/AddStagiairetoClass_mass/', methods=['POST','GET'])
+@crossdomain(origin='*')
+def AddStagiairetoClass_mass():
+ # On recupere le corps (payload) de la requete
+ payload = request.form.to_dict()
+ print(" ### AddStagiairetoClass_mass : payload = ",str(payload))
+ localStatus, message= inscription.AddStagiairetoClass_mass(payload)
+ return jsonify(status=localStatus, message=message )
+
if __name__ == '__main__':
diff --git a/prj_common.py b/prj_common.py
index 0ec2f99..3fa8488 100644
--- a/prj_common.py
+++ b/prj_common.py
@@ -450,6 +450,18 @@ def tryFloat(val):
except ValueError:
return 0
+"""
+Verifie si c'est un float.
+returl status et la valeur
+"""
+def IsFloat(val):
+ try:
+ val = str(val).replace(",",".")
+ myfloat = float(val)
+ return True, myfloat
+ except ValueError:
+ return False, 0
+
'''
Check if string is Int and convert.